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