Files
metabuilder/fakemui/icons/Warning.tsx

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