openreplay/frontend/app/components/ui/Icons/fflag_single.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

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;