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