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