mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const User = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<circle cx="128" cy="96" r="64" />
|
|
<path d="M30.989 215.99064a112.03731 112.03731 0 0 1 194.02311.002" />
|
|
</Icon>
|
|
)
|