mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
8 lines
353 B
TypeScript
8 lines
353 B
TypeScript
import { Icon, type IconProps } from './Icon'
|
|
|
|
export const ErrorOutline = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M128 24a104 104 0 1 0 104 104A104.11791 104.11791 0 0 0 128 24Zm0 192a88 88 0 1 1 88-88 88.09957 88.09957 0 0 1-88 88Zm-8-80V80a8 8 0 0 1 16 0v56a8 8 0 0 1-16 0Zm20 36a12 12 0 1 1-12-12 12 12 0 0 1 12 12Z" />
|
|
</Icon>
|
|
)
|