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