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