Files
metabuilder/icons/react/fakemui/MagnifyingGlass.tsx
2026-03-09 22:30:41 +00:00

10 lines
244 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const MagnifyingGlass = (props: IconProps) => (
<Icon {...props}>
<circle cx="112" cy="112" r="80" />
<line x1="168" y1="168" x2="224" y2="224" />
</Icon>
)