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