* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
39 lines
1 KiB
TypeScript
39 lines
1 KiB
TypeScript
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Dashboards_circle_alert(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg
|
|
viewBox="0 0 16 16"
|
|
fill="none"
|
|
width={`${width}px`}
|
|
height={`${height}px`}
|
|
>
|
|
<g>
|
|
<path fill="#fff" fillOpacity=".01" d="M0 0h16v16H0z" />
|
|
<g stroke="currentColor" strokeLinecap="round" strokeLinejoin="round">
|
|
<path d="M8 14.667A6.667 6.667 0 1 0 8 1.333a6.667 6.667 0 0 0 0 13.334ZM8 5.333V8" />
|
|
<path d="M8 10.667h.007" strokeWidth="2" />
|
|
</g>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="a">
|
|
<path fill="#fff" d="M0 0h16v16H0z" />
|
|
</clipPath>
|
|
<clipPath id="b">
|
|
<path fill="#fff" d="M0 0h16v16H0z" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Dashboards_circle_alert;
|