mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
11 lines
296 B
TypeScript
11 lines
296 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const UserMinus = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<circle cx="96" cy="88" r="32" />
|
|
<path d="M32 200c0-35.3 28.7-64 64-64s64 28.7 64 64" />
|
|
<line x1="172" y1="120" x2="224" y2="120" />
|
|
</Icon>
|
|
)
|