mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
368 B
TypeScript
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>
|
|
)
|