* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
24 lines
633 B
TypeScript
24 lines
633 B
TypeScript
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Fflag_single(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 44 44" width={`${width}px`} height={`${height}px`}>
|
|
<rect width="44" height="44" rx="22" fill="#3EAAAF" fillOpacity=".08" />
|
|
<path
|
|
d="M22 32.5a10.5 10.5 0 1 0 0-21v21Zm0 1.5a12 12 0 1 1 0-24 12 12 0 0 1 0 24Z"
|
|
fill="#24959A"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Fflag_single;
|