mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +00:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Search = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<circle cx="116" cy="116" r="84" />
|
|
<line x1="175.4" y1="175.4" x2="224" y2="224" />
|
|
</Icon>
|
|
)
|