Files
metabuilder/fakemui/icons/UserMinus.tsx
2025-12-30 13:26:36 +00:00

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>
)