import { FC } from 'react'; import styles from './magnifying-glass.module.scss'; export type MagnifyingGlassProps = { /** * Should the svg be hidden from assistive technologies? */ 'aria-hidden'?: boolean; /** * Set additional classnames to the icon. */ className?: string; }; /** * MagnifyingGlass component * * Render a magnifying glass svg icon. */ const MagnifyingGlass: FC = ({ className = '', ...props }) => { return ( ); }; export default MagnifyingGlass;