Create joomla

This commit is contained in:
Filip Cumpalovic
2024-02-29 13:39:53 +01:00
committed by GitHub
parent 9e02383009
commit 2141389a7e

View File

@@ -0,0 +1,29 @@
import * as React from "react";
import { SVGProps } from "react";
const SvgJoomla = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
<path
d="M11.435 32.213L10.24 31.02c-3.84-3.84-4.95-9.216-3.584-14.08C2.816 16.085 0 12.672 0 8.576 0 3.883 3.84.043 8.533.043 12.8.043 16.3 3.115 16.98 7.21c4.608-1.11 9.643.17 13.227 3.755l.512.512-6.315 6.315-.512-.512c-2.048-2.048-5.376-2.048-7.424 0s-2.048 5.376 0 7.424L30.635 38.87l-6.315 6.315-6.656-6.656z"
fill="#7ac143"
/>
<path
d="M18.517 25.216L32.683 11.05C36.437 7.296 41.9 6.1 46.677 7.467c.597-4.18 4.18-7.34 8.448-7.34 4.693 0 8.533 3.84 8.533 8.533 0 4.352-3.243 7.936-7.424 8.448 1.365 4.78.17 10.155-3.584 13.91l-.512.512-6.144-6.315.512-.512c2.048-2.048 2.048-5.376 0-7.424s-5.376-2.048-7.424 0L24.917 31.445z"
fill="#f9a541"
/>
<path
d="M46.933 57.045c-4.864 1.45-10.325.34-14.165-3.5l-.512-.512 6.315-6.315.512.512c2.048 2.048 5.376 2.048 7.424 0s2.048-5.376 0-7.424L32.34 25.643l6.315-6.315 14.25 14.25c3.584 3.584 4.864 8.704 3.755 13.397 4.18.597 7.34 4.18 7.34 8.448 0 4.693-3.84 8.533-8.533 8.533-4.267-.085-7.765-3.072-8.533-6.912z"
fill="#f44321"
/>
<path
d="M44.46 39.296L30.293 53.46c-3.67 3.67-8.79 4.864-13.397 3.755-.853 3.84-4.267 6.656-8.363 6.656C3.84 63.872 0 60.032 0 55.34c0-4.01 2.816-7.424 6.57-8.277-1.195-4.78 0-9.9 3.67-13.568l.512-.512 6.315 6.315-.512.512c-2.048 2.048-2.048 5.376 0 7.424s5.376 2.048 7.424 0l14.165-14.165z"
fill="#5091cd"
/>
</svg>
);
export default SvgJoomla;