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