import * as React from 'react'; export interface TakeOff24Props extends React.SVGProps { ariaLabel?: string } export default function TakeOff24({ ariaLabel, ...props }: TakeOff24Props) { return ( ); }