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