ReactJS
1import React from 'react';
2import {IIconBaseProp} from "../Icon";
3
4export function WarningIcon ({size}:IIconBaseProp) {
5return (
6<svg width={size} height={size} viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
7<path
8d="M0 14H16L8 0L0 14ZM8.72727 11.7895H7.27273V10.3158H8.72727V11.7895ZM8.72727 8.8421H7.27273V5.89474H8.72727V8.8421Z"
9fill="#999999"/>
10</svg>
11);
12}
13