* fix(ui): split icons from SVG.tsx components * fix(ui): split icons from SVG.tsx components * fix(ui): split icons from SVG.tsx components
19 lines
893 B
TypeScript
19 lines
893 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_multi(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"/><g fill="#24959A"><path d="M22 32.5a10.5 10.5 0 1 1 0-21 10.5 10.5 0 0 1 0 21Zm0 1.5a12 12 0 1 0 0-24 12 12 0 0 0 0 24Z"/><path d="M22 29.5a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15Zm0 1.5a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z"/><path d="M22 26.5a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm0 1.5a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path d="M24.25 22a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z"/></g></svg>
|
|
);
|
|
}
|
|
|
|
export default Fflag_multi;
|