test-iki-mini-app
Version:
ứng dựng bán hàng trên mini app z a l o
25 lines (23 loc) • 816 B
JSX
import React from "react";
export default function IconWarningSolid({ className, ...rest }) {
return (
<svg
fill="currentColor"
width="800px"
height="800px"
viewBox="0 0 36 36"
preserveAspectRatio="xMidYMid meet"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
className={`${className}`}
{...rest}
>
<title>{"warning-solid"}</title>
<path
className="clr-i-solid clr-i-solid-path-1"
d="M30.33,25.54,20.59,7.6a3,3,0,0,0-5.27,0L5.57,25.54A3,3,0,0,0,8.21,30H27.69a3,3,0,0,0,2.64-4.43ZM16.46,12.74a1.49,1.49,0,0,1,3,0v6.89a1.49,1.49,0,1,1-3,0ZM18,26.25a1.72,1.72,0,1,1,1.72-1.72A1.72,1.72,0,0,1,18,26.25Z"
/>
<rect x={0} y={0} width={36} height={36} fillOpacity={0} />
</svg>
);
}