@abqm-ds/icons 1.0.20 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abqm-ds/icons",
3
- "version": "1.0.20",
3
+ "version": "2.0.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -13,10 +13,11 @@
13
13
  "build": "tsup --dts",
14
14
  "dev": "tsup --dts --watch",
15
15
  "lint": "eslint src/**/*.ts* --fix",
16
+ "folder:images": "npx @svgr/cli src/images/*.svg --out-dir src/_images --icon --typescript",
16
17
  "folder:icons": "npx @svgr/cli src/icons/*.svg --out-dir src/_icons --icon --typescript",
17
18
  "folder:logos": "npx @svgr/cli src/logos/*.svg --out-dir src/_logos --icon --typescript",
18
19
  "folder:icons:seqm": "npx @svgr/cli src/iconsSEQM/*.svg --out-dir src/_iconsSEQM --icon --typescript",
19
- "generate:icons": "npm run folder:icons && npm run folder:logos && npm run folder:icons:seqm && npm run move:icons",
20
+ "generate:icons": "npm run folder:icons && npm run folder:logos && npm run folder:icons:seqm && npm run folder:images && npm run move:icons",
20
21
  "move:icons": "node scripts/move-icons.js",
21
22
  "clean": "rimraf dist"
22
23
  },
@@ -10,6 +10,7 @@ const __dirname = path.dirname(__filename);
10
10
 
11
11
  // Caminhos
12
12
  const iconsDir = path.resolve(__dirname, '../src/_icons');
13
+ const imagesDir = path.resolve(__dirname, '../src/_images');
13
14
  const logosDir = path.resolve(__dirname, '../src/_logos');
14
15
  const iconsSeqmDir = path.resolve(__dirname, '../src/_iconsSEQM');
15
16
  const finalDir = path.resolve(__dirname, '../src/components');
@@ -18,11 +19,12 @@ const indexFile = path.resolve(__dirname, '../src/index.ts');
18
19
  // Verifica se as pastas temporárias existem
19
20
  if (
20
21
  !fs.existsSync(iconsDir) &&
22
+ !fs.existsSync(imagesDir) &&
21
23
  !fs.existsSync(logosDir) &&
22
24
  !fs.existsSync(iconsSeqmDir)
23
25
  ) {
24
26
  console.log(
25
- '⚠️ Nenhuma pasta src/_icons, src/_logos ou src/iconsSEQM existe. Rode "npm run generate" antes.'
27
+ '⚠️ Nenhuma pasta src/_icons, src/_images, src/_logos ou src/_iconsSEQM existe. Rode "npm run generate" antes.'
26
28
  );
27
29
  process.exit(0);
28
30
  }
@@ -36,6 +38,7 @@ if (!fs.existsSync(finalDir)) {
36
38
  processSourceDir(iconsDir, finalDir + '/icons');
37
39
  processSourceDir(logosDir, finalDir + '/logos', /^svg/i);
38
40
  processSourceDir(iconsSeqmDir, finalDir + '/iconsSEQM', /^svg/i, 'SEQM');
41
+ processSourceDir(imagesDir, finalDir + '/images', /^svg/i, 'IMG');
39
42
 
40
43
  // Atualiza index.ts para garantir que todos os componentes estejam exportados
41
44
  updateIndexFile(finalDir, indexFile);
@@ -14,7 +14,7 @@ function writeIndexForDir(dir) {
14
14
 
15
15
  // Atualiza index.ts principal para reexportar os sub-indexes
16
16
  function updateIndexFile(finalDir, indexFile) {
17
- const subdirs = ['icons', 'logos', 'iconsSEQM'];
17
+ const subdirs = ['icons', 'logos', 'iconsSEQM', 'images'];
18
18
  subdirs.forEach((sub) => {
19
19
  writeIndexForDir(path.join(finalDir, sub));
20
20
  });
@@ -0,0 +1,38 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ const SvgDefaultHorseRounded = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width="1em"
7
+ height="1em"
8
+ fill="none"
9
+ viewBox="0 0 320 320"
10
+ {...props}
11
+ >
12
+ <circle
13
+ cx={160}
14
+ cy={160}
15
+ r={152}
16
+ stroke="#fff"
17
+ strokeOpacity={0.25}
18
+ strokeWidth={16}
19
+ />
20
+ <circle cx={160} cy={160} r={152} fill="#fff" fillOpacity={0.85} />
21
+ <circle
22
+ cx={160}
23
+ cy={160}
24
+ r={151}
25
+ stroke="#fff"
26
+ strokeOpacity={0.25}
27
+ strokeWidth={2}
28
+ />
29
+ <path
30
+ fill="#002710"
31
+ fillOpacity={0.25}
32
+ fillRule="evenodd"
33
+ d="M143.781 36.776c0 2.129 1.338 9.945 2.686 13.513 1.332 3.54 11.917 21.052 12.061 21.29.076.039 10.413 5.404 14.416 8.862 3.74 3.237 6.983 2.513 11.378 1.532l.963-.214c10.069-2.149 84.381 41.235 118.555 80.713a92 92 0 0 0 3.284 3.601c-3.353 57.158-38.715 105.673-88.416 127.966-.733-6.66-1.232-12.393-1.233-15.795 0-8.277-5.053-17.248-10.612-27.115-2.535-4.502-5.176-9.19-7.491-14.084-7.377-15.63-26.796-56.786-28.1-59.656-1.383-2.823-10.051-9.934-24.134-3.552-8.964 4.065-18.734 3.54-25.692 3.166-3.967-.213-7.019-.378-8.487.386-4.023 2.121-18.718 7.093-25.44 7.825-3.884.407-5.295 3.435-6.706 6.463-1.025 2.2-2.05 4.4-4.024 5.597-4.683 2.859-18.09-4.992-18.09-4.992-.154-.081-6.702-3.533-8.02-6.372-.609-1.306-.938-2.852-1.378-4.922-.52-2.442-1.194-5.611-2.663-9.971-3.911-11.893 3.164-13.207 3.381-13.245 0 0 11.368-10.436 15.393-14.013 4.017-3.534 21.008-23.581 21.411-30.982.536-9.296 6.992-15.635 12.098-20.65 1.528-1.501 2.936-2.883 4.028-4.191.835-1.035 2.06-2.068 3.366-3.168 2.298-1.938 4.846-4.086 5.96-6.83 1.786-4.221 0-9.887 0-9.887-7.27-5.63-.125-28.737 0-29.138h2.698c0 .19.042 6.433 2.661 9.96.676.886 1.514 2.3 2.445 3.87 2.802 4.727 6.438 10.861 8.969 8.203 3.356-3.592 9.362.696 9.362.696-5.308-7.735 2.537-26.703 2.662-27.002h2.709z"
34
+ clipRule="evenodd"
35
+ />
36
+ </svg>
37
+ );
38
+ export default SvgDefaultHorseRounded;
@@ -0,0 +1,69 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ const SvgDefaultHorseSquad = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width="1em"
7
+ height="1em"
8
+ fill="none"
9
+ viewBox="0 0 328 328"
10
+ {...props}
11
+ >
12
+ <g filter="url(#default-horse-squad_svg__a)">
13
+ <mask id="default-horse-squad_svg__b" fill="#fff">
14
+ <rect width={320} height={320} x={4} rx={6} />
15
+ </mask>
16
+ <rect
17
+ width={320}
18
+ height={320}
19
+ x={4}
20
+ fill="#fff"
21
+ fillOpacity={0.85}
22
+ rx={6}
23
+ shapeRendering="crispEdges"
24
+ />
25
+ <rect
26
+ width={320}
27
+ height={320}
28
+ x={4}
29
+ stroke="#fff"
30
+ strokeWidth={16}
31
+ mask="url(#default-horse-squad_svg__b)"
32
+ rx={6}
33
+ shapeRendering="crispEdges"
34
+ />
35
+ <path
36
+ fill="#002710"
37
+ fillOpacity={0.25}
38
+ fillRule="evenodd"
39
+ d="M137.63 32.3c0 2.293 1.437 10.712 2.886 14.555 1.431 3.813 12.803 22.674 12.957 22.93.082.042 11.188 5.82 15.488 9.545 4.018 3.487 7.503 2.707 12.224 1.65l1.035-.23c10.818-2.315 90.654 44.412 127.37 86.933 1.19 1.374 11.41 9.203 11.41 9.203V316H215.117s1.687-19.961 1.687-23.625c0-8.915-5.43-18.577-11.401-29.204-2.725-4.849-5.562-9.898-8.048-15.169-7.926-16.835-28.789-61.162-30.19-64.253-1.486-3.041-10.798-10.7-25.928-3.826-9.631 4.379-20.128 3.813-27.603 3.41-4.262-.23-7.541-.406-9.118.416-4.322 2.284-20.11 7.639-27.331 8.428-4.173.438-5.689 3.699-7.205 6.961-1.101 2.37-2.203 4.739-4.323 6.029-5.032 3.079-19.436-5.378-19.436-5.378-.164-.086-7.2-3.805-8.616-6.863-.654-1.406-1.007-3.071-1.48-5.301-.558-2.629-1.282-6.043-2.861-10.739-4.202-12.809 3.4-14.225 3.633-14.265 0 0 12.212-11.241 16.537-15.094 4.315-3.805 22.57-25.398 23.003-33.369.576-10.012 7.511-16.84 12.997-22.241 1.642-1.617 3.155-3.106 4.328-4.514.897-1.115 2.213-2.227 3.616-3.412 2.47-2.087 5.207-4.401 6.404-7.356 1.918-4.547 0-10.65 0-10.65-7.81-6.063-.135-30.951 0-31.383h2.898c0 .204.045 6.929 2.859 10.728.726.954 1.626 2.478 2.626 4.168 3.011 5.091 6.918 11.698 9.636 8.835 3.606-3.87 10.059.75 10.059.75-5.703-8.332 2.725-28.76 2.859-29.083h2.911z"
40
+ clipRule="evenodd"
41
+ />
42
+ </g>
43
+ <defs>
44
+ <filter
45
+ id="default-horse-squad_svg__a"
46
+ width={328}
47
+ height={328}
48
+ x={0}
49
+ y={0}
50
+ colorInterpolationFilters="sRGB"
51
+ filterUnits="userSpaceOnUse"
52
+ >
53
+ <feFlood floodOpacity={0} result="BackgroundImageFix" />
54
+ <feColorMatrix
55
+ in="SourceAlpha"
56
+ result="hardAlpha"
57
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
58
+ />
59
+ <feOffset dy={4} />
60
+ <feGaussianBlur stdDeviation={2} />
61
+ <feComposite in2="hardAlpha" operator="out" />
62
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" />
63
+ <feBlend in2="BackgroundImageFix" result="effect1_dropShadow_2700_12067" />
64
+ <feBlend in="SourceGraphic" in2="effect1_dropShadow_2700_12067" result="shape" />
65
+ </filter>
66
+ </defs>
67
+ </svg>
68
+ );
69
+ export default SvgDefaultHorseSquad;
@@ -0,0 +1,25 @@
1
+ import type { SVGProps } from 'react';
2
+ const LaurelIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 356 331"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#FFAD00'}
13
+ d="M128.422 292.16a25.7 25.7 0 0 0-6.885-3.969 24.2 24.2 0 0 0-7.249-1.385 56.8 56.8 0 0 0-15.772 2.009c-5.247 1.294-10.245 2.902-13.993 4.209-3.748 1.308-6.148 2.232-6.148 2.232a61 61 0 0 0 6.194 3.063 68 68 0 0 0 14.878 4.551 39.2 39.2 0 0 0 17.417-.441c5.45-1.603 10.028-4.946 11.558-10.269M111.995 268.467a30.85 30.85 0 0 0 8.917 12.194 15.65 15.65 0 0 0 6.445 3.034c2.425.51 4.946.266 7.233-.702a24.76 24.76 0 0 0-3.726-13.858 42 42 0 0 0-9.165-10.04 101 101 0 0 0-9.672-6.946c-2.671-1.695-4.485-2.679-4.485-2.679q.017.828.117 1.65c.117 1.04.277 2.542.564 4.328a54.6 54.6 0 0 0 3.772 13.019M75.903 280.929a16.4 16.4 0 0 0 7.373-1.824 16.7 16.7 0 0 0 5.81-4.958 18.6 18.6 0 0 0-4.79-5.563 18.3 18.3 0 0 0-6.54-3.24 60 60 0 0 0-15.722-2.055c-5.447-.181-10.814-.026-14.857 0l-6.753.119s.505.562 1.45 1.499c.933.882 2.304 2.186 3.992 3.601a63 63 0 0 0 13.607 8.668 36.76 36.76 0 0 0 16.43 3.753M84.682 260.712a14.5 14.5 0 0 0 5.416 4.634 14.25 14.25 0 0 0 6.932 1.463 20.73 20.73 0 0 0 .313-14.554 45 45 0 0 0-6.51-12.198 113 113 0 0 0-7.117-8.864c-.937-1.103-1.735-1.985-2.32-2.571a12 12 0 0 1-.854-.937s-.185.551-.45 1.53a41 41 0 0 0-.809 4.152 45 45 0 0 0-.076 13.323 30.37 30.37 0 0 0 5.475 14.022M21.501 222.55c-3.732-1.19-6.143-1.887-6.143-1.887s.23.624.696 1.691c.467 1.067 1.259 2.514 2.218 4.256a98 98 0 0 0 3.496 5.874c.69 1.056 1.413 2.139 2.181 3.226l.614.834.753 1.025c.534.661 1.066 1.352 1.587 2.022a34.1 34.1 0 0 0 15.032 11.007 15.54 15.54 0 0 0 7.679.804 15.65 15.65 0 0 0 7.137-2.989c-1.2-4.917-4.102-9.23-8.175-12.152-.977-.804-2.064-1.53-3.15-2.297-1.084-.768-2.258-1.471-3.445-2.186s-2.387-1.486-3.64-2.205a70 70 0 0 0-3.532-1.814A111 111 0 0 0 21.5 222.55M57.16 232.205a13.47 13.47 0 0 0 3.54 6.131 13.15 13.15 0 0 0 6.122 3.437 23 23 0 0 0 4.844-13.49 62.4 62.4 0 0 0-.784-12.225 45 45 0 0 0-1.302-6.009 73 73 0 0 0-1.736-5.411c-.549-1.53-1.1-2.814-1.465-3.689a13 13 0 0 1-.505-1.385s-.378.51-.931 1.416a67 67 0 0 0-2.16 3.788 68.4 68.4 0 0 0-5.013 12.631 49 49 0 0 0-.9 3.803 33 33 0 0 0-.528 3.674 27 27 0 0 0 .107 3.735c.133 1.217.37 2.42.712 3.594M15.78 204.371a23 23 0 0 0 2.897 2.904 29 29 0 0 0 3.157 2.392 16.9 16.9 0 0 0 6.929 2.887c2.492.427 5.046.285 7.477-.417a15.96 15.96 0 0 0-.45-7.36 16 16 0 0 0-1.404-3.242c-.564-1.06-1.289-2.039-1.953-3.063a47.3 47.3 0 0 0-11.555-10.502 127 127 0 0 0-12.153-7.678 1271 1271 0 0 0-5.723-3.107s.102.686.395 1.83.773 2.767 1.424 4.715a62.2 62.2 0 0 0 6.143 13.801 56 56 0 0 0 4.816 6.84M44.147 202.399a14.2 14.2 0 0 0 4.596 5.427c4.304-2.507 7.5-6.593 8.93-11.42.357-1.128.643-2.279.856-3.444.101-.578.188-1.175.264-1.742s.178-1.191.265-1.799c.285-2.341.386-4.7.302-7.056a121 121 0 0 0-1.13-11.987 57 57 0 0 0-.754-3.731 9 9 0 0 1-.234-1.4s-.45.383-1.172 1.149a39 39 0 0 0-2.821 3.226 62.6 62.6 0 0 0-7.266 11.349 34.65 34.65 0 0 0-3.485 14.591 13.7 13.7 0 0 0 .46 3.541c.275 1.14.673 2.246 1.187 3.296zM6.645 161.072a31 31 0 0 0 2.17 3.51 31 31 0 0 0 2.637 3.006 16.85 16.85 0 0 0 6.262 4.242 16.6 16.6 0 0 0 7.453 1.05 15.8 15.8 0 0 0 .934-7.277 18.5 18.5 0 0 0-.753-3.444 26 26 0 0 0-1.235-3.376 33.4 33.4 0 0 0-4.013-6.544 553 553 0 0 1-2.467-3.169 134 134 0 0 0-2.576-3.063c-3.564-3.989-7.507-7.631-10.239-10.363-2.821-2.68-4.807-4.433-4.807-4.433s-.076 2.768.165 6.931c.22 2.365.567 4.716 1.04 7.043a69 69 0 0 0 .835 3.969c.29 1.38.676 2.738 1.157 4.061.95 2.703 2.1 5.329 3.437 7.857M38.142 169.928c4.657-1.625 8.552-4.954 10.924-9.338q.856-1.502 1.506-3.107.747-1.593 1.326-3.257a41.3 41.3 0 0 0 1.67-6.615c.405-2.158.848-4.271 1.058-6.22.117-.979.193-1.914.265-2.794s.091-1.726.193-2.485c.198-1.669.293-3.349.287-5.03a55 55 0 0 0-4.896 3.231 66 66 0 0 0-2.29 1.764 32 32 0 0 0-2.422 2.128 57 57 0 0 0-4.806 5.292 48 48 0 0 0-2.26 3.062 66 66 0 0 0-1.02 1.634 18 18 0 0 0-.867 1.67 29.2 29.2 0 0 0-2.366 6.974 19.7 19.7 0 0 0-.328 3.528 16.2 16.2 0 0 0 .543 3.422 14.2 14.2 0 0 0 3.483 6.141M19.284 103.831c-1.214-2.366-2.524-4.686-3.785-6.836s-2.494-4.119-3.472-5.784C9.974 87.877 8.489 85.7 8.489 85.7s-.777 2.628-1.588 6.69a94 94 0 0 0-.777 7.127 72 72 0 0 0-.217 4.046 40 40 0 0 0 .217 4.266c.196 2.856.64 5.688 1.326 8.463a33 33 0 0 0 3.16 7.57 16.6 16.6 0 0 0 5.085 5.667 16.25 16.25 0 0 0 7.043 2.754 16 16 0 0 0 1.624-3.38 18.2 18.2 0 0 0 .937-3.418 18.6 18.6 0 0 0-.377-7.096 37 37 0 0 0-2.203-7.276c-1.016-2.43-2.283-4.911-3.436-7.281M48.62 124.787a27.3 27.3 0 0 0 4.174-5.358 40.4 40.4 0 0 0 3.307-5.799c.482-.968.833-1.936 1.289-2.867.456-.93.848-1.861 1.198-2.752.753-1.788 1.26-3.444 1.736-4.864a42 42 0 0 0 1.519-4.728 53 53 0 0 0-5.534 1.817 49 49 0 0 0-11.501 6.247q-1.535 1.092-2.928 2.362a36 36 0 0 0-2.58 2.679 26 26 0 0 0-4.041 6.081 17.4 17.4 0 0 0-1.434 6.741 12 12 0 0 0 .46 3.418c.386 1.176.91 2.301 1.56 3.35a20.8 20.8 0 0 0 12.775-6.327M32.7 90.458a14.3 14.3 0 0 0 1.76-3.032 16 16 0 0 0 1.014-3.35c.23-1.149.317-2.35.45-3.541a35 35 0 0 0-.404-7.59 77 77 0 0 0-1.506-7.854c-1.32-5.25-2.76-10.19-4.028-13.952-1.267-3.761-2.16-6.174-2.16-6.174s-.349.567-.907 1.608c-.557 1.04-1.28 2.555-2.09 4.432a64.6 64.6 0 0 0-4.567 14.456 54 54 0 0 0-.753 8.494c-.022 1.39.085 2.78.32 4.15.181 1.328.459 2.64.83 3.927a18 18 0 0 0 3.43 6.695 16.54 16.54 0 0 0 6.164 4.55 14.7 14.7 0 0 0 2.448-2.82M75.69 69.605c.465-.743.712-1.187.712-1.187s-.594 0-1.612.042-2.468.15-4.2.384a57 57 0 0 0-5.943 1.052c-1.075.267-2.238.536-3.353.882a48 48 0 0 0-3.39 1.221 38.3 38.3 0 0 0-6.61 3.407 27.3 27.3 0 0 0-5.371 4.818 14.5 14.5 0 0 0-1.884 2.917 17.7 17.7 0 0 0-1.178 3.18 14.1 14.1 0 0 0-.42 3.392c.066 1.23.29 2.445.667 3.616a19.3 19.3 0 0 0 7.465-.181 24 24 0 0 0 6.435-2.53 28 28 0 0 0 2.81-1.887c.452-.34.868-.7 1.29-1.071.42-.37.867-.713 1.301-1.087A39.5 39.5 0 0 0 66.99 81.8a52 52 0 0 0 3.835-4.834c.271-.383.527-.765.792-1.148.265-.384.527-.746.799-1.088a59 59 0 0 0 1.376-2.02c.844-1.272 1.462-2.359 1.898-3.106M47.467 56.563a14.7 14.7 0 0 0 5.395-4.63 17.6 17.6 0 0 0 3.038-6.279 51.9 51.9 0 0 0 1.576-15.377c0-1.341-.072-2.68-.148-3.97s-.123-2.542-.217-3.761a175 175 0 0 0-.636-6.69c-.377-3.855-.813-6.41-.813-6.41s-.434.505-1.198 1.351a42 42 0 0 0-2.958 3.766c-1.157 1.639-2.535 3.51-3.809 5.711a64 64 0 0 0-3.62 7.143 47 47 0 0 0-2.586 7.953 31.7 31.7 0 0 0-.734 8.002 17.5 17.5 0 0 0 1.893 7.363 17.25 17.25 0 0 0 4.817 5.828M84.595 53.771a54 54 0 0 0 4.852-3.927c1.47-1.28 2.81-2.483 3.872-3.57 1.06-1.087 1.981-1.963 2.587-2.617l.93-1.01a54 54 0 0 0-5.796-.863 56 56 0 0 0-6.026-.253c-2.366.001-4.727.189-7.064.562a29.94 29.94 0 0 0-13.511 5.222 17.2 17.2 0 0 0-4.427 5.148 13.7 13.7 0 0 0-1.409 6.856 19.9 19.9 0 0 0 14.134.765 27.8 27.8 0 0 0 6.25-2.68 41.5 41.5 0 0 0 5.61-3.63z"
14
+ />
15
+ <path
16
+ fill={props?.fill ? props.fill : '#FFAD00'}
17
+ d="M75.023 259.873c14.07 11.934 31.249 20.101 48.111 27.041 13.789 5.697 31.467 14.994 49.503 23.671a354 354 0 0 1-45.03 11.563c-1.682.265 6.966 9.261 8.591 8.758 14.915-4.582 30.061-10.143 44.983-16.297 16.293 7.563 32.41 14.048 45.67 16.317 1.667.296 6.853-8.771 5.184-9.076a321 321 0 0 1-42.35-10.829c25.024-10.723 49.119-22.862 69.954-34.44 22.221-12.039 40.023-31.046 50.755-54.193 10.345-21.98 17.637-46.284 18.715-70.709 1.482-33.813-9.626-66.99-26.885-95.496a220 220 0 0 0-16.956-24.408c.538-2.017.624-4.13.252-6.185a17.15 17.15 0 0 0-2.669-6.584 31.7 31.7 0 0 0-11.228-9.84 50 50 0 0 0-12.327-4.82c-1.351-.34-2.72-.608-4.099-.804-.488-.06-.868-.102-1.128-.121a4 4 0 0 0-.372-.027q.062.18.146.35c.121.234.273.587.497 1.028.434.895 1.085 2.159 1.899 3.691a125 125 0 0 0 6.432 11.004 56 56 0 0 0 4.266 5.671 28 28 0 0 0 2.411 2.485 22 22 0 0 0 2.591 2.174c1.795 1.3 3.8 2.27 5.925 2.867 1.702.425 3.459.584 5.208.47a209 209 0 0 1 29.36 48.312 161.05 161.05 0 0 1 14.071 68.74c-.586 25.799-9.017 52.014-20.367 74.938-8.647 17.623-21.8 32.559-38.079 43.243-14.689 9.702-30.816 16.979-46.829 24.057-12.007 5.292-26.258 10.739-40.698 15.59-30.944-10.569-63.279-24.836-85.694-37.764a115.2 115.2 0 0 1-31.105-25.466 129 129 0 0 1-20.158-35.501c-9.627-24.011-15.727-48.873-14.23-74.971 1.737-30.417 13.455-59.51 29.749-84.753a220 220 0 0 1 13.656-18.964 17.2 17.2 0 0 0 5.037-.498 18.6 18.6 0 0 0 5.925-2.882 24 24 0 0 0 2.59-2.159 27 27 0 0 0 2.412-2.485A59 59 0 0 0 92.98 16.9c2.591-3.925 4.814-7.962 6.422-11.008.807-1.512 1.48-2.804 1.896-3.717q.327-.661.51-1.015l.13-.337h-.371c-.256 0-.633.073-1.111.132a41 41 0 0 0-4.1.805 51.5 51.5 0 0 0-12.334 4.82 31.9 31.9 0 0 0-11.22 9.86 17 17 0 0 0-2.669 6.57c-.375 2.018-.3 4.095.217 6.08a212.5 212.5 0 0 0-28.398 46.15 168.5 168.5 0 0 0-15.436 63.466c-.94 25.255 5.783 49.475 15.089 72.632 7.456 18.648 18.142 35.592 33.418 48.535"
18
+ />
19
+ <path
20
+ fill={props?.fill ? props.fill : '#FFAD00'}
21
+ d="M256.229 305.455a67.7 67.7 0 0 0 14.874-4.536 65 65 0 0 0 6.174-3.063s-2.422-.983-6.148-2.247-8.724-2.902-13.986-4.209a56.6 56.6 0 0 0-15.76-2.022 24 24 0 0 0-7.243 1.384 25.5 25.5 0 0 0-6.882 3.954c1.506 5.358 6.133 8.734 11.549 10.28a39.7 39.7 0 0 0 17.422.459M228.328 286.278a15.95 15.95 0 0 0 6.435-3.028 31.4 31.4 0 0 0 8.913-12.194 56.4 56.4 0 0 0 3.767-13.043c.291-1.783.46-3.287.562-4.328s.122-1.634.122-1.634-1.817.979-4.484 2.679a99 99 0 0 0-9.681 6.961 42.6 42.6 0 0 0-9.173 10.024 24.55 24.55 0 0 0-3.689 13.875 11.95 11.95 0 0 0 7.228.688M293.623 265.893a61.3 61.3 0 0 0-15.729 2.039 18.2 18.2 0 0 0-6.527 3.239 18.5 18.5 0 0 0-4.773 5.564 16.7 16.7 0 0 0 5.809 4.96 16.4 16.4 0 0 0 7.375 1.818 36.54 36.54 0 0 0 16.423-3.762 61.8 61.8 0 0 0 13.591-8.67c1.715-1.398 3.073-2.71 4.02-3.601q.758-.7 1.432-1.484l-6.738-.119c-4.076-.026-9.456-.145-14.883.016M258.643 269.377a14.3 14.3 0 0 0 6.934-1.48 14.55 14.55 0 0 0 5.414-4.644 29.94 29.94 0 0 0 5.466-13.977 44.9 44.9 0 0 0-.086-13.328 44 44 0 0 0-.821-4.163c-.256-1.01-.449-1.53-.449-1.53s-.313.329-.855.937c-.543.609-1.382 1.473-2.305 2.587-1.925 2.205-4.52 5.25-7.111 8.837a44.6 44.6 0 0 0-6.524 12.21 20.57 20.57 0 0 0 .337 14.551M328.758 242.148a52 52 0 0 0 1.592-2.022l.754-1.025.605-.834c.753-1.083 1.506-2.17 2.17-3.226 1.372-2.097 2.546-4.119 3.522-5.859.977-1.739 1.691-3.226 2.192-4.266q.405-.82.712-1.681s-2.407.713-6.155 1.888a112 112 0 0 0-13.29 5.206 66 66 0 0 0-3.532 1.83 113 113 0 0 0-3.64 2.174c-1.165.732-2.346 1.44-3.446 2.205s-2.181 1.473-3.153 2.296c-4.08 2.916-6.982 7.234-8.171 12.156a15.54 15.54 0 0 0 7.137 2.997c2.587.379 5.227.095 7.679-.827a34.1 34.1 0 0 0 15.024-11.012M297.901 220.003a69 69 0 0 0-5.013-12.657c-.833-1.607-1.567-2.886-2.159-3.793-.592-.906-.922-1.4-.922-1.4l-.513 1.37c-.323.86-.9 2.143-1.464 3.689a67 67 0 0 0-1.737 5.411 44 44 0 0 0-1.319 6.013 66 66 0 0 0-.792 12.225 22.66 22.66 0 0 0 4.839 13.477 13.23 13.23 0 0 0 6.121-3.443 13.55 13.55 0 0 0 3.552-6.125 21 21 0 0 0 .753-3.583 27 27 0 0 0 .071-3.715 34 34 0 0 0-.512-3.679 69 69 0 0 0-.905-3.79M352.293 181.581c.276-1.149.378-1.83.378-1.83s-2.207 1.191-5.714 3.107a122 122 0 0 0-12.153 7.689 46.8 46.8 0 0 0-11.565 10.487c-.69 1.01-1.397 2.004-1.977 3.063a16 16 0 0 0-1.391 3.252 15.7 15.7 0 0 0-.434 7.35c2.432.697 4.986.837 7.477.41a16.9 16.9 0 0 0 6.931-2.88 29 29 0 0 0 3.17-2.393 26 26 0 0 0 2.882-2.886 57 57 0 0 0 4.844-6.855 63.1 63.1 0 0 0 6.139-13.817c.619-1.929 1.116-3.568 1.413-4.697M306.904 210.395a14.2 14.2 0 0 0 4.611-5.442 16.7 16.7 0 0 0 1.188-3.272 14.6 14.6 0 0 0 .47-3.541 34.9 34.9 0 0 0-3.491-14.606 64.7 64.7 0 0 0-7.264-11.334c-1.13-1.385-2.063-2.47-2.821-3.231-.757-.761-1.172-1.171-1.172-1.171s-.102.505-.249 1.398-.476 2.17-.753 3.749a112 112 0 0 0-1.131 11.971 42 42 0 0 0 .306 7.056c.091.598.178 1.191.25 1.788.071.598.177 1.149.266 1.753.211 1.167.502 2.318.869 3.445 1.43 4.829 4.621 8.92 8.921 11.437M340.615 148.559a52 52 0 0 0-2.591 3.062 614 614 0 0 1-2.498 3.151 35.6 35.6 0 0 0-3.998 6.545 23.6 23.6 0 0 0-1.228 3.376 16 16 0 0 0-.753 3.468 15.6 15.6 0 0 0 .942 7.277 16.6 16.6 0 0 0 7.451-1.052 16.9 16.9 0 0 0 6.26-4.24 31 31 0 0 0 2.636-3.017 32 32 0 0 0 2.171-3.512 55 55 0 0 0 3.424-7.839 30 30 0 0 0 1.172-4.073c.317-1.34.588-2.679.829-3.958a67 67 0 0 0 1.033-7.056c.241-4.15.169-6.889.169-6.889s-2.001 1.712-4.811 4.411c-2.715 2.701-6.66 6.365-10.208 10.346M321.005 166.307c.305-1.117.489-2.265.549-3.422a17.8 17.8 0 0 0-.349-3.542 28.5 28.5 0 0 0-2.351-6.974c-.271-.567-.564-1.118-.848-1.665s-.682-1.087-1.033-1.623c-.712-1.056-1.506-2.097-2.259-3.063a53 53 0 0 0-4.827-5.25 30 30 0 0 0-2.421-2.143 70 70 0 0 0-2.29-1.753c-2.886-2.097-4.896-3.246-4.896-3.246q.008 2.53.282 5.045.17 1.229.2 2.47c.076.882.154 1.815.271 2.794.217 1.951.651 4.061 1.064 6.235.37 2.25.928 4.463 1.669 6.616a35 35 0 0 0 1.317 3.241 26 26 0 0 0 1.506 3.107c2.365 4.39 6.262 7.722 10.924 9.338a14.07 14.07 0 0 0 3.492-6.165M330.728 120.973a17.3 17.3 0 0 0 .569 10.514 16.5 16.5 0 0 0 1.627 3.38 16.26 16.26 0 0 0 7.046-2.753 16.6 16.6 0 0 0 5.087-5.668 33.5 33.5 0 0 0 3.184-7.57 50 50 0 0 0 1.319-8.478c.109-1.427.196-2.867.217-4.267.022-1.4-.117-2.736-.217-4.046a111 111 0 0 0-.753-7.111c-.829-4.073-1.597-6.69-1.597-6.69s-1.475 2.154-3.533 5.512c-1.002 1.65-2.181 3.614-3.485 5.784a117 117 0 0 0-3.793 6.835c-1.131 2.366-2.422 4.834-3.425 7.277a36.4 36.4 0 0 0-2.246 7.277zM320.385 120.157a25.8 25.8 0 0 0-4.045-6.082 41 41 0 0 0-2.576-2.679 35 35 0 0 0-2.927-2.35 49.5 49.5 0 0 0-11.515-6.263 52 52 0 0 0-5.534-1.803 43 43 0 0 0 1.552 4.701c.464 1.427.998 3.111 1.736 4.88a42 42 0 0 0 1.198 2.751c.445.938.798 1.915 1.289 2.887a39 39 0 0 0 3.303 5.799 28 28 0 0 0 4.162 5.358 20.68 20.68 0 0 0 12.758 6.294 15 15 0 0 0 1.545-3.334c.318-1.111.478-2.262.476-3.418a17.8 17.8 0 0 0-1.422-6.741M327.826 47.565s-.892 2.397-2.17 6.174-2.702 8.688-4.03 13.951c-.651 2.618-1.085 5.222-1.506 7.855a34.5 34.5 0 0 0-.378 7.585c.124 1.202.217 2.408.434 3.552a15.8 15.8 0 0 0 1.018 3.334 15.4 15.4 0 0 0 1.736 3.063 16.8 16.8 0 0 0 2.422 2.814 16.14 16.14 0 0 0 6.178-4.57 17.9 17.9 0 0 0 3.429-6.678c.379-1.287.67-2.6.868-3.927.205-1.374.304-2.761.297-4.15a57 57 0 0 0-.753-8.494 65.2 65.2 0 0 0-4.557-14.468 96 96 0 0 0-2.087-4.447 13 13 0 0 0-.901-1.594M311.613 85.697a13.5 13.5 0 0 0-1.883-2.902 27 27 0 0 0-5.371-4.818 36.3 36.3 0 0 0-6.593-3.407 46 46 0 0 0-3.39-1.233 38 38 0 0 0-3.39-.882 52 52 0 0 0-5.929-1.051c-1.725-.22-3.144-.344-4.177-.384a52 52 0 0 0-1.617-.042s.235.428.708 1.175 1.039 1.83 1.883 3.087c.411.64.868 1.31 1.378 2.025l.803 1.082c.241.384.512.765.792 1.15a49 49 0 0 0 3.826 4.832 38.4 38.4 0 0 0 4.568 4.777c.434.383.886.743 1.302 1.102s.856.717 1.303 1.056q1.341 1.037 2.81 1.877a22.5 22.5 0 0 0 6.441 2.542c2.451.555 4.986.617 7.461.181a11.9 11.9 0 0 0 .241-7.008 15.8 15.8 0 0 0-1.172-3.162zM308.191 59.17a17.1 17.1 0 0 0 4.821-5.821 17.4 17.4 0 0 0 1.869-7.367c.105-2.7-.135-5.401-.716-8.038a47.3 47.3 0 0 0-2.576-7.958 64 64 0 0 0-3.639-7.137c-1.259-2.186-2.637-4.077-3.768-5.711a42 42 0 0 0-2.975-3.762c-.761-.882-1.187-1.354-1.187-1.354s-.419 2.586-.82 6.426a174 174 0 0 0-.629 6.674 94 94 0 0 0-.217 3.766c-.048 1.281-.148 2.629-.163 3.97a53.2 53.2 0 0 0 1.567 15.393 18.4 18.4 0 0 0 3.014 6.278 14.75 14.75 0 0 0 5.419 4.641M291.249 49.916a30.03 30.03 0 0 0-13.511-5.248 47 47 0 0 0-7.07-.552c-2.233 0-4.275.088-6.026.254-3.538.384-5.79.862-5.79.862s.317.384.922 1.025c.605.642 1.536 1.53 2.576 2.618 1.039 1.087 2.43 2.295 3.887 3.57a59 59 0 0 0 4.83 3.927 44 44 0 0 0 5.627 3.614 27.2 27.2 0 0 0 6.242 2.679 19.6 19.6 0 0 0 14.134-.765 13.8 13.8 0 0 0-1.389-6.856 17.05 17.05 0 0 0-4.432-5.128"
22
+ />
23
+ </svg>
24
+ );
25
+ export default LaurelIcon;
@@ -0,0 +1,62 @@
1
+ import type { SVGProps } from 'react';
2
+ const MedalIcon = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 22 22"
9
+ {...props}
10
+ >
11
+ <g filter="url(#medal_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : 'url(#medal_svg__b)'}
14
+ d="M10.362 3.963a1.38 1.38 0 0 1 1.943 0l.45.445a1.38 1.38 0 0 0 1.084.395l.631-.052a1.38 1.38 0 0 1 1.488 1.248l.058.63c.037.403.248.768.578 1.001l.516.365a1.38 1.38 0 0 1 .338 1.913l-.361.52a1.38 1.38 0 0 0-.2 1.137l.16.613a1.38 1.38 0 0 1-.97 1.682l-.611.166c-.39.106-.713.377-.885.742l-.27.573a1.38 1.38 0 0 1-1.825.664l-.575-.265a1.38 1.38 0 0 0-1.155 0l-.575.265a1.38 1.38 0 0 1-1.825-.664l-.27-.572a1.38 1.38 0 0 0-.885-.743l-.61-.166a1.38 1.38 0 0 1-.971-1.682l.16-.613a1.38 1.38 0 0 0-.2-1.137l-.36-.52a1.38 1.38 0 0 1 .337-1.913l.517-.365c.33-.233.54-.598.577-1L6.709 6A1.38 1.38 0 0 1 8.197 4.75l.63.052a1.38 1.38 0 0 0 1.086-.395z"
15
+ />
16
+ <path
17
+ stroke="#8C421D"
18
+ strokeWidth={0.7}
19
+ d="M10.609 4.21a1.03 1.03 0 0 1 1.45 0l.448.447c.36.356.857.537 1.362.495l.63-.052a1.03 1.03 0 0 1 1.11.931l.059.631c.046.504.31.962.723 1.254l.518.365c.46.326.573.963.25 1.427l-.36.52a1.73 1.73 0 0 0-.252 1.426l.162.613a1.03 1.03 0 0 1-.725 1.255l-.61.166a1.73 1.73 0 0 0-1.11.931l-.27.572a1.03 1.03 0 0 1-1.362.496l-.575-.264a1.73 1.73 0 0 0-1.447 0l-.575.264a1.03 1.03 0 0 1-1.363-.496l-.27-.572a1.73 1.73 0 0 0-1.109-.93l-.61-.168a1.03 1.03 0 0 1-.725-1.254l.162-.613a1.73 1.73 0 0 0-.252-1.425l-.36-.521c-.323-.464-.21-1.1.25-1.427l.518-.365A1.73 1.73 0 0 0 7 6.662l.057-.63a1.03 1.03 0 0 1 1.11-.932l.631.052a1.73 1.73 0 0 0 1.362-.495z"
20
+ />
21
+ </g>
22
+ <defs>
23
+ <linearGradient
24
+ id="medal_svg__b"
25
+ x1={6.574}
26
+ x2={16.117}
27
+ y1={15.32}
28
+ y2={5.508}
29
+ gradientUnits="userSpaceOnUse"
30
+ >
31
+ <stop stopColor="#8C421D" />
32
+ <stop offset={0.325} stopColor="#FBE67B" />
33
+ <stop offset={0.535} stopColor="#FCFBE7" />
34
+ <stop offset={0.77} stopColor="#F7D14E" />
35
+ <stop offset={1} stopColor="#D4A041" />
36
+ </linearGradient>
37
+ <filter
38
+ id="medal_svg__a"
39
+ width={20.721}
40
+ height={20.569}
41
+ x={0.973}
42
+ y={0.563}
43
+ colorInterpolationFilters="sRGB"
44
+ filterUnits="userSpaceOnUse"
45
+ >
46
+ <feFlood floodOpacity={0} result="BackgroundImageFix" />
47
+ <feColorMatrix
48
+ in="SourceAlpha"
49
+ result="hardAlpha"
50
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
51
+ />
52
+ <feOffset dy={1} />
53
+ <feGaussianBlur stdDeviation={2} />
54
+ <feComposite in2="hardAlpha" operator="out" />
55
+ <feColorMatrix values="0 0 0 0 0.122559 0 0 0 0 0.0958559 0 0 0 0 0 0 0 0 0.3 0" />
56
+ <feBlend in2="BackgroundImageFix" result="effect1_dropShadow_2954_12113" />
57
+ <feBlend in="SourceGraphic" in2="effect1_dropShadow_2954_12113" result="shape" />
58
+ </filter>
59
+ </defs>
60
+ </svg>
61
+ );
62
+ export default MedalIcon;
@@ -19,8 +19,10 @@ export { default as FilterIcon } from './FilterIcon';
19
19
  export { default as GoogleColorIcon } from './GoogleColorIcon';
20
20
  export { default as GoogleIcon } from './GoogleIcon';
21
21
  export { default as InstagramIcon } from './InstagramIcon';
22
+ export { default as LaurelIcon } from './LaurelIcon';
22
23
  export { default as ListIcon } from './ListIcon';
23
24
  export { default as ListOlIcon } from './ListOlIcon';
25
+ export { default as MedalIcon } from './MedalIcon';
24
26
  export { default as PencilSquareIcon } from './PencilSquareIcon';
25
27
  export { default as PersonCircleIcon } from './PersonCircleIcon';
26
28
  export { default as PlusIcon } from './PlusIcon';
@@ -0,0 +1,37 @@
1
+ import type { SVGProps } from 'react';
2
+ const DefaultHorseRoundedIconIMG = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 320 320"
9
+ {...props}
10
+ >
11
+ <circle
12
+ cx={160}
13
+ cy={160}
14
+ r={152}
15
+ stroke="#fff"
16
+ strokeOpacity={0.25}
17
+ strokeWidth={16}
18
+ />
19
+ <circle cx={160} cy={160} r={152} fill="#fff" fillOpacity={0.85} />
20
+ <circle
21
+ cx={160}
22
+ cy={160}
23
+ r={151}
24
+ stroke="#fff"
25
+ strokeOpacity={0.25}
26
+ strokeWidth={2}
27
+ />
28
+ <path
29
+ fill={props?.fill ? props.fill : '#002710'}
30
+ fillOpacity={0.25}
31
+ fillRule="evenodd"
32
+ d="M143.781 36.776c0 2.129 1.338 9.945 2.686 13.513 1.332 3.54 11.917 21.052 12.061 21.29.076.039 10.413 5.404 14.416 8.862 3.74 3.237 6.983 2.513 11.378 1.532l.963-.214c10.069-2.149 84.381 41.235 118.555 80.713a92 92 0 0 0 3.284 3.601c-3.353 57.158-38.715 105.673-88.416 127.966-.733-6.66-1.232-12.393-1.233-15.795 0-8.277-5.053-17.248-10.612-27.115-2.535-4.502-5.176-9.19-7.491-14.084-7.377-15.63-26.796-56.786-28.1-59.656-1.383-2.823-10.051-9.934-24.134-3.552-8.964 4.065-18.734 3.54-25.692 3.166-3.967-.213-7.019-.378-8.487.386-4.023 2.121-18.718 7.093-25.44 7.825-3.884.407-5.295 3.435-6.706 6.463-1.025 2.2-2.05 4.4-4.024 5.597-4.683 2.859-18.09-4.992-18.09-4.992-.154-.081-6.702-3.533-8.02-6.372-.609-1.306-.938-2.852-1.378-4.922-.52-2.442-1.194-5.611-2.663-9.971-3.911-11.893 3.164-13.207 3.381-13.245 0 0 11.368-10.436 15.393-14.013 4.017-3.534 21.008-23.581 21.411-30.982.536-9.296 6.992-15.635 12.098-20.65 1.528-1.501 2.936-2.883 4.028-4.191.835-1.035 2.06-2.068 3.366-3.168 2.298-1.938 4.846-4.086 5.96-6.83 1.786-4.221 0-9.887 0-9.887-7.27-5.63-.125-28.737 0-29.138h2.698c0 .19.042 6.433 2.661 9.96.676.886 1.514 2.3 2.445 3.87 2.802 4.727 6.438 10.861 8.969 8.203 3.356-3.592 9.362.696 9.362.696-5.308-7.735 2.537-26.703 2.662-27.002h2.709z"
33
+ clipRule="evenodd"
34
+ />
35
+ </svg>
36
+ );
37
+ export default DefaultHorseRoundedIconIMG;
@@ -0,0 +1,68 @@
1
+ import type { SVGProps } from 'react';
2
+ const DefaultHorseSquadIconIMG = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 328 328"
9
+ {...props}
10
+ >
11
+ <g filter="url(#default-horse-squad_svg__a)">
12
+ <mask id="default-horse-squad_svg__b" fill="#fff">
13
+ <rect width={320} height={320} x={4} rx={6} />
14
+ </mask>
15
+ <rect
16
+ width={320}
17
+ height={320}
18
+ x={4}
19
+ fill="#fff"
20
+ fillOpacity={0.85}
21
+ rx={6}
22
+ shapeRendering="crispEdges"
23
+ />
24
+ <rect
25
+ width={320}
26
+ height={320}
27
+ x={4}
28
+ stroke="#fff"
29
+ strokeWidth={16}
30
+ mask="url(#default-horse-squad_svg__b)"
31
+ rx={6}
32
+ shapeRendering="crispEdges"
33
+ />
34
+ <path
35
+ fill={props?.fill ? props.fill : '#002710'}
36
+ fillOpacity={0.25}
37
+ fillRule="evenodd"
38
+ d="M137.63 32.3c0 2.293 1.437 10.712 2.886 14.555 1.431 3.813 12.803 22.674 12.957 22.93.082.042 11.188 5.82 15.488 9.545 4.018 3.487 7.503 2.707 12.224 1.65l1.035-.23c10.818-2.315 90.654 44.412 127.37 86.933 1.19 1.374 11.41 9.203 11.41 9.203V316H215.117s1.687-19.961 1.687-23.625c0-8.915-5.43-18.577-11.401-29.204-2.725-4.849-5.562-9.898-8.048-15.169-7.926-16.835-28.789-61.162-30.19-64.253-1.486-3.041-10.798-10.7-25.928-3.826-9.631 4.379-20.128 3.813-27.603 3.41-4.262-.23-7.541-.406-9.118.416-4.322 2.284-20.11 7.639-27.331 8.428-4.173.438-5.689 3.699-7.205 6.961-1.101 2.37-2.203 4.739-4.323 6.029-5.032 3.079-19.436-5.378-19.436-5.378-.164-.086-7.2-3.805-8.616-6.863-.654-1.406-1.007-3.071-1.48-5.301-.558-2.629-1.282-6.043-2.861-10.739-4.202-12.809 3.4-14.225 3.633-14.265 0 0 12.212-11.241 16.537-15.094 4.315-3.805 22.57-25.398 23.003-33.369.576-10.012 7.511-16.84 12.997-22.241 1.642-1.617 3.155-3.106 4.328-4.514.897-1.115 2.213-2.227 3.616-3.412 2.47-2.087 5.207-4.401 6.404-7.356 1.918-4.547 0-10.65 0-10.65-7.81-6.063-.135-30.951 0-31.383h2.898c0 .204.045 6.929 2.859 10.728.726.954 1.626 2.478 2.626 4.168 3.011 5.091 6.918 11.698 9.636 8.835 3.606-3.87 10.059.75 10.059.75-5.703-8.332 2.725-28.76 2.859-29.083h2.911z"
39
+ clipRule="evenodd"
40
+ />
41
+ </g>
42
+ <defs>
43
+ <filter
44
+ id="default-horse-squad_svg__a"
45
+ width={328}
46
+ height={328}
47
+ x={0}
48
+ y={0}
49
+ colorInterpolationFilters="sRGB"
50
+ filterUnits="userSpaceOnUse"
51
+ >
52
+ <feFlood floodOpacity={0} result="BackgroundImageFix" />
53
+ <feColorMatrix
54
+ in="SourceAlpha"
55
+ result="hardAlpha"
56
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
57
+ />
58
+ <feOffset dy={4} />
59
+ <feGaussianBlur stdDeviation={2} />
60
+ <feComposite in2="hardAlpha" operator="out" />
61
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" />
62
+ <feBlend in2="BackgroundImageFix" result="effect1_dropShadow_2700_12067" />
63
+ <feBlend in="SourceGraphic" in2="effect1_dropShadow_2700_12067" result="shape" />
64
+ </filter>
65
+ </defs>
66
+ </svg>
67
+ );
68
+ export default DefaultHorseSquadIconIMG;
@@ -0,0 +1,2 @@
1
+ export { default as DefaultHorseRoundedIconIMG } from './DefaultHorseRoundedIconIMG';
2
+ export { default as DefaultHorseSquadIconIMG } from './DefaultHorseSquadIconIMG';
@@ -0,0 +1,35 @@
1
+ <svg width="356" height="331" viewBox="0 0 356 331" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M128.422 292.16C126.342 290.485 124.019 289.146 121.537 288.191C119.203 287.361 116.759 286.894 114.288 286.806C108.965 286.732 103.657 287.408 98.5159 288.815C93.2686 290.109 88.2708 291.717 84.523 293.024C80.7752 294.332 78.375 295.256 78.375 295.256C80.3816 296.393 82.4494 297.416 84.5685 298.319C89.3433 300.401 94.3345 301.927 99.4469 302.87C105.214 304.03 111.162 303.88 116.864 302.429C122.314 300.826 126.892 297.483 128.422 292.16Z" fill="#FFAD00"/>
3
+ <path d="M111.995 268.467C113.921 273.222 116.987 277.414 120.912 280.661C122.805 282.157 125.009 283.195 127.357 283.695C129.782 284.205 132.303 283.961 134.59 282.993C134.741 278.099 133.443 273.271 130.864 269.135C128.367 265.304 125.272 261.913 121.699 259.095C118.612 256.59 115.382 254.27 112.027 252.149C109.356 250.454 107.542 249.47 107.542 249.47C107.553 250.022 107.592 250.572 107.659 251.12C107.776 252.16 107.936 253.662 108.223 255.448C108.936 259.932 110.203 264.306 111.995 268.467Z" fill="#FFAD00"/>
4
+ <path d="M75.9032 280.929C78.4662 280.906 80.9892 280.282 83.2759 279.105C85.5625 277.929 87.5511 276.232 89.0867 274.147C87.87 271.987 86.241 270.096 84.2954 268.584C82.3498 267.072 80.1267 265.971 77.7565 265.344C72.6259 263.967 67.3404 263.276 62.0339 263.289C56.5869 263.108 51.2202 263.263 47.1773 263.289L40.4238 263.408C40.4238 263.408 40.9295 263.97 41.8735 264.907C42.8066 265.789 44.1781 267.093 45.8665 268.508C50.0207 271.974 54.5932 274.887 59.4732 277.176C64.5962 279.685 70.2164 280.969 75.9032 280.929Z" fill="#FFAD00"/>
5
+ <path d="M84.6822 260.712C86.0809 262.689 87.942 264.282 90.0977 265.346C92.2533 266.411 94.6358 266.913 97.0302 266.809C98.8907 262.161 99.0019 256.981 97.3427 252.255C95.8108 247.87 93.6142 243.754 90.8324 240.057C88.6084 236.983 86.2334 234.024 83.7165 231.193C82.7791 230.09 81.9805 229.208 81.3967 228.622C80.8129 228.035 80.5417 227.685 80.5417 227.685C80.5417 227.685 80.3572 228.236 80.0924 229.215C79.7519 230.584 79.4818 231.97 79.283 233.367C78.5972 237.779 78.5715 242.27 79.207 246.69C79.8305 251.76 81.7148 256.586 84.6822 260.712Z" fill="#FFAD00"/>
6
+ <path d="M21.5013 222.55C17.7687 221.36 15.3577 220.663 15.3577 220.663C15.3577 220.663 15.5877 221.287 16.0543 222.354C16.5209 223.421 17.313 224.868 18.2721 226.61C19.2313 228.352 20.3967 230.358 21.7682 232.484C22.4583 233.54 23.181 234.623 23.9492 235.71L24.5633 236.544L25.3164 237.569C25.8502 238.23 26.3819 238.921 26.9027 239.591C30.8175 244.6 36.0204 248.41 41.9352 250.598C44.3899 251.508 47.0282 251.784 49.6138 251.402C52.1995 251.021 54.6516 249.994 56.7506 248.413C55.5505 243.496 52.6487 239.183 48.5758 236.261C47.5992 235.457 46.512 234.731 45.4269 233.964C44.3418 233.196 43.1678 232.493 41.9807 231.778C40.7937 231.064 39.5936 230.292 38.3414 229.573C37.1544 228.912 36.0064 228.341 34.8085 227.759C30.4864 225.737 26.0416 223.997 21.5013 222.55Z" fill="#FFAD00"/>
7
+ <path d="M57.1605 232.205C57.7767 234.535 58.9991 236.653 60.6992 238.336C62.3992 240.02 64.5142 241.207 66.8218 241.773C69.8267 237.925 71.5259 233.193 71.6656 228.283C71.8059 224.191 71.5435 220.096 70.8822 216.058C70.5848 214.027 70.1497 212.019 69.5801 210.049C69.018 207.998 68.393 206.168 67.844 204.638C67.295 203.108 66.7437 201.824 66.3792 200.949C66.1844 200.498 66.0156 200.035 65.8735 199.564C65.8735 199.564 65.4959 200.074 64.9425 200.98C64.3891 201.886 63.6274 203.165 62.7833 204.768C60.699 208.796 59.0195 213.028 57.7703 217.399C57.4209 218.647 57.1192 219.926 56.8697 221.202C56.6255 222.416 56.4494 223.642 56.3423 224.876C56.2906 226.122 56.3261 227.37 56.4487 228.611C56.5817 229.828 56.8199 231.031 57.1605 232.205Z" fill="#FFAD00"/>
8
+ <path d="M15.7799 204.371C16.6585 205.425 17.6281 206.397 18.677 207.275C19.6749 208.144 20.7299 208.944 21.8345 209.667C23.9043 211.14 26.2711 212.127 28.7629 212.554C31.2547 212.981 33.8089 212.839 36.2398 212.137C36.6666 209.682 36.5126 207.159 35.7906 204.777C35.4427 203.647 34.9717 202.559 34.3865 201.535C33.8223 200.475 33.0975 199.496 32.4334 198.472C29.1801 194.346 25.2751 190.797 20.8775 187.97C16.9719 185.18 12.9146 182.617 8.72481 180.292C5.21789 178.378 3.0022 177.185 3.0022 177.185C3.0022 177.185 3.10419 177.871 3.39716 179.015C3.69012 180.16 4.16972 181.782 4.82076 183.73C6.30304 188.569 8.36645 193.204 10.9644 197.531C12.3976 199.931 14.0073 202.218 15.7799 204.371Z" fill="#FFAD00"/>
9
+ <path d="M44.1471 202.399C45.2009 204.576 46.7827 206.443 48.7435 207.826C53.0472 205.319 56.2426 201.233 57.6735 196.406C58.0301 195.278 58.3157 194.127 58.5286 192.962C58.6305 192.384 58.7173 191.787 58.7933 191.22C58.8692 190.653 58.9712 190.029 59.058 189.421C59.343 187.08 59.4439 184.721 59.3597 182.365C59.1826 178.352 58.8053 174.351 58.2291 170.378C57.973 168.817 57.6822 167.538 57.476 166.647C57.361 166.187 57.2826 165.719 57.2417 165.247C57.2417 165.247 56.7924 165.63 56.0698 166.396C55.0718 167.418 54.13 168.494 53.2486 169.622C50.4295 173.126 47.9933 176.932 45.983 180.971C43.7721 185.512 42.5816 190.496 42.4978 195.562C42.4957 196.758 42.6504 197.948 42.9579 199.103C43.2325 200.243 43.6306 201.349 44.145 202.399H44.1471Z" fill="#FFAD00"/>
10
+ <path d="M6.64543 161.072C7.29091 162.29 8.0159 163.463 8.81555 164.582C9.63013 165.641 10.5108 166.645 11.4523 167.588C13.1981 169.463 15.3385 170.913 17.7135 171.83C20.0885 172.746 22.6366 173.105 25.1674 172.88C26.0442 170.565 26.3641 168.07 26.1006 165.603C25.96 164.433 25.7078 163.28 25.3476 162.159C25.015 161.006 24.6024 159.877 24.1128 158.783C23.0292 156.451 21.6826 154.255 20.1002 152.239C19.2712 151.182 18.4487 150.126 17.6328 149.07C16.7929 148.045 15.9379 147.019 15.0568 146.007C11.4935 142.018 7.55037 138.376 4.81818 135.644C1.99702 132.964 0.0113602 131.211 0.0113602 131.211C0.0113602 131.211 -0.0645937 133.979 0.17629 138.142C0.39605 140.507 0.743066 142.858 1.21578 145.185C1.44581 146.479 1.72793 147.802 2.05128 149.154C2.3402 150.534 2.72677 151.892 3.20796 153.215C4.15874 155.918 5.30779 158.544 6.64543 161.072Z" fill="#FFAD00"/>
11
+ <path d="M38.142 169.928C42.7991 168.303 46.6937 164.974 49.0664 160.59C49.6361 159.59 50.1393 158.552 50.5725 157.483C51.0703 156.422 51.5129 155.335 51.8985 154.226C52.6357 152.073 53.1939 149.86 53.5673 147.611C53.9731 145.453 54.4158 143.34 54.6263 141.391C54.7435 140.412 54.8194 139.477 54.891 138.597C54.9627 137.717 54.9822 136.871 55.0842 136.112C55.2816 134.443 55.3772 132.763 55.3706 131.082C53.6832 132.07 52.049 133.148 50.4749 134.313C49.7674 134.829 48.9992 135.426 48.1854 136.077C47.3716 136.727 46.5382 137.446 45.7635 138.205C44.0542 139.865 42.4488 141.633 40.9567 143.497C40.1733 144.465 39.4376 145.481 38.6976 146.559C38.3547 147.095 38.0053 147.646 37.6776 148.193C37.3594 148.734 37.0696 149.291 36.8096 149.863C35.7307 152.075 34.9357 154.419 34.4441 156.837C34.2292 158.001 34.1195 159.181 34.1165 160.365C34.1748 161.523 34.3567 162.67 34.659 163.787C35.2877 166.102 36.4864 168.215 38.142 169.928Z" fill="#FFAD00"/>
12
+ <path d="M19.2835 103.831C18.0704 101.465 16.7596 99.145 15.4988 96.9951C14.238 94.8452 13.0053 92.8761 12.0266 91.2113C9.97366 87.8773 8.48929 85.6987 8.48929 85.6987C8.48929 85.6987 7.71239 88.3271 6.90076 92.3888C6.59478 94.4593 6.30832 96.8827 6.12386 99.5155C6.01535 100.825 5.94374 102.175 5.90685 103.562C5.90354 104.987 5.97598 106.411 6.12386 107.828C6.3196 110.684 6.76331 113.516 7.4498 116.291C8.18573 118.94 9.24734 121.483 10.6095 123.861C11.848 126.126 13.5891 128.066 15.6945 129.528C17.7999 130.99 20.2116 131.933 22.7383 132.282C23.4098 131.225 23.9547 130.09 24.3616 128.902C24.7841 127.797 25.0982 126.652 25.2991 125.484C25.6307 123.117 25.5024 120.706 24.9215 118.388C24.4372 115.892 23.699 113.453 22.7188 111.112C21.7032 108.682 20.4358 106.201 19.2835 103.831Z" fill="#FFAD00"/>
13
+ <path d="M48.6204 124.787C50.2266 123.186 51.6286 121.385 52.7935 119.429C54.0529 117.593 55.1591 115.653 56.1008 113.63C56.5826 112.662 56.9341 111.694 57.3899 110.763C57.8456 109.833 58.2384 108.902 58.5878 108.011C59.3408 106.223 59.8486 104.567 60.3239 103.147C60.9231 101.604 61.4303 100.025 61.8429 98.4194C59.967 98.9217 58.1196 99.5282 56.3091 100.236C52.2191 101.79 48.3511 103.891 44.8075 106.483C43.7859 107.21 42.8083 107.999 41.88 108.845C40.9745 109.692 40.1133 110.586 39.2997 111.524C37.6759 113.346 36.3154 115.394 35.2589 117.605C34.3363 119.73 33.8483 122.024 33.8245 124.346C33.8114 125.502 33.9664 126.654 34.2846 127.764C34.6708 128.94 35.1947 130.065 35.8449 131.114C40.6993 130.584 45.2187 128.346 48.6204 124.787Z" fill="#FFAD00"/>
14
+ <path d="M32.7007 90.4575C33.4089 89.5249 34.0001 88.5065 34.4607 87.4256C34.9203 86.351 35.2603 85.2275 35.4741 84.0761C35.7042 82.9273 35.791 81.7256 35.9234 80.5348C36.0649 77.9975 35.9296 75.4521 35.5197 72.9451C35.1538 70.3019 34.6511 67.6801 34.0137 65.0907C32.6942 59.8405 31.2533 54.9012 29.9859 51.1394C28.7186 47.3777 27.8266 44.9653 27.8266 44.9653C27.8266 44.9653 27.4773 45.532 26.9195 46.5728C26.3618 47.6136 25.6392 49.1284 24.8297 51.0049C22.7466 55.6219 21.2131 60.475 20.2616 65.4612C19.788 68.2675 19.5362 71.1078 19.5086 73.955C19.487 75.3455 19.5945 76.7349 19.8297 78.1049C20.0105 79.4329 20.2875 80.7455 20.6587 82.032C21.3208 84.4861 22.4905 86.7684 24.0897 88.7265C25.7672 90.7107 27.8776 92.2691 30.2528 93.2777C31.1841 92.4478 32.0067 91.5 32.7007 90.4575Z" fill="#FFAD00"/>
15
+ <path d="M75.6904 69.6048C76.1548 68.8617 76.4022 68.4185 76.4022 68.4185C76.4022 68.4185 75.8076 68.4185 74.7898 68.4603C73.772 68.5022 72.3223 68.6103 70.5906 68.844C68.5927 69.0898 66.6087 69.4409 64.6466 69.8958C63.5724 70.1626 62.4092 70.4317 61.2938 70.7779C60.1783 71.1241 59.0564 71.543 57.904 71.9994C55.5979 72.9164 53.3843 74.0573 51.2938 75.4062C49.3022 76.7646 47.4962 78.3846 45.9228 80.2242C45.181 81.1156 44.5485 82.0952 44.0391 83.1415C43.5456 84.16 43.1509 85.2249 42.8607 86.3212C42.5846 87.4299 42.4439 88.5689 42.4419 89.7125C42.5075 90.9423 42.7315 92.1581 43.1081 93.3288C45.5849 93.7564 48.1195 93.695 50.5733 93.148C52.8259 92.6211 54.9927 91.7694 57.0078 90.6188C57.9811 90.0478 58.9196 89.4175 59.8181 88.7313C60.2695 88.3917 60.6861 88.0301 61.1071 87.6596C61.5281 87.2892 61.9752 86.9474 62.4092 86.5725C64.0648 85.1149 65.5972 83.5187 66.9903 81.8008C68.3615 80.2682 69.6419 78.6542 70.8249 76.9674C71.0962 76.5837 71.3523 76.2023 71.617 75.8186C71.8818 75.4349 72.1444 75.0733 72.4156 74.7315C72.9213 74.0193 73.3879 73.3335 73.7915 72.7117C74.6357 71.4394 75.2542 70.3523 75.6904 69.6048Z" fill="#FFAD00"/>
16
+ <path d="M47.4673 56.5628C49.6106 55.4898 51.4628 53.9 52.8622 51.9322C54.2817 50.0695 55.3151 47.934 55.9004 45.6545C57.1907 40.6395 57.722 35.4541 57.4759 30.2766C57.4759 28.9359 57.4043 27.5974 57.3284 26.3075C57.2524 25.0175 57.2047 23.7651 57.1114 22.5457C56.9334 20.0915 56.6925 17.8159 56.4755 15.8556C56.0979 12.0012 55.6617 9.44556 55.6617 9.44556C55.6617 9.44556 55.2277 9.95051 54.4638 10.7972C53.4081 11.9944 52.4205 13.2519 51.5059 14.5634C50.3492 16.2018 48.9712 18.0739 47.6973 20.2745C46.3444 22.5757 45.1354 24.9611 44.0776 27.4166C42.9818 29.9834 42.116 32.6454 41.4908 35.3702C40.9084 37.9944 40.6619 40.684 40.7573 43.3723C40.8431 45.9389 41.4897 48.454 42.6502 50.7354C43.8108 53.0168 45.4562 55.0074 47.4673 56.5628Z" fill="#FFAD00"/>
17
+ <path d="M84.5948 53.771C86.2849 52.5574 87.9051 51.2461 89.4472 49.8438C90.9164 48.5649 92.2575 47.3609 93.3187 46.2738C94.3799 45.1868 95.3001 44.3114 95.9055 43.6565L96.8365 42.6466C94.9208 42.2549 92.9859 41.9671 91.0401 41.7844C89.0371 41.5924 87.0254 41.5077 85.0136 41.5308C82.6483 41.532 80.2866 41.72 77.9499 42.0931C73.0969 42.6977 68.4606 44.4894 64.4387 47.3146C62.6402 48.7141 61.1351 50.4646 60.0117 52.4634C58.9587 54.5835 58.473 56.9477 58.6032 59.3188C63.0692 61.2992 68.0895 61.571 72.7373 60.084C74.9195 59.4511 77.0182 58.5515 78.9872 57.4049C80.9497 56.3487 82.8257 55.1342 84.597 53.7732L84.5948 53.771Z" fill="#FFAD00"/>
18
+ <path d="M75.0225 259.873C89.0935 271.807 106.272 279.974 123.134 286.914C136.923 292.611 154.601 301.908 172.637 310.585C157.889 315.424 142.847 319.287 127.607 322.148C125.925 322.413 134.573 331.409 136.198 330.906C151.113 326.324 166.259 320.763 181.181 314.609C197.474 322.172 213.591 328.657 226.851 330.926C228.518 331.222 233.704 322.155 232.035 321.85C217.696 319.209 203.547 315.592 189.685 311.021C214.709 300.298 238.804 288.159 259.639 276.581C281.86 264.542 299.662 245.535 310.394 222.388C320.739 200.408 328.031 176.104 329.109 151.679C330.591 117.866 319.483 84.6895 302.224 56.1827C297.123 47.6656 291.458 39.5109 285.268 31.7751C285.806 29.7584 285.892 27.6449 285.52 25.59C285.098 23.2285 284.188 20.9846 282.851 19.0057C279.931 14.8656 276.082 11.4926 271.623 9.16687C267.739 7.01877 263.595 5.39818 259.296 4.34666C257.945 4.00625 256.576 3.7376 255.197 3.54181C254.709 3.48227 254.329 3.44037 254.069 3.42053C253.945 3.40512 253.822 3.3963 253.697 3.39408C253.738 3.51402 253.787 3.63112 253.843 3.74468C253.964 3.97841 254.116 4.33122 254.34 4.77223C254.774 5.66748 255.425 6.93096 256.239 8.46346C258.196 12.2406 260.343 15.9132 262.671 19.4666C263.973 21.4473 265.398 23.3416 266.937 25.138C267.689 26.017 268.494 26.847 269.348 27.623C270.155 28.4148 271.022 29.1418 271.939 29.7972C273.734 31.0975 275.739 32.0677 277.864 32.6638C279.566 33.0894 281.323 33.2478 283.072 33.1334C294.983 47.8007 304.861 64.0557 312.432 81.4458C322.109 103.006 326.917 126.493 326.503 150.186C325.917 175.985 317.486 202.2 306.136 225.124C297.489 242.747 284.336 257.683 268.057 268.367C253.368 278.069 237.241 285.346 221.228 292.424C209.221 297.716 194.97 303.163 180.53 308.014C149.586 297.445 117.251 283.178 94.8357 270.25C83.0829 263.673 72.5555 255.054 63.7313 244.784C55.1862 234.122 48.3802 222.136 43.573 209.283C33.9464 185.272 27.8461 160.41 29.3435 134.312C31.0796 103.895 42.7983 74.8021 59.0916 49.5588C63.3075 42.9946 67.8663 36.6644 72.7482 30.5954C74.442 30.6785 76.1388 30.5106 77.785 30.0971C79.9114 29.4981 81.9169 28.5225 83.7095 27.2151C84.6214 26.5575 85.4872 25.8362 86.3006 25.0564C87.1567 24.2823 87.9621 23.4521 88.7116 22.5713C90.2458 20.7701 91.6713 18.8762 92.9802 16.8999C95.5714 12.975 97.7936 8.93754 99.4016 5.89238C100.209 4.37973 100.882 3.08758 101.298 2.17469C101.515 1.73369 101.687 1.39631 101.808 1.16037L101.938 0.822998H101.567C101.311 0.822998 100.934 0.895767 100.456 0.955303C99.0775 1.15392 97.7093 1.42254 96.3569 1.76015C92.0602 2.82697 87.915 4.44681 84.022 6.58036C79.5685 8.92038 75.7237 12.2988 72.8024 16.4391C71.4625 18.4114 70.5524 20.6517 70.1332 23.0101C69.7583 25.0276 69.8324 27.1048 70.3502 29.0894C58.9711 43.169 49.4263 58.6807 41.9519 75.2409C32.7257 95.1503 27.479 116.722 26.5159 138.706C25.5762 163.961 32.2992 188.181 41.6047 211.338C49.0613 229.986 59.747 246.93 75.0225 259.873Z" fill="#FFAD00"/>
19
+ <path d="M256.229 305.455C261.34 304.52 266.33 302.999 271.103 300.919C273.213 300.009 275.274 298.987 277.277 297.856C277.277 297.856 274.855 296.873 271.129 295.609C267.403 294.346 262.405 292.707 257.143 291.4C252.007 289.988 246.703 289.308 241.383 289.378C238.914 289.464 236.471 289.931 234.14 290.762C231.658 291.71 229.337 293.044 227.258 294.716C228.764 300.074 233.391 303.45 238.807 304.996C244.513 306.437 250.458 306.593 256.229 305.455Z" fill="#FFAD00"/>
20
+ <path d="M228.328 286.278C230.668 285.768 232.867 284.734 234.763 283.25C238.67 279.987 241.73 275.8 243.676 271.056C245.451 266.881 246.716 262.501 247.443 258.013C247.734 256.23 247.903 254.726 248.005 253.685C248.107 252.644 248.127 252.051 248.127 252.051C248.127 252.051 246.31 253.03 243.643 254.73C240.282 256.852 237.049 259.177 233.962 261.691C230.395 264.511 227.298 267.896 224.789 271.715C222.208 275.855 220.922 280.692 221.1 285.59C223.384 286.564 225.906 286.804 228.328 286.278Z" fill="#FFAD00"/>
21
+ <path d="M293.623 265.893C288.316 265.888 283.03 266.574 277.894 267.932C275.527 268.558 273.307 269.659 271.367 271.171C269.426 272.683 267.803 274.575 266.594 276.735C268.128 278.821 270.116 280.519 272.403 281.695C274.69 282.871 277.214 283.493 279.778 283.513C285.464 283.557 291.083 282.27 296.201 279.751C301.082 277.472 305.651 274.557 309.792 271.081C311.507 269.683 312.865 268.371 313.812 267.48C314.317 267.014 314.795 266.519 315.244 265.996L308.506 265.877C304.43 265.851 299.05 265.732 293.623 265.893Z" fill="#FFAD00"/>
22
+ <path d="M258.643 269.377C261.039 269.474 263.421 268.966 265.577 267.897C267.732 266.828 269.592 265.233 270.991 263.253C273.964 259.149 275.847 254.335 276.457 249.276C277.092 244.854 277.063 240.361 276.371 235.948C276.108 234.206 275.806 232.795 275.55 231.785C275.294 230.775 275.101 230.255 275.101 230.255C275.101 230.255 274.788 230.584 274.246 231.192C273.703 231.801 272.864 232.665 271.941 233.779C270.016 235.984 267.421 239.029 264.83 242.616C262.038 246.313 259.836 250.433 258.306 254.826C256.641 259.551 256.761 264.736 258.643 269.377Z" fill="#FFAD00"/>
23
+ <path d="M328.758 242.148C329.3 241.486 329.843 240.812 330.35 240.126L331.104 239.101L331.709 238.267C332.462 237.184 333.215 236.097 333.879 235.041C335.251 232.944 336.425 230.922 337.401 229.182C338.378 227.443 339.092 225.956 339.593 224.916C339.863 224.37 340.1 223.809 340.305 223.235C340.305 223.235 337.898 223.948 334.15 225.123C329.617 226.572 325.178 228.311 320.86 230.329C319.663 230.911 318.491 231.504 317.328 232.159C316.084 232.876 314.854 233.601 313.688 234.333C312.523 235.065 311.342 235.773 310.242 236.538C309.142 237.304 308.061 238.011 307.089 238.834C303.009 241.75 300.107 246.068 298.918 250.99C301.014 252.578 303.467 253.609 306.055 253.987C308.642 254.366 311.282 254.082 313.734 253.16C319.647 250.97 324.847 247.158 328.758 242.148Z" fill="#FFAD00"/>
24
+ <path d="M297.901 220.003C296.649 215.625 294.97 211.385 292.888 207.346C292.055 205.739 291.321 204.46 290.729 203.553C290.137 202.647 289.807 202.153 289.807 202.153L289.294 203.523C288.971 204.383 288.394 205.666 287.83 207.212C287.265 208.757 286.647 210.588 286.093 212.623C285.515 214.593 285.074 216.603 284.774 218.636C284.131 222.676 283.865 226.769 283.982 230.861C284.1 235.77 285.8 240.505 288.821 244.338C291.128 243.766 293.241 242.578 294.942 240.895C296.643 239.212 297.87 237.098 298.494 234.77C298.849 233.601 299.101 232.402 299.247 231.187C299.357 229.952 299.381 228.71 299.318 227.472C299.215 226.237 299.044 225.009 298.806 223.793C298.539 222.517 298.233 221.236 297.901 220.003Z" fill="#FFAD00"/>
25
+ <path d="M352.293 181.581C352.569 180.432 352.671 179.751 352.671 179.751C352.671 179.751 350.464 180.942 346.957 182.858C342.761 185.177 338.703 187.745 334.804 190.547C330.399 193.36 326.49 196.905 323.239 201.034C322.549 202.044 321.842 203.038 321.262 204.097C320.681 205.125 320.214 206.216 319.871 207.349C319.147 209.728 318.998 212.249 319.437 214.699C321.869 215.396 324.423 215.536 326.914 215.109C329.406 214.682 331.773 213.698 333.845 212.229C334.953 211.505 336.013 210.706 337.015 209.836C338.048 208.952 339.012 207.987 339.897 206.95C341.677 204.79 343.296 202.499 344.741 200.095C347.33 195.759 349.392 191.119 350.88 186.278C351.499 184.349 351.996 182.71 352.293 181.581Z" fill="#FFAD00"/>
26
+ <path d="M306.904 210.395C308.873 209.011 310.461 207.137 311.515 204.953C312.024 203.908 312.422 202.811 312.703 201.681C313.004 200.525 313.162 199.335 313.173 198.14C313.082 193.069 311.89 188.082 309.682 183.534C307.657 179.508 305.223 175.709 302.418 172.2C301.288 170.815 300.355 169.73 299.597 168.969C298.84 168.208 298.425 167.798 298.425 167.798C298.425 167.798 298.323 168.303 298.176 169.196C298.028 170.089 297.7 171.366 297.423 172.945C296.831 176.911 296.454 180.908 296.292 184.916C296.195 187.273 296.298 189.633 296.598 191.972C296.689 192.57 296.776 193.163 296.848 193.76C296.919 194.358 297.025 194.909 297.114 195.513C297.325 196.68 297.616 197.831 297.983 198.958C299.413 203.787 302.604 207.878 306.904 210.395Z" fill="#FFAD00"/>
27
+ <path d="M340.615 148.559C339.714 149.538 338.855 150.565 338.024 151.621C337.192 152.678 336.37 153.714 335.526 154.772C333.964 156.8 332.623 158.995 331.528 161.317C331.034 162.408 330.623 163.537 330.3 164.693C329.921 165.817 329.669 166.98 329.547 168.161C329.278 170.629 329.602 173.125 330.489 175.438C333.019 175.662 335.566 175.302 337.94 174.386C340.314 173.469 342.454 172.02 344.2 170.146C345.142 169.2 346.023 168.192 346.836 167.129C347.635 166.008 348.359 164.835 349.007 163.617C350.348 161.099 351.493 158.478 352.431 155.778C352.917 154.451 353.309 153.09 353.603 151.705C353.92 150.365 354.191 149.026 354.432 147.747C354.901 145.416 355.246 143.06 355.465 140.691C355.706 136.541 355.634 133.802 355.634 133.802C355.634 133.802 353.633 135.514 350.823 138.213C348.108 140.914 344.163 144.578 340.615 148.559Z" fill="#FFAD00"/>
28
+ <path d="M321.005 166.307C321.31 165.19 321.494 164.042 321.554 162.885C321.557 161.695 321.439 160.509 321.205 159.343C320.725 156.924 319.935 154.579 318.854 152.369C318.583 151.802 318.29 151.251 318.006 150.704C317.722 150.157 317.324 149.617 316.973 149.081C316.261 148.025 315.467 146.984 314.714 146.018C313.223 144.16 311.61 142.406 309.887 140.768C309.119 140.01 308.31 139.295 307.466 138.625C306.661 137.985 305.884 137.388 305.176 136.872C302.29 134.775 300.28 133.626 300.28 133.626C300.285 135.312 300.379 136.996 300.562 138.671C300.675 139.49 300.742 140.314 300.762 141.141C300.838 142.023 300.916 142.956 301.033 143.935C301.25 145.886 301.684 147.996 302.097 150.17C302.467 152.42 303.025 154.633 303.766 156.786C304.15 157.888 304.59 158.97 305.083 160.027C305.515 161.096 306.018 162.134 306.589 163.134C308.954 167.524 312.851 170.856 317.513 172.472C319.18 170.756 320.382 168.633 321.005 166.307Z" fill="#FFAD00"/>
29
+ <path d="M330.728 120.973C329.82 124.451 330.019 128.131 331.297 131.487C331.71 132.673 332.256 133.808 332.924 134.867C335.452 134.518 337.864 133.575 339.97 132.114C342.077 130.652 343.818 128.711 345.057 126.446C346.423 124.066 347.493 121.524 348.241 118.876C348.924 116.095 349.365 113.258 349.56 110.398C349.669 108.971 349.756 107.531 349.777 106.131C349.799 104.731 349.66 103.395 349.56 102.085C349.367 99.4674 349.094 97.0286 348.807 94.9735C347.978 90.9008 347.21 88.2834 347.21 88.2834C347.21 88.2834 345.735 90.4378 343.677 93.796C342.675 95.4454 341.496 97.4101 340.192 99.5799C338.888 101.75 337.616 104.043 336.399 106.415C335.268 108.781 333.977 111.249 332.974 113.692C331.974 116.03 331.221 118.469 330.728 120.969V120.973Z" fill="#FFAD00"/>
30
+ <path d="M320.385 120.157C319.329 117.944 317.967 115.896 316.34 114.075C315.52 113.138 314.656 112.245 313.764 111.396C312.83 110.561 311.853 109.776 310.837 109.046C307.286 106.453 303.414 104.348 299.322 102.783C297.511 102.079 295.664 101.477 293.788 100.98C294.215 102.576 294.733 104.146 295.34 105.681C295.804 107.108 296.338 108.792 297.076 110.561C297.419 111.443 297.829 112.375 298.274 113.312C298.719 114.25 299.072 115.227 299.563 116.199C300.498 118.225 301.603 120.165 302.866 121.998C304.034 123.949 305.432 125.748 307.028 127.356C310.424 130.908 314.939 133.135 319.786 133.65C320.434 132.607 320.953 131.487 321.331 130.316C321.649 129.205 321.809 128.054 321.807 126.898C321.776 124.577 321.293 122.286 320.385 120.157Z" fill="#FFAD00"/>
31
+ <path d="M327.826 47.5647C327.826 47.5647 326.934 49.9616 325.656 53.7388C324.378 57.516 322.954 62.4267 321.626 67.6901C320.975 70.3075 320.541 72.9116 320.12 75.5445C319.715 78.0506 319.588 80.595 319.742 83.1298C319.866 84.3315 319.959 85.5377 320.176 86.6821C320.391 87.8287 320.733 88.9472 321.194 90.0161C321.655 91.1017 322.237 92.1294 322.93 93.0789C323.632 94.105 324.445 95.0487 325.352 95.8925C327.742 94.8945 329.861 93.3275 331.53 91.3237C333.129 89.3716 334.299 87.0942 334.959 84.6446C335.338 83.3578 335.629 82.0455 335.827 80.7175C336.032 79.3441 336.131 77.9566 336.124 76.5676C336.086 73.721 335.834 70.8815 335.371 68.0738C334.418 63.0859 332.889 58.2298 330.814 53.6065C330 51.7455 329.254 50.2152 328.727 49.159C328.463 48.6069 328.162 48.0742 327.826 47.5647Z" fill="#FFAD00"/>
32
+ <path d="M311.613 85.6966C311.111 84.6509 310.478 83.6755 309.73 82.7948C308.16 80.9513 306.353 79.3308 304.359 77.9768C302.28 76.6168 300.071 75.4754 297.766 74.57C296.635 74.1114 295.487 73.688 294.376 73.3374C293.265 72.9868 292.115 72.698 290.986 72.4554C289.031 71.99 287.052 71.6388 285.057 71.4036C283.332 71.1831 281.913 71.0596 280.88 71.0199C279.847 70.9802 279.263 70.978 279.263 70.978C279.263 70.978 279.498 71.4058 279.971 72.1533C280.444 72.9008 281.01 73.9835 281.854 75.2404C282.265 75.8798 282.722 76.5502 283.232 77.2646L284.035 78.3473C284.276 78.7309 284.547 79.1124 284.827 79.4961C286 81.1882 287.278 82.8026 288.653 84.3295C290.038 86.0522 291.566 87.6502 293.221 89.1056C293.655 89.4893 294.107 89.8487 294.523 90.2082C294.94 90.5676 295.379 90.9248 295.826 91.2644C296.719 91.9551 297.658 92.5821 298.636 93.1408C300.642 94.3179 302.815 95.1753 305.077 95.6833C307.528 96.2385 310.063 96.2999 312.538 95.8641C313.319 93.6078 313.403 91.1626 312.779 88.8565C312.502 87.7625 312.109 86.7023 311.607 85.6944L311.613 85.6966Z" fill="#FFAD00"/>
33
+ <path d="M308.191 59.1701C310.206 57.6209 311.854 55.6316 313.012 53.349C314.17 51.0664 314.809 48.5487 314.881 45.9818C314.986 43.2824 314.746 40.5807 314.165 37.9444C313.543 35.2188 312.68 32.5554 311.589 29.9864C310.526 27.5312 309.311 25.1472 307.95 22.8487C306.691 20.6635 305.313 18.7716 304.182 17.1377C303.263 15.8268 302.269 14.5708 301.207 13.3759C300.446 12.4939 300.02 12.022 300.02 12.022C300.02 12.022 299.601 14.6085 299.2 18.4475C298.983 20.3945 298.748 22.6833 298.571 25.1221C298.477 26.3437 298.401 27.6072 298.354 28.8883C298.306 30.1694 298.206 31.5167 298.191 32.8574C297.96 38.0391 298.488 43.2268 299.758 48.2508C300.356 50.5207 301.379 52.6522 302.772 54.5285C304.178 56.5019 306.039 58.0955 308.191 59.1701Z" fill="#FFAD00"/>
34
+ <path d="M291.249 49.9155C287.228 47.0843 282.593 45.2837 277.738 44.6675C275.398 44.3049 273.035 44.1207 270.668 44.1162C268.435 44.1162 266.393 44.2044 264.642 44.3698C261.104 44.7535 258.852 45.232 258.852 45.232C258.852 45.232 259.169 45.6157 259.774 46.2573C260.379 46.899 261.31 47.7876 262.35 48.8747C263.389 49.9618 264.78 51.1701 266.237 52.4447C267.777 53.8395 269.39 55.1504 271.067 56.3718C272.85 57.7201 274.731 58.9283 276.694 59.9859C278.658 61.1376 280.754 62.0375 282.936 62.665C287.58 64.1781 292.61 63.9058 297.07 61.8999C297.204 59.5306 296.725 57.167 295.681 55.0444C294.557 53.0499 293.05 51.3055 291.249 49.9155Z" fill="#FFAD00"/>
35
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_2954_12113)">
3
+ <path d="M10.3624 3.96275C10.9001 3.4297 11.7669 3.4297 12.3046 3.96275L12.7541 4.40839C13.0407 4.6925 13.4373 4.83687 13.8395 4.80343L14.4703 4.75099C15.2248 4.68826 15.8888 5.24546 15.9581 5.99941L16.016 6.62972C16.0529 7.03158 16.2639 7.39712 16.5935 7.63001L17.1104 7.9953C17.7287 8.43224 17.8792 9.28592 17.4477 9.90799L17.0868 10.428C16.8568 10.7596 16.7835 11.1753 16.8863 11.5655L17.0475 12.1776C17.2403 12.9098 16.8068 13.6605 16.0764 13.8596L15.4657 14.0261C15.0763 14.1322 14.753 14.4035 14.5809 14.7685L14.3109 15.341C13.988 16.0258 13.1734 16.3223 12.4858 16.0053L11.911 15.7403C11.5445 15.5713 11.1225 15.5713 10.756 15.7403L10.1812 16.0053C9.49361 16.3223 8.67903 16.0258 8.3561 15.341L8.08613 14.7685C7.914 14.4035 7.59066 14.1322 7.20131 14.0261L6.59064 13.8596C5.86016 13.6605 5.42674 12.9098 5.61954 12.1776L5.78072 11.5655C5.88348 11.1753 5.81018 10.7596 5.58015 10.428L5.21934 9.90799C4.78775 9.28592 4.93828 8.43224 5.5566 7.9953L6.07351 7.63001C6.40308 7.39712 6.61413 7.03158 6.65103 6.62972L6.70892 5.99941C6.77817 5.24546 7.44221 4.68826 8.19673 4.75099L8.82752 4.80343C9.22968 4.83687 9.62632 4.6925 9.9129 4.40838L10.3624 3.96275Z" fill="url(#paint0_linear_2954_12113)"/>
4
+ <path d="M10.6089 4.21094C11.0101 3.81344 11.6569 3.81344 12.0581 4.21094L12.5073 4.65723C12.8666 5.01344 13.3644 5.19426 13.8687 5.15234L14.4995 5.09961C15.0624 5.05295 15.5581 5.46877 15.6099 6.03125L15.6675 6.66211C15.7138 7.16572 15.9781 7.6241 16.3911 7.91602L16.9087 8.28125C17.3699 8.60734 17.4816 9.24388 17.1597 9.70801L16.7993 10.2285C16.511 10.6441 16.4187 11.1652 16.5474 11.6543L16.7095 12.2666C16.8533 12.813 16.529 13.3729 15.9839 13.5215L15.3735 13.6885C14.8855 13.8216 14.4799 14.1616 14.2642 14.6191L13.9946 15.1914C13.7536 15.7024 13.1454 15.9241 12.6323 15.6875L12.0571 15.4229C11.5978 15.2111 11.0692 15.2111 10.6099 15.4229L10.0347 15.6875C9.52157 15.9241 8.91335 15.7024 8.67236 15.1914L8.40283 14.6191C8.18704 14.1616 7.78154 13.8216 7.29346 13.6885L6.68311 13.5215C6.13799 13.3729 5.81364 12.813 5.95752 12.2666L6.11963 11.6543C6.24829 11.1652 6.156 10.6441 5.86768 10.2285L5.50732 9.70801C5.18541 9.24388 5.29712 8.60734 5.7583 8.28125L6.27588 7.91602C6.68887 7.6241 6.95315 7.16572 6.99951 6.66211L7.05713 6.03125C7.10886 5.46877 7.60457 5.05295 8.16748 5.09961L8.79834 5.15234C9.30255 5.19426 9.80036 5.01344 10.1597 4.65723L10.6089 4.21094Z" stroke="#8C421D" stroke-width="0.7"/>
5
+ </g>
6
+ <defs>
7
+ <filter id="filter0_d_2954_12113" x="0.973145" y="0.562988" width="20.7207" height="20.5693" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
8
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
9
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
10
+ <feOffset dy="1"/>
11
+ <feGaussianBlur stdDeviation="2"/>
12
+ <feComposite in2="hardAlpha" operator="out"/>
13
+ <feColorMatrix type="matrix" values="0 0 0 0 0.122559 0 0 0 0 0.0958559 0 0 0 0 0 0 0 0 0.3 0"/>
14
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2954_12113"/>
15
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2954_12113" result="shape"/>
16
+ </filter>
17
+ <linearGradient id="paint0_linear_2954_12113" x1="6.5735" y1="15.32" x2="16.1168" y2="5.50833" gradientUnits="userSpaceOnUse">
18
+ <stop stop-color="#8C421D"/>
19
+ <stop offset="0.325272" stop-color="#FBE67B"/>
20
+ <stop offset="0.535488" stop-color="#FCFBE7"/>
21
+ <stop offset="0.769917" stop-color="#F7D14E"/>
22
+ <stop offset="1" stop-color="#D4A041"/>
23
+ </linearGradient>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="320" height="320" viewBox="0 0 320 320" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="160" cy="160" r="152" stroke="white" stroke-opacity="0.25" stroke-width="16"/>
3
+ <circle cx="160" cy="160" r="152" fill="white" fill-opacity="0.85"/>
4
+ <circle cx="160" cy="160" r="151" stroke="white" stroke-opacity="0.25" stroke-width="2"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M143.781 36.7763C143.781 38.9046 145.119 46.7215 146.467 50.2895C147.799 53.8293 158.384 71.3414 158.528 71.5786C158.604 71.6179 168.941 76.9829 172.944 80.4409C176.684 83.6782 179.927 82.9541 184.322 81.9728C184.637 81.9025 184.958 81.8308 185.285 81.7592C195.354 79.6101 269.666 122.994 303.84 162.472C304.948 163.748 306.039 164.95 307.124 166.073C303.771 223.231 268.409 271.746 218.708 294.039C217.975 287.379 217.476 281.646 217.475 278.244C217.475 269.967 212.422 260.996 206.863 251.129C204.328 246.627 201.687 241.939 199.372 237.045C191.995 221.415 172.576 180.259 171.272 177.389C169.889 174.566 161.221 167.455 147.138 173.837C138.174 177.902 128.404 177.377 121.446 177.003C117.479 176.79 114.427 176.625 112.959 177.389C108.936 179.51 94.2412 184.482 87.5193 185.214C83.6349 185.621 82.2241 188.649 80.8128 191.677C79.7878 193.877 78.7625 196.077 76.7893 197.274C72.1057 200.133 58.6985 192.282 58.6985 192.282C58.5453 192.201 51.997 188.749 50.6785 185.91C50.0702 184.604 49.7412 183.058 49.3009 180.988C48.7816 178.546 48.1075 175.377 46.6379 171.017C42.7269 159.124 49.8018 157.81 50.0193 157.772C50.0193 157.772 61.3868 147.336 65.4123 143.759C69.4288 140.225 86.4204 120.178 86.8235 112.777C87.3593 103.481 93.8145 97.1417 98.9206 92.1273C100.449 90.626 101.857 89.2435 102.949 87.936C103.784 86.901 105.009 85.8685 106.315 84.7679C108.613 82.8304 111.161 80.6821 112.275 77.9384C114.061 73.7166 112.275 68.0507 112.275 68.0507C105.005 62.421 112.15 39.314 112.275 38.9125H114.973C114.973 39.1021 115.015 45.3457 117.634 48.8735C118.31 49.7594 119.148 51.1738 120.079 52.7433C122.881 57.4702 126.517 63.604 129.048 60.9462C132.404 57.3536 138.41 61.642 138.41 61.642C133.102 53.9068 140.947 34.9394 141.072 34.6401H143.781V36.7763Z" fill="#002710" fill-opacity="0.25"/>
6
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg width="328" height="328" viewBox="0 0 328 328" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_2700_12067)">
3
+ <mask id="path-1-inside-1_2700_12067" fill="white">
4
+ <rect x="4" width="320" height="320" rx="6"/>
5
+ </mask>
6
+ <rect x="4" width="320" height="320" rx="6" fill="white" fill-opacity="0.85" shape-rendering="crispEdges"/>
7
+ <rect x="4" width="320" height="320" rx="6" stroke="white" stroke-width="16" shape-rendering="crispEdges" mask="url(#path-1-inside-1_2700_12067)"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M137.63 32.3008C137.63 34.5931 139.067 43.0123 140.516 46.8553C141.947 50.6678 153.319 69.5294 153.473 69.7849C153.555 69.8272 164.661 75.6057 168.961 79.3301C172.979 82.8169 176.464 82.0369 181.185 80.9801C181.524 80.9043 181.869 80.8272 182.22 80.75C193.038 78.4352 272.874 125.162 309.59 167.683C310.78 169.057 321 176.886 321 176.886V316H215.117C215.117 316 216.804 296.039 216.804 292.375C216.804 283.46 211.374 273.798 205.403 263.171C202.678 258.322 199.841 253.273 197.355 248.002C189.429 231.167 168.566 186.84 167.165 183.749C165.679 180.708 156.367 173.049 141.237 179.923C131.606 184.302 121.109 183.736 113.634 183.333C109.372 183.103 106.093 182.927 104.516 183.749C100.194 186.033 84.4067 191.388 77.185 192.177C73.0118 192.615 71.496 195.876 69.9798 199.138C68.8786 201.508 67.7771 203.877 65.6572 205.167C60.6254 208.246 46.2213 199.789 46.2213 199.789C46.0567 199.703 39.0215 195.984 37.6049 192.926C36.9514 191.52 36.598 189.855 36.1249 187.625C35.5671 184.996 34.8429 181.582 33.264 176.886C29.0621 164.077 36.6631 162.661 36.8967 162.621C36.8967 162.621 49.1095 151.38 53.4343 147.527C57.7494 143.722 76.0044 122.129 76.4374 114.158C77.0132 104.146 83.9483 97.3178 89.4341 91.917C91.0764 90.3001 92.5889 88.8111 93.7619 87.4028C94.6595 86.288 95.9753 85.1759 97.3779 83.9906C99.8471 81.9037 102.585 79.5899 103.782 76.6348C105.7 72.0876 103.782 65.9852 103.782 65.9852C95.9712 59.9216 103.647 35.034 103.782 34.6016H106.68C106.68 34.8058 106.725 41.5305 109.539 45.3302C110.265 46.2844 111.165 47.8077 112.165 49.4982C115.176 54.5893 119.083 61.1958 121.801 58.3332C125.407 54.4638 131.86 59.0826 131.86 59.0826C126.157 50.7514 134.585 30.3223 134.719 30H137.63V32.3008Z" fill="#002710" fill-opacity="0.25"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_d_2700_12067" x="0" y="0" width="328" height="328" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset dy="4"/>
15
+ <feGaussianBlur stdDeviation="2"/>
16
+ <feComposite in2="hardAlpha" operator="out"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
18
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2700_12067"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2700_12067" result="shape"/>
20
+ </filter>
21
+ </defs>
22
+ </svg>
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './components/icons';
2
2
  export * from './components/logos';
3
3
  export * from './components/iconsSEQM';
4
+ export * from './components/images';