mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-12 00:18:27 +00:00
42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
import type { IconProps } from "./types";
|
|
|
|
export function Figma({ size = 18, className }: IconProps) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
id="Figma"
|
|
height={size}
|
|
className={className}
|
|
width={size}
|
|
>
|
|
<path
|
|
fill="#0acf83"
|
|
d="M8.0833 23.750025c2.162 0 3.91665 -1.754675 3.91665 -3.916675V15.916675H8.0833c-2.162 0 -3.916675 1.754675 -3.916675 3.916675s1.754675 3.916675 3.916675 3.916675Z"
|
|
stroke-width="0.25"
|
|
></path>
|
|
<path
|
|
fill="#a259ff"
|
|
d="M4.166625 11.999975c0 -2.162 1.754675 -3.91665 3.916675 -3.91665h3.91665v7.833325H8.0833c-2.162 0 -3.916675 -1.754675 -3.916675 -3.916675Z"
|
|
stroke-width="0.25"
|
|
></path>
|
|
<path
|
|
fill="#f24e1e"
|
|
d="M4.166625 4.166675C4.166625 2.0046675 5.9213 0.25 8.0833 0.25h3.91665v7.833325H8.0833c-2.162 0 -3.916675 -1.75465 -3.916675 -3.91665Z"
|
|
stroke-width="0.25"
|
|
></path>
|
|
<path
|
|
fill="#ff7262"
|
|
d="M11.999875 0.25h3.916675c2.162 0 3.91665 1.7546675 3.91665 3.916675 0 2.162 -1.75465 3.91665 -3.91665 3.91665H11.999875V0.25Z"
|
|
stroke-width="0.25"
|
|
></path>
|
|
<path
|
|
fill="#1abcfe"
|
|
d="M19.8332 11.999975c0 2.162 -1.75465 3.916675 -3.91665 3.916675s-3.916675 -1.754675 -3.916675 -3.916675 1.754675 -3.91665 3.916675 -3.91665 3.91665 1.75465 3.91665 3.91665Z"
|
|
stroke-width="0.25"
|
|
></path>
|
|
</svg>
|
|
);
|
|
}
|