import { FC, SVGAttributes } from 'react'; import styles from './magnifying-glass.module.scss'; export type MagnifyingGlassProps = SVGAttributes; /** * MagnifyingGlass component * * Render a magnifying glass svg icon. */ export const MagnifyingGlass: FC = ({ className = '', ...props }) => { return ( ); };