@designcrowd/fe-shared-lib 1.2.20 → 1.2.22

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": "@designcrowd/fe-shared-lib",
3
- "version": "1.2.20",
3
+ "version": "1.2.22",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -699,6 +699,9 @@ video {
699
699
  .theme-brandCrowd .tw-mb-4 {
700
700
  margin-bottom: 1rem;
701
701
  }
702
+ .theme-brandCrowd .tw-mb-5 {
703
+ margin-bottom: 1.25rem;
704
+ }
702
705
  .theme-brandCrowd .tw-mb-6 {
703
706
  margin-bottom: 1.5rem;
704
707
  }
@@ -756,6 +759,9 @@ video {
756
759
  .theme-brandCrowd .tw-mt-4 {
757
760
  margin-top: 1rem;
758
761
  }
762
+ .theme-brandCrowd .tw-mt-5 {
763
+ margin-top: 1.25rem;
764
+ }
759
765
  .theme-brandCrowd .tw-mt-8 {
760
766
  margin-top: 2rem;
761
767
  }
@@ -923,6 +929,9 @@ video {
923
929
  .theme-brandCrowd .tw-max-w-xl {
924
930
  max-width: 36rem;
925
931
  }
932
+ .theme-brandCrowd .tw-flex-1 {
933
+ flex: 1 1 0%;
934
+ }
926
935
  .theme-brandCrowd .tw-flex-auto {
927
936
  flex: 1 1 auto;
928
937
  }
@@ -1606,6 +1615,9 @@ video {
1606
1615
  .theme-brandCrowd .tw-p-4 {
1607
1616
  padding: 1rem;
1608
1617
  }
1618
+ .theme-brandCrowd .tw-p-5 {
1619
+ padding: 1.25rem;
1620
+ }
1609
1621
  .theme-brandCrowd .tw-p-6 {
1610
1622
  padding: 1.5rem;
1611
1623
  }
@@ -1741,6 +1753,9 @@ video {
1741
1753
  .theme-brandCrowd .tw-pt-2 {
1742
1754
  padding-top: 0.5rem;
1743
1755
  }
1756
+ .theme-brandCrowd .tw-pt-4 {
1757
+ padding-top: 1rem;
1758
+ }
1744
1759
  .theme-brandCrowd .tw-pt-6 {
1745
1760
  padding-top: 1.5rem;
1746
1761
  }
@@ -1966,6 +1981,11 @@ video {
1966
1981
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
1967
1982
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1968
1983
  }
1984
+ .theme-brandCrowd .tw-transition-all {
1985
+ transition-property: all;
1986
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1987
+ transition-duration: 150ms;
1988
+ }
1969
1989
  .theme-brandCrowd .tw-transition-colors {
1970
1990
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1971
1991
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -2141,10 +2161,20 @@ video {
2141
2161
  outline: 2px solid transparent;
2142
2162
  outline-offset: 2px;
2143
2163
  }
2164
+ .theme-brandCrowd .tw-group:hover .group-hover\:tw-scale-105 {
2165
+ --tw-scale-x: 1.05;
2166
+ --tw-scale-y: 1.05;
2167
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2168
+ }
2144
2169
  .theme-brandCrowd .tw-group:hover .group-hover\:tw-text-info-500 {
2145
2170
  --tw-text-opacity: 1;
2146
2171
  color: rgb(0 151 215 / var(--tw-text-opacity));
2147
2172
  }
2173
+ .theme-brandCrowd .tw-group:hover .group-hover\:tw-shadow {
2174
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
2175
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
2176
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2177
+ }
2148
2178
  @media (min-width: 640px) {
2149
2179
  .theme-brandCrowd .sm\:tw-absolute {
2150
2180
  position: absolute;
@@ -699,6 +699,9 @@ video {
699
699
  .theme-brandPage .tw-mb-4 {
700
700
  margin-bottom: 1rem;
701
701
  }
702
+ .theme-brandPage .tw-mb-5 {
703
+ margin-bottom: 1.25rem;
704
+ }
702
705
  .theme-brandPage .tw-mb-6 {
703
706
  margin-bottom: 1.5rem;
704
707
  }
@@ -756,6 +759,9 @@ video {
756
759
  .theme-brandPage .tw-mt-4 {
757
760
  margin-top: 1rem;
758
761
  }
762
+ .theme-brandPage .tw-mt-5 {
763
+ margin-top: 1.25rem;
764
+ }
759
765
  .theme-brandPage .tw-mt-8 {
760
766
  margin-top: 2rem;
761
767
  }
@@ -923,6 +929,9 @@ video {
923
929
  .theme-brandPage .tw-max-w-xl {
924
930
  max-width: 36rem;
925
931
  }
932
+ .theme-brandPage .tw-flex-1 {
933
+ flex: 1 1 0%;
934
+ }
926
935
  .theme-brandPage .tw-flex-auto {
927
936
  flex: 1 1 auto;
928
937
  }
@@ -1454,6 +1463,9 @@ video {
1454
1463
  .theme-brandPage .tw-p-4 {
1455
1464
  padding: 1rem;
1456
1465
  }
1466
+ .theme-brandPage .tw-p-5 {
1467
+ padding: 1.25rem;
1468
+ }
1457
1469
  .theme-brandPage .tw-p-6 {
1458
1470
  padding: 1.5rem;
1459
1471
  }
@@ -1589,6 +1601,9 @@ video {
1589
1601
  .theme-brandPage .tw-pt-2 {
1590
1602
  padding-top: 0.5rem;
1591
1603
  }
1604
+ .theme-brandPage .tw-pt-4 {
1605
+ padding-top: 1rem;
1606
+ }
1592
1607
  .theme-brandPage .tw-pt-6 {
1593
1608
  padding-top: 1.5rem;
1594
1609
  }
@@ -1754,6 +1769,11 @@ video {
1754
1769
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
1755
1770
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1756
1771
  }
1772
+ .theme-brandPage .tw-transition-all {
1773
+ transition-property: all;
1774
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1775
+ transition-duration: 150ms;
1776
+ }
1757
1777
  .theme-brandPage .tw-transition-colors {
1758
1778
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1759
1779
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -1829,6 +1849,16 @@ video {
1829
1849
  outline: 2px solid transparent;
1830
1850
  outline-offset: 2px;
1831
1851
  }
1852
+ .theme-brandPage .tw-group:hover .group-hover\:tw-scale-105 {
1853
+ --tw-scale-x: 1.05;
1854
+ --tw-scale-y: 1.05;
1855
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1856
+ }
1857
+ .theme-brandPage .tw-group:hover .group-hover\:tw-shadow {
1858
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
1859
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
1860
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1861
+ }
1832
1862
  @media (min-width: 640px) {
1833
1863
  .theme-brandPage .sm\:tw-absolute {
1834
1864
  position: absolute;
@@ -699,6 +699,9 @@ video {
699
699
  .theme-crazyDomains .tw-mb-4 {
700
700
  margin-bottom: 1rem;
701
701
  }
702
+ .theme-crazyDomains .tw-mb-5 {
703
+ margin-bottom: 1.25rem;
704
+ }
702
705
  .theme-crazyDomains .tw-mb-6 {
703
706
  margin-bottom: 1.5rem;
704
707
  }
@@ -756,6 +759,9 @@ video {
756
759
  .theme-crazyDomains .tw-mt-4 {
757
760
  margin-top: 1rem;
758
761
  }
762
+ .theme-crazyDomains .tw-mt-5 {
763
+ margin-top: 1.25rem;
764
+ }
759
765
  .theme-crazyDomains .tw-mt-8 {
760
766
  margin-top: 2rem;
761
767
  }
@@ -923,6 +929,9 @@ video {
923
929
  .theme-crazyDomains .tw-max-w-xl {
924
930
  max-width: 36rem;
925
931
  }
932
+ .theme-crazyDomains .tw-flex-1 {
933
+ flex: 1 1 0%;
934
+ }
926
935
  .theme-crazyDomains .tw-flex-auto {
927
936
  flex: 1 1 auto;
928
937
  }
@@ -1606,6 +1615,9 @@ video {
1606
1615
  .theme-crazyDomains .tw-p-4 {
1607
1616
  padding: 1rem;
1608
1617
  }
1618
+ .theme-crazyDomains .tw-p-5 {
1619
+ padding: 1.25rem;
1620
+ }
1609
1621
  .theme-crazyDomains .tw-p-6 {
1610
1622
  padding: 1.5rem;
1611
1623
  }
@@ -1741,6 +1753,9 @@ video {
1741
1753
  .theme-crazyDomains .tw-pt-2 {
1742
1754
  padding-top: 0.5rem;
1743
1755
  }
1756
+ .theme-crazyDomains .tw-pt-4 {
1757
+ padding-top: 1rem;
1758
+ }
1744
1759
  .theme-crazyDomains .tw-pt-6 {
1745
1760
  padding-top: 1.5rem;
1746
1761
  }
@@ -1966,6 +1981,11 @@ video {
1966
1981
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
1967
1982
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1968
1983
  }
1984
+ .theme-crazyDomains .tw-transition-all {
1985
+ transition-property: all;
1986
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1987
+ transition-duration: 150ms;
1988
+ }
1969
1989
  .theme-crazyDomains .tw-transition-colors {
1970
1990
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1971
1991
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -2141,10 +2161,20 @@ video {
2141
2161
  outline: 2px solid transparent;
2142
2162
  outline-offset: 2px;
2143
2163
  }
2164
+ .theme-crazyDomains .tw-group:hover .group-hover\:tw-scale-105 {
2165
+ --tw-scale-x: 1.05;
2166
+ --tw-scale-y: 1.05;
2167
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2168
+ }
2144
2169
  .theme-crazyDomains .tw-group:hover .group-hover\:tw-text-info-500 {
2145
2170
  --tw-text-opacity: 1;
2146
2171
  color: rgb(0 161 239 / var(--tw-text-opacity));
2147
2172
  }
2173
+ .theme-crazyDomains .tw-group:hover .group-hover\:tw-shadow {
2174
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
2175
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
2176
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2177
+ }
2148
2178
  @media (min-width: 640px) {
2149
2179
  .theme-crazyDomains .sm\:tw-absolute {
2150
2180
  position: absolute;
@@ -699,6 +699,9 @@ video {
699
699
  .theme-designCom .tw-mb-4 {
700
700
  margin-bottom: 1rem;
701
701
  }
702
+ .theme-designCom .tw-mb-5 {
703
+ margin-bottom: 1.25rem;
704
+ }
702
705
  .theme-designCom .tw-mb-6 {
703
706
  margin-bottom: 1.5rem;
704
707
  }
@@ -756,6 +759,9 @@ video {
756
759
  .theme-designCom .tw-mt-4 {
757
760
  margin-top: 1rem;
758
761
  }
762
+ .theme-designCom .tw-mt-5 {
763
+ margin-top: 1.25rem;
764
+ }
759
765
  .theme-designCom .tw-mt-8 {
760
766
  margin-top: 2rem;
761
767
  }
@@ -923,6 +929,9 @@ video {
923
929
  .theme-designCom .tw-max-w-xl {
924
930
  max-width: 36rem;
925
931
  }
932
+ .theme-designCom .tw-flex-1 {
933
+ flex: 1 1 0%;
934
+ }
926
935
  .theme-designCom .tw-flex-auto {
927
936
  flex: 1 1 auto;
928
937
  }
@@ -1606,6 +1615,9 @@ video {
1606
1615
  .theme-designCom .tw-p-4 {
1607
1616
  padding: 1rem;
1608
1617
  }
1618
+ .theme-designCom .tw-p-5 {
1619
+ padding: 1.25rem;
1620
+ }
1609
1621
  .theme-designCom .tw-p-6 {
1610
1622
  padding: 1.5rem;
1611
1623
  }
@@ -1741,6 +1753,9 @@ video {
1741
1753
  .theme-designCom .tw-pt-2 {
1742
1754
  padding-top: 0.5rem;
1743
1755
  }
1756
+ .theme-designCom .tw-pt-4 {
1757
+ padding-top: 1rem;
1758
+ }
1744
1759
  .theme-designCom .tw-pt-6 {
1745
1760
  padding-top: 1.5rem;
1746
1761
  }
@@ -1966,6 +1981,11 @@ video {
1966
1981
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
1967
1982
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1968
1983
  }
1984
+ .theme-designCom .tw-transition-all {
1985
+ transition-property: all;
1986
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1987
+ transition-duration: 150ms;
1988
+ }
1969
1989
  .theme-designCom .tw-transition-colors {
1970
1990
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1971
1991
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -2141,10 +2161,20 @@ video {
2141
2161
  outline: 2px solid transparent;
2142
2162
  outline-offset: 2px;
2143
2163
  }
2164
+ .theme-designCom .tw-group:hover .group-hover\:tw-scale-105 {
2165
+ --tw-scale-x: 1.05;
2166
+ --tw-scale-y: 1.05;
2167
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2168
+ }
2144
2169
  .theme-designCom .tw-group:hover .group-hover\:tw-text-info-500 {
2145
2170
  --tw-text-opacity: 1;
2146
2171
  color: rgb(63 89 246 / var(--tw-text-opacity));
2147
2172
  }
2173
+ .theme-designCom .tw-group:hover .group-hover\:tw-shadow {
2174
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
2175
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
2176
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2177
+ }
2148
2178
  @media (min-width: 640px) {
2149
2179
  .theme-designCom .sm\:tw-absolute {
2150
2180
  position: absolute;
@@ -699,6 +699,9 @@ video {
699
699
  .theme-designCrowd .tw-mb-4 {
700
700
  margin-bottom: 1rem;
701
701
  }
702
+ .theme-designCrowd .tw-mb-5 {
703
+ margin-bottom: 1.25rem;
704
+ }
702
705
  .theme-designCrowd .tw-mb-6 {
703
706
  margin-bottom: 1.5rem;
704
707
  }
@@ -756,6 +759,9 @@ video {
756
759
  .theme-designCrowd .tw-mt-4 {
757
760
  margin-top: 1rem;
758
761
  }
762
+ .theme-designCrowd .tw-mt-5 {
763
+ margin-top: 1.25rem;
764
+ }
759
765
  .theme-designCrowd .tw-mt-8 {
760
766
  margin-top: 2rem;
761
767
  }
@@ -923,6 +929,9 @@ video {
923
929
  .theme-designCrowd .tw-max-w-xl {
924
930
  max-width: 36rem;
925
931
  }
932
+ .theme-designCrowd .tw-flex-1 {
933
+ flex: 1 1 0%;
934
+ }
926
935
  .theme-designCrowd .tw-flex-auto {
927
936
  flex: 1 1 auto;
928
937
  }
@@ -1606,6 +1615,9 @@ video {
1606
1615
  .theme-designCrowd .tw-p-4 {
1607
1616
  padding: 1rem;
1608
1617
  }
1618
+ .theme-designCrowd .tw-p-5 {
1619
+ padding: 1.25rem;
1620
+ }
1609
1621
  .theme-designCrowd .tw-p-6 {
1610
1622
  padding: 1.5rem;
1611
1623
  }
@@ -1741,6 +1753,9 @@ video {
1741
1753
  .theme-designCrowd .tw-pt-2 {
1742
1754
  padding-top: 0.5rem;
1743
1755
  }
1756
+ .theme-designCrowd .tw-pt-4 {
1757
+ padding-top: 1rem;
1758
+ }
1744
1759
  .theme-designCrowd .tw-pt-6 {
1745
1760
  padding-top: 1.5rem;
1746
1761
  }
@@ -1966,6 +1981,11 @@ video {
1966
1981
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
1967
1982
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1968
1983
  }
1984
+ .theme-designCrowd .tw-transition-all {
1985
+ transition-property: all;
1986
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1987
+ transition-duration: 150ms;
1988
+ }
1969
1989
  .theme-designCrowd .tw-transition-colors {
1970
1990
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1971
1991
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -2141,10 +2161,20 @@ video {
2141
2161
  outline: 2px solid transparent;
2142
2162
  outline-offset: 2px;
2143
2163
  }
2164
+ .theme-designCrowd .tw-group:hover .group-hover\:tw-scale-105 {
2165
+ --tw-scale-x: 1.05;
2166
+ --tw-scale-y: 1.05;
2167
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2168
+ }
2144
2169
  .theme-designCrowd .tw-group:hover .group-hover\:tw-text-info-500 {
2145
2170
  --tw-text-opacity: 1;
2146
2171
  color: rgb(17 151 235 / var(--tw-text-opacity));
2147
2172
  }
2173
+ .theme-designCrowd .tw-group:hover .group-hover\:tw-shadow {
2174
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
2175
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
2176
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2177
+ }
2148
2178
  @media (min-width: 640px) {
2149
2179
  .theme-designCrowd .sm\:tw-absolute {
2150
2180
  position: absolute;
@@ -1,5 +1,6 @@
1
1
  <template>
2
2
  <path
3
- d="M6.3723 14c-2.3529 0-4.2548-.3891-5.1105-1.0546a.3143.3143 0 0 1-.1019-.1574.3096.3096 0 0 1 .0067-.1864.3341.3341 0 0 1 .1231-.1488.3426.3426 0 0 1 .1864-.0574c1.4005-.022 2.3052-.3438 2.9957-.7329-1.332-.1609-2.1638-.7782-2.591-1.947a.2446.2446 0 0 1-.0066-.1654.2494.2494 0 0 1 .1005-.133.3486.3486 0 0 1 .3333-.0234c.3571.2297.7128.275 1.1414.275-.9005-.5266-1.7408-1.397-2.0685-2.475a.2703.2703 0 0 1 .0111-.1671.2761.2761 0 0 1 .1079-.1299.2941.2941 0 0 1 .3333.022c.2815.2242.621.367.9804.4125-.9328-.9157-1.5042-2.2687-.696-3.7578l.14-.275.238.2296c1.4762 1.4891 2.8319 2.1766 5.3038 2.6345v-.0907c-.0054-.8016.3107-1.5731.8798-2.1479.5692-.5747 1.3458-.9066 2.1621-.9239.6708 0 1.5937.4592 1.9733.6655.0238 0 .0476.0234.0476 0a17.7307 17.7307 0 0 0 1.7114-.6421.262.262 0 0 1 .2801.0467.2311.2311 0 0 1 .0705.1297.2282.2282 0 0 1-.0229.1453 3.131 3.131 0 0 1-.5882.9845l.4748-.1595a.322.322 0 0 1 .1485.0012.3186.3186 0 0 1 .1316.0676.2959.2959 0 0 1 .0713.1286.2917.2917 0 0 1 .0001.1464 2.2687 2.2687 0 0 1-.4358.8165 2.3167 2.3167 0 0 1-.7294.5805v.0687C13.9798 10.403 10.5569 14 6.3722 14Z"
3
+ d="M12.1655 1H14.5349L9.35972 6.93021L15.4483 15H10.6815L6.94786 10.1048L2.67545 15H0.305103L5.84041 8.65655L0 1H4.88841L8.2629 5.47324L12.1655 1ZM11.3352 13.5788H12.6483L4.17393 2.3469H2.76621L11.3352 13.5788Z"
4
+ fill="black"
4
5
  />
5
6
  </template>