mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
244 B
TypeScript
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>
|
|
)
|