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