Files
metabuilder/icons/react/fakemui/Warning.tsx
2026-03-09 22:30:41 +00:00

11 lines
368 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Warning = (props: IconProps) => (
<Icon {...props}>
<path d="M236.7 188.8 148.7 36a24 24 0 0 0-41.4 0l-88 152.8a24 24 0 0 0 20.7 36h176a24 24 0 0 0 20.7-36Z" />
<line x1="128" y1="104" x2="128" y2="144" />
<circle cx="128" cy="180" r="4" fill="currentColor" />
</Icon>
)