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