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