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