nzk-react-components 0.4.3 → 0.4.4
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/dist/assets/icons/bear.svg +177 -0
- package/dist/assets/icons/bear.svg.js +606 -0
- package/dist/assets/icons/bear.svg.js.map +1 -0
- package/dist/assets/icons/flamingo.svg +85 -0
- package/dist/assets/icons/flamingo.svg.js +287 -0
- package/dist/assets/icons/flamingo.svg.js.map +1 -0
- package/dist/assets/icons/giraffe.svg +259 -0
- package/dist/assets/icons/giraffe.svg.js +756 -0
- package/dist/assets/icons/giraffe.svg.js.map +1 -0
- package/dist/assets/icons/penguin.svg +231 -0
- package/dist/assets/icons/penguin.svg.js +718 -0
- package/dist/assets/icons/penguin.svg.js.map +1 -0
- package/dist/components/DrawingTool/DrawingTool.d.ts +29 -0
- package/dist/components/DrawingTool/DrawingTool.js +277 -0
- package/dist/components/DrawingTool/DrawingTool.js.map +1 -0
- package/dist/components/DrawingTool/DrawingTool.stories.d.ts +6 -0
- package/dist/components/DrawingTool/DrawingTool.styles.d.ts +41 -0
- package/dist/components/DrawingTool/DrawingTool.styles.js +54 -0
- package/dist/components/DrawingTool/DrawingTool.styles.js.map +1 -0
- package/dist/components/DrawingTool/DrawingToolProvider.d.ts +56 -0
- package/dist/components/DrawingTool/DrawingToolProvider.js +182 -0
- package/dist/components/DrawingTool/DrawingToolProvider.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.d.ts +21 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js +89 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.d.ts +9 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js +18 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.js +8 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.d.ts +9 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.js +88 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.d.ts +4 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js +22 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/FileInput/index.js +8 -0
- package/dist/components/DrawingTool/components/FileInput/index.js.map +1 -0
- package/dist/components/DrawingTool/components/Header/Header.d.ts +9 -0
- package/dist/components/DrawingTool/components/Header/Header.js +38 -0
- package/dist/components/DrawingTool/components/Header/Header.js.map +1 -0
- package/dist/components/DrawingTool/components/Header/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/Header/index.js +8 -0
- package/dist/components/DrawingTool/components/Header/index.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.d.ts +8 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js +31 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.d.ts +9 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js +18 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.js +8 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.js.map +1 -0
- package/dist/components/DrawingTool/components/Placeable/index.d.ts +9 -0
- package/dist/components/DrawingTool/components/Placeable/index.js +22 -0
- package/dist/components/DrawingTool/components/Placeable/index.js.map +1 -0
- package/dist/components/DrawingTool/index.d.ts +2 -0
- package/dist/components/DrawingTool/lib/Sketch.d.ts +90 -0
- package/dist/components/DrawingTool/lib/Sketch.js +414 -0
- package/dist/components/DrawingTool/lib/Sketch.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchCut.d.ts +22 -0
- package/dist/components/DrawingTool/lib/SketchCut.js +98 -0
- package/dist/components/DrawingTool/lib/SketchCut.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.d.ts +6 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.js +20 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchLayer.d.ts +27 -0
- package/dist/components/DrawingTool/lib/SketchLayer.js +59 -0
- package/dist/components/DrawingTool/lib/SketchLayer.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchModel.d.ts +65 -0
- package/dist/components/DrawingTool/lib/SketchModel.js +137 -0
- package/dist/components/DrawingTool/lib/SketchModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.d.ts +33 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.js +48 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.d.ts +16 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.js +56 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.js.map +1 -0
- package/dist/components/DrawingTool/lib/trace.d.ts +3 -0
- package/dist/components/DrawingTool/lib/trace.js +24 -0
- package/dist/components/DrawingTool/lib/trace.js.map +1 -0
- package/dist/components/DrawingTool/lib/trimCanvas.d.ts +2 -0
- package/dist/components/DrawingTool/lib/trimCanvas.js +42 -0
- package/dist/components/DrawingTool/lib/trimCanvas.js.map +1 -0
- package/dist/components/Icon/icons.d.ts +4 -0
- package/dist/components/Icon/icons.js +8 -0
- package/dist/components/Icon/icons.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
<svg id="icon-team-florence" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="119.929" height="119.929" viewBox="0 0 119.929 119.929">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clip-path">
|
|
4
|
+
<rect id="Rectangle_1727" data-name="Rectangle 1727" width="119.929" height="119.929" fill="none"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
<clipPath id="clip-path-2">
|
|
7
|
+
<rect id="Rectangle_1724" data-name="Rectangle 1724" width="69.089" height="99.476" transform="translate(17.957 11.125)" fill="none"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
<clipPath id="clip-path-3">
|
|
10
|
+
<rect id="Rectangle_1725" data-name="Rectangle 1725" width="45.686" height="23.51" transform="translate(48.36 33.987)" fill="none"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
<clipPath id="clip-path-4">
|
|
13
|
+
<rect id="Rectangle_1726" data-name="Rectangle 1726" width="43.606" height="12.934" transform="translate(48.36 43.617)" fill="none"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
<g id="Group_1958" data-name="Group 1958">
|
|
17
|
+
<g id="Group_1967" data-name="Group 1967" clip-path="url(#clip-path)">
|
|
18
|
+
<g id="Group_1960" data-name="Group 1960" opacity="0.3">
|
|
19
|
+
<g id="Group_1959" data-name="Group 1959">
|
|
20
|
+
<g id="Group_1958-2" data-name="Group 1958" clip-path="url(#clip-path-2)">
|
|
21
|
+
<path id="Path_2640" data-name="Path 2640" d="M84.493,43.034a22.071,22.071,0,0,0-2.724-4.043,10.511,10.511,0,0,0-1.507-1.485c-4.592-1.056-8.94-1.815-12.581-2.351q-.911-.133-1.759-.25l-.832-.111c-1.357-.179-2.572-.323-3.611-.436l-.073-.008a3.07,3.07,0,0,0-.383-.856.437.437,0,0,1-.066-.129,3.047,3.047,0,0,0-.116-1.719,2.829,2.829,0,0,0-.455-.748,3.738,3.738,0,0,0-.311-1.223,1.087,1.087,0,0,0-.132-.334c.942-.824.046-1.941-.726-2.272a2.2,2.2,0,0,0-.384-.336,5.681,5.681,0,0,0-1.136-.722,2.267,2.267,0,0,0-.155-.412,2.483,2.483,0,0,0-.1-.344,5.3,5.3,0,0,0-1.912-2.518.994.994,0,0,0-.419-.195.562.562,0,0,0-.164.011c-.756-.475-3.246-1.809-7.959-2.269-.113-.011-.235-.018-.351-.028l2.45-.243,2.956-7.743a40.977,40.977,0,0,0-5.258-1.145A50.665,50.665,0,0,0,23.307,25.139c-.069.374-.136.752-.191,1.139,0,.029,0,.052-.006.08-1.156.928-2.286,1.924-3.281,2.84-.648.841-1.277,1.7-1.872,2.58l2.709-1.264a21.293,21.293,0,0,0-1.938,10.634,19.364,19.364,0,0,0,.858,4.383s.146-.555.384-1.322c.04-.128.082-.261.127-.4a14.212,14.212,0,0,1,1.6-3.628s.649,4.848,1.215,9.87c.033.3.067.592.1.887.1.887.192,1.772.278,2.627a54.1,54.1,0,0,1,.426,6.982,39.293,39.293,0,0,0,2.313-5.417,32.051,32.051,0,0,0,.953-3.333c.088-.388.167-.781.236-1.175a18.246,18.246,0,0,0,.3-3.543s1.544,2.525,3.221,6.053a51.294,51.294,0,0,1,3.489,9.339,32.568,32.568,0,0,0-2.111-13.8L35.31,52.4c.69.815,1.424,1.688,2.135,2.547.5.606.99,1.2,1.441,1.764.9,1.122,1.653,2.1,2.052,2.709,1,1.525,4.781,7.23,8.257,13.906.521,1,1.036,2.024,1.533,3.059s.977,2.079,1.429,3.125a56.675,56.675,0,0,1,2.3,6.189l1.783,5.725s-.305.837-.8,2.16c-.142.378-.3.8-.47,1.245-.341.9-.734,1.924-1.158,3.009a104.129,104.129,0,0,1-5.052,11.519,50.512,50.512,0,0,0,7.747,1.135c.171-.011.34-.022.514-.035h0a41.917,41.917,0,0,0,10.005-.341s.853-6.022.759-7.43c0,0,1.072,4.626.911,5.363l1.354-.47s.014-.167.033-.437v0c.073-1.024.24-3.607.166-5.016a33.793,33.793,0,0,0-.54-4.012s.294.75.671,1.832c.062.181.128.371.194.568a27.016,27.016,0,0,1,1.411,5.718s.03-.182.073-.48v-.009c.233-1.625.894-7.074-.074-11.008a91.779,91.779,0,0,0-4.669-12.295S66.2,79.775,64.4,76.171c-.112-.226-.228-.454-.346-.687-.59-1.161-1.246-2.4-1.954-3.675q-.213-.381-.432-.766c-.437-.768-.892-1.543-1.363-2.314-.942-1.541-1.945-3.062-2.988-4.475q-.564-.763-1.129-1.494c-.126-.163-.25-.319-.376-.479-.25-.321-.5-.639-.749-.95-.147-.182-.291-.358-.436-.536q-.344-.421-.681-.83c-.147-.176-.292-.348-.437-.52q-.336-.4-.664-.779c-.136-.159-.272-.316-.406-.47-.23-.264-.455-.519-.679-.771-.115-.13-.231-.262-.345-.388-.262-.292-.516-.572-.767-.845l-.195-.213c-.655-.711-1.261-1.35-1.806-1.912h0c-1.306-1.347-2.236-2.231-2.577-2.549l-.034-.033-.121-.112-1.445-1.76.066-.041c.1.09.193.18.3.271a15.583,15.583,0,0,0,1.8,1.3A19.5,19.5,0,0,0,50.323,52.9c.433.156.857.289,1.278.413.115.034.229.065.343.1q.507.141,1,.253c.082.019.165.04.246.058q.606.13,1.189.222c.071.012.141.02.212.031.325.048.645.088.958.12l.263.026c.739.066,1.44.091,2.1.085l.242,0c.262-.005.517-.016.765-.03l.195-.011c.289-.02.568-.045.835-.074.085-.009.165-.02.249-.031.177-.022.35-.045.517-.07.1-.016.207-.031.308-.048.134-.022.26-.045.386-.069.225-.042.434-.085.632-.13l.12-.026c.148-.035.283-.068.414-.1a11.767,11.767,0,0,0,1.357-.427c-2.112-3.848-7.086-6.007-7.086-6.007a27.6,27.6,0,0,1,14.792.516l.047.019c.421.15.841.32,1.26.5.092.039.184.082.276.122q.508.225,1.011.474c.088.043.177.086.265.131q.6.306,1.195.637l.008.005q.642.362,1.263.748c.021.012.041.026.062.039q.564.35,1.107.714l.175.118q.521.351,1.019.707l.093.066c.736.529,1.431,1.06,2.073,1.573.048.037.093.074.14.112q.388.312.75.613l.2.165c.229.192.447.379.657.56.046.04.1.083.142.123.234.2.452.4.658.581l.31.282.238.218c.129.119.253.235.365.34q.242.228.428.407c.354.343.563.555.563.555a14.775,14.775,0,0,0,0-11.309,30.008,30.008,0,0,0-1.448-3.154"/>
|
|
22
|
+
</g>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
<path id="Path_2641" data-name="Path 2641" d="M42.714,10.7s-3.659-6.389-3.8-9.767c0,0-.882,5.776,0,7.979,0,0-3.2-5.612-3.5-8.521,0,0-1.46,7.083,0,11.838l.124,1.586s-2.675-4.577-2.675-6.407a21.325,21.325,0,0,0,0,10.63c1.549,5.279,9.853-7.338,9.853-7.338" fill="#944787"/>
|
|
26
|
+
<path id="Path_2642" data-name="Path 2642" d="M35.412.4s-.253,1.239-.443,3.018c.438-.078.85-.137,1.227-.171A12.113,12.113,0,0,1,35.412.4" fill="#571e61"/>
|
|
27
|
+
<path id="Path_2643" data-name="Path 2643" d="M36.1,15.086A10.545,10.545,0,0,1,32.18,12.51a18.44,18.44,0,0,0,.681,5.532c.8,2.716,3.381.695,5.7-1.908A14.4,14.4,0,0,0,36.1,15.086" fill="#571e61"/>
|
|
28
|
+
<path id="Path_2644" data-name="Path 2644" d="M38.914.938s-.156,1.032-.272,2.385a5.26,5.26,0,0,1,.816.22,10.51,10.51,0,0,1-.544-2.6" fill="#571e61"/>
|
|
29
|
+
<path id="Path_2645" data-name="Path 2645" d="M34.116,15.054a31.218,31.218,0,0,0-4,11.224C29.2,32.684,43,20.3,43,20.3Z" fill="#6c6697"/>
|
|
30
|
+
<path id="Path_2646" data-name="Path 2646" d="M32.861,13.256l5.913,8.472L56.09,20.013l2.956-7.742s-14.359-4.505-26.185.985" fill="#fff"/>
|
|
31
|
+
<path id="Path_2647" data-name="Path 2647" d="M47.194,12.51a2.683,2.683,0,0,0-2.534,3.1,3.278,3.278,0,0,0,3.59,2.886,2.473,2.473,0,0,0,2.464-2.988C50.291,12.58,48.625,12.51,47.194,12.51Z" fill="none" stroke="#ea7cd9" stroke-miterlimit="10" stroke-width="2"/>
|
|
32
|
+
<path id="Path_2648" data-name="Path 2648" d="M62.2,22.725s-2.44-1.877-8.212-2.44-15.392.36-21.164,4.082a67.182,67.182,0,0,0-9.385,8.119l4.223-1.971a21.082,21.082,0,0,0-1.079,15.016s1.032-3.941,2.111-5.349c0,0,2.3,17.175,2.018,20.366,0,0,3.942-7.274,3.8-13.468,0,0,4.881,7.977,6.711,15.392a32.565,32.565,0,0,0-2.112-13.8s7.227,8.306,8.822,10.747S58.261,75,61.452,85.7l1.783,5.725s-6.385,17.491-8.26,18.975c0,0,9.934,1.15,19.046-1.827a41.731,41.731,0,0,0,.758-5.886s1.072,4.626.912,5.363l1.354-.471s.292-3.672.2-5.455a33.685,33.685,0,0,0-.54-4.012s2.089,5.326,2.276,8.118c0,0,1.15-6.828,0-11.5A91.633,91.633,0,0,0,74.31,82.439s-4.434-10.652-9.995-18.184a99.581,99.581,0,0,0-11.4-12.881l-1.446-1.76,12.5-7.673,4.505-7.39a4.1,4.1,0,0,0-.446-1.056c-.211-.235-.329-1.83-.634-2.558a10.439,10.439,0,0,0-.445-1.6,1.224,1.224,0,0,0,.234-1.033c-.141-.61-.774-.985-1.384-1.337a8.515,8.515,0,0,1-1.267-.962A5.2,5.2,0,0,0,62.2,22.725" fill="#d56bc4"/>
|
|
33
|
+
<path id="Path_2649" data-name="Path 2649" d="M58.6,39.2l5.77-2.572.949-3.115L61.692,22.645l-10.611-.108-5.6,2.587-.925,4.546S54.9,39.571,58.6,39.2" fill="#f39de7"/>
|
|
34
|
+
<path id="Path_2650" data-name="Path 2650" d="M61.359,23.757a14.327,14.327,0,0,0,2.141.095,3.953,3.953,0,0,0-1.3-1.127s-2.441-1.877-8.212-2.441c-5.087-.5-13.159.165-18.956,2.876.041.974.659,1.941,2.531,2.544l4.759.681,4.767-.34a28.674,28.674,0,0,1,14.266-2.288" fill="#ec84db"/>
|
|
35
|
+
<path id="Path_2651" data-name="Path 2651" d="M32.827,24.367c-.36.232-.729.49-1.1.757l6.4.58c-.071-1.806.774-2.135.774-2.135l.552,2.135c1.653-3.166,12.557-5.462,12.881-5.53-5.826-.259-14.257.805-19.51,4.193" fill="#734298"/>
|
|
36
|
+
<path id="Path_2652" data-name="Path 2652" d="M55.516,66.437c-1.478-2.323-9.01-13.093-10.066-14.5S42,46.235,40.03,39.689A54.228,54.228,0,0,1,38.13,25.7l-6.4-.581a73.634,73.634,0,0,0-8.285,7.362l4.223-1.971a21.082,21.082,0,0,0-1.079,15.016s1.032-3.942,2.111-5.349c0,0,2.3,17.175,2.018,20.366,0,0,3.942-7.274,3.8-13.468,0,0,4.881,7.977,6.711,15.392a32.565,32.565,0,0,0-2.112-13.8s7.227,8.306,8.822,10.746S58.261,75,61.452,85.7l1.783,5.725s-6.385,17.492-8.26,18.976a52.36,52.36,0,0,0,9.04.057c0-.009.013-.018.018-.027,1.2-2.042,3.168-16.823,3.449-18.865s-.844-3.308-1.689-5.349-8.8-17.457-10.277-19.78" fill="#683288"/>
|
|
37
|
+
<path id="Path_2653" data-name="Path 2653" d="M59.74,58.547a94.274,94.274,0,0,0-6.828-7.173l-1.445-1.76,2.163-1.329c-1.807-1.223-3.483-2.018-4.683-1.9a18.491,18.491,0,0,0,.68,5.43c.751,1.971,5.121,5.947,10.113,6.728" fill="#683288"/>
|
|
38
|
+
<path id="Path_2654" data-name="Path 2654" d="M42.326,52.42l-3.21-3.745-1.689-1.384s-4.466-11.812-2.777-21.9l1.79.163a39.717,39.717,0,0,0,1.585,14c2.252,7.426,4.3,12.872,4.3,12.872" fill="#7e85b0"/>
|
|
39
|
+
<path id="Path_2655" data-name="Path 2655" d="M74.78,102.688s1.072,4.626.911,5.363l1.354-.471s.014-.168.033-.439a57.7,57.7,0,0,0-2.486-8.536,37.125,37.125,0,0,1,.188,4.083" fill="#734298"/>
|
|
40
|
+
<path id="Path_2656" data-name="Path 2656" d="M79.338,103.213C78.188,97.131,75.9,94.8,75.9,94.8c.148.528.8,3.308.8,3.308s2.088,5.326,2.276,8.118c0,0,.208-1.239.359-3.017" fill="#734298"/>
|
|
41
|
+
<path id="Path_2657" data-name="Path 2657" d="M67.061,77.946c-.748-1.012-1.868-2.527-3.2-2.134-1.353.685-1.178,1.912-.067,2.794a5.068,5.068,0,0,0,2.673,1.029v.071a5.091,5.091,0,0,1-2.985-.654c-1.776-.891-2.138-3.606.148-4.1,1.824-.257,2.834,1.667,3.436,3" fill="#de82d0"/>
|
|
42
|
+
<path id="Path_2658" data-name="Path 2658" d="M65.781,104.586c.49-1.376,1.341-3.377,3.18-3.269,2.319.31,2.18,3.045.482,4.078-.45.467-2.67,1.124-2.928.825a5.058,5.058,0,0,0,2.58-1.244c1.035-.97,1.109-2.207-.295-2.778-1.365-.283-2.354,1.317-3.019,2.388" fill="#de82d0"/>
|
|
43
|
+
<path id="Path_2659" data-name="Path 2659" d="M64.509,68.787c-.325-1.186-.9-2.661-2.191-2.886-1.611-.124-1.623.849-.887,2.011a6.557,6.557,0,0,0,1.959,1.8,4.6,4.6,0,0,1-3.079-2.8c-.493-2.324,2.585-2.361,3.424-.809a5.439,5.439,0,0,1,.774,2.689" fill="#de82d0"/>
|
|
44
|
+
<path id="Path_2660" data-name="Path 2660" d="M74.311,82.439s-4.436-10.652-10-18.184a101.993,101.993,0,0,0-8.671-10.188c.046.06,10.7,13.44,13.692,19.714,2.159,4.52,6.839,14.472,9.3,19.711a102.787,102.787,0,0,0-4.326-11.053" fill="#efbbea"/>
|
|
45
|
+
<path id="Path_2661" data-name="Path 2661" d="M39.726,27.277c8.672-3.72,17.571-.61,20.207,8.852.156.518.321,1.033.525,1.535l-.8.243c-1.08-1.921-1.271-4.08-2.514-5.947-3.621-6.238-11.156-6.979-17.423-4.683" fill="#ffc2f8"/>
|
|
46
|
+
<path id="Path_2662" data-name="Path 2662" d="M61.31,26.376l1.058,4.1c.3,1.2.66,2.734,1.868,3.2a.5.5,0,1,1-.406.914c-1.522-.784-1.8-2.514-1.99-3.974l-.621-4.217a.047.047,0,0,1,.091-.018" fill="#ffc2f8"/>
|
|
47
|
+
<path id="Path_2663" data-name="Path 2663" d="M62.533,22.737a.994.994,0,0,0-.419-.195.872.872,0,0,0-.778.459,3.936,3.936,0,0,0-.2,2.885q.4,2.139.794,4.278a.37.37,0,0,0,.074.189.321.321,0,0,0,.234.076,1.667,1.667,0,0,0,1.285-.691,4.26,4.26,0,0,0,.639-1.363,4.885,4.885,0,0,0,.288-3.12,5.3,5.3,0,0,0-1.912-2.518" fill="#662f71"/>
|
|
48
|
+
<path id="Path_2664" data-name="Path 2664" d="M64.137,24.913a1.254,1.254,0,0,0-1.194-.642c-.515.1-.809.644-.963,1.145a11.318,11.318,0,0,0,.241,5.764c.04.18.114.393.295.429.328-1.049-.024-2.287.56-3.217.38-.607,1.07-.91,1.49-1.473.463-.622-.043-1.415-.429-2.006" fill="#8d4ba0"/>
|
|
49
|
+
<path id="Path_2665" data-name="Path 2665" d="M63.5,26.193a2.327,2.327,0,0,0-.539.806,7.306,7.306,0,0,0-.416,4.812c.1.378.312.818.7.835s.653-.427.814-.8a18.571,18.571,0,0,1,2.007-3.52,1.279,1.279,0,0,0,.346-.835,1.193,1.193,0,0,0-.583-.758c-.675-.486-1.53-1.245-2.332-.54" fill="#ae5da9"/>
|
|
50
|
+
<path id="Path_2666" data-name="Path 2666" d="M63.5,33.377a4.31,4.31,0,0,1-.376-4.176c1.05-2.253,1.895-2.206,2.669-2.229s2.276,1.384,1.15,2.369a32.655,32.655,0,0,0-3.238,4.036" fill="#361f56"/>
|
|
51
|
+
<path id="Path_2667" data-name="Path 2667" d="M67.841,31.646a2.826,2.826,0,0,1-.218,2.545,1.993,1.993,0,0,1-2.325.772.781.781,0,0,1-.358-.268.69.69,0,0,1-.016-.645,2.14,2.14,0,0,1,.393-.541,4.672,4.672,0,0,0,1.336-2.4c.149-1.193,1,.019,1.188.537" fill="#662f71"/>
|
|
52
|
+
<path id="Path_2668" data-name="Path 2668" d="M65.113,34.363s1.333.235,2.028-1.6.037-4.082-1.606-4.5S62.4,31.829,63.5,33.378s1.613.985,1.613.985" fill="#fff"/>
|
|
53
|
+
<path id="Path_2669" data-name="Path 2669" d="M64.476,33.78a1.464,1.464,0,0,1-.11-.991.859.859,0,0,1,.718-.631.445.445,0,0,1,.31.083.589.589,0,0,1,.144.2,4.512,4.512,0,0,1,.352.924.916.916,0,0,1-.059.785c-.463.607-1.128.14-1.355-.37" fill="#1b0d29"/>
|
|
54
|
+
<path id="Path_2670" data-name="Path 2670" d="M65.1,32.483a.423.423,0,0,0-.042.419.264.264,0,0,0,.109.124.22.22,0,0,0,.268-.072.293.293,0,0,0,.019-.288.446.446,0,0,0-.213-.205" fill="#fff"/>
|
|
55
|
+
<path id="Path_2671" data-name="Path 2671" d="M41.056,26.858s-.567,4.736,4.254,9.593,6.335,5.842,9.5,5.56,5.264-3.836,5.264-3.836a42.271,42.271,0,0,0-2.8-6.829c-1.3-2.11-6.96-7.64-16.221-4.488" fill="#662f71"/>
|
|
56
|
+
<path id="Path_2672" data-name="Path 2672" d="M54.813,42.011c3.167-.282,5.263-3.836,5.263-3.836a42.273,42.273,0,0,0-2.8-6.828,11.7,11.7,0,0,0-3.693-3.442c-.065.015-.108.028-.108.028s-6.335-2.747-10.489,0c0,0,.74,6.195,2.323,8.518,4.822,4.857,6.335,5.843,9.5,5.56" fill="#8d4ba0"/>
|
|
57
|
+
<path id="Path_2673" data-name="Path 2673" d="M48.055,37.882s-3.942-4.358-2.323-7.453,5.667-2.6,7.391-1.792a9.7,9.7,0,0,1,4.294,4.409c.845,1.821-9.362,4.836-9.362,4.836" fill="#ae5da9"/>
|
|
58
|
+
<path id="Path_2674" data-name="Path 2674" d="M58.578,36.275s.387,3.1-2.323,4.118-7.637-1.4-8.2-2.511l.14-1.361Z" fill="#662f71"/>
|
|
59
|
+
<path id="Path_2675" data-name="Path 2675" d="M48.055,37.882a8.267,8.267,0,0,1,.141-5.128,4.982,4.982,0,0,1,4.516-3.342c2.075-.3,3.524,1.794,4.22,2.745a2.256,2.256,0,0,1,.535,1.683Z" fill="#361f56"/>
|
|
60
|
+
<path id="Path_2676" data-name="Path 2676" d="M48.2,36.521a7.071,7.071,0,0,0,4.787,2.921c3.413.6,5.6-3.167,5.6-3.167s-1.3-4.963-5.456-5.315S48.2,36.521,48.2,36.521" fill="#fff"/>
|
|
61
|
+
<path id="Path_2677" data-name="Path 2677" d="M51.906,38.608a1.781,1.781,0,0,1-.134-1.211,1.049,1.049,0,0,1,.878-.771.545.545,0,0,1,.379.1.742.742,0,0,1,.175.245,5.519,5.519,0,0,1,.431,1.13,1.121,1.121,0,0,1-.073.96c-.565.74-1.378.169-1.656-.454" fill="#1b0d29"/>
|
|
62
|
+
<path id="Path_2678" data-name="Path 2678" d="M52.663,37.023a.514.514,0,0,0-.051.512.32.32,0,0,0,.134.152.267.267,0,0,0,.326-.088.359.359,0,0,0,.024-.352A.553.553,0,0,0,52.835,37" fill="#fff"/>
|
|
63
|
+
<path id="Path_2679" data-name="Path 2679" d="M48.36,45.015a7.468,7.468,0,0,1,4.693-3.379,4,4,0,0,0,4.035-.375c1.924-1.455,1.987-3.191,2.988-4.317a10.532,10.532,0,0,1,4.433-2.957,161.977,161.977,0,0,1,22.753,3.52s3.191,2.346,5.678,8.681a14.775,14.775,0,0,1,0,11.309s-7.02-7.226-14.3-9.807a27.594,27.594,0,0,0-14.791-.516s4.974,2.158,7.086,6.006A20.059,20.059,0,0,1,57.323,52.9c-7.7-2.769-8.963-7.884-8.963-7.884" fill="#b53c24"/>
|
|
64
|
+
<path id="Path_2680" data-name="Path 2680" d="M51.223,45.531l.892.469s3.754-.985,4.645-.7,4.693,2.347,4.693,2.347.188.328,2.393-.47a27.6,27.6,0,0,1,14.792.517c7.283,2.581,14.3,9.807,14.3,9.807a14.775,14.775,0,0,0,0-11.309c-2.487-6.335-5.678-8.681-5.678-8.681a161.977,161.977,0,0,0-22.753-3.52,10.533,10.533,0,0,0-4.433,2.956c-1,1.127-1.064,2.863-2.988,4.318a4,4,0,0,1-4.036.375,7.464,7.464,0,0,0-4.692,3.379,5.476,5.476,0,0,1,2.862.516" fill="#f77148"/>
|
|
65
|
+
<path id="Path_2681" data-name="Path 2681" d="M79.05,43.7c-1.642,0-1.924.047-1.736,1.126a11.585,11.585,0,0,0,1.37,2.881C85.951,50.3,92.94,57.5,92.94,57.5a14.775,14.775,0,0,0,0-11.309c-2.487-6.335-5.678-8.681-5.678-8.681-2.12,7.5-6.57,6.194-8.212,6.194" fill="#f4a26d"/>
|
|
66
|
+
<g id="Group_1963" data-name="Group 1963" opacity="0.5" style="mix-blend-mode: overlay;isolation: isolate">
|
|
67
|
+
<g id="Group_1962" data-name="Group 1962">
|
|
68
|
+
<g id="Group_1961" data-name="Group 1961" clip-path="url(#clip-path-3)">
|
|
69
|
+
<path id="Path_2682" data-name="Path 2682" d="M60.6,37.647c1.029-1.642,4.884-3.144,4.884-3.144s5.256.845,7.884,1.361S87.13,37.949,87.13,37.949c2.543,1.71,4.637,7.253,5.763,11.1.887,3.032-.087,6.519-.541,7.867.372.359.588.58.588.58a14.775,14.775,0,0,0,0-11.309c-2.487-6.335-5.678-8.682-5.678-8.682a162.056,162.056,0,0,0-22.753-3.519,10.54,10.54,0,0,0-4.433,2.956c-1,1.126-1.064,2.863-2.988,4.317a4,4,0,0,1-4.035.376,7.464,7.464,0,0,0-4.693,3.378,17.6,17.6,0,0,1,5.068-2.862c5.866,1.032,6.147-2.863,7.176-4.505" fill="#fff"/>
|
|
70
|
+
</g>
|
|
71
|
+
</g>
|
|
72
|
+
</g>
|
|
73
|
+
<g id="Group_1966" data-name="Group 1966" opacity="0.3">
|
|
74
|
+
<g id="Group_1965" data-name="Group 1965">
|
|
75
|
+
<g id="Group_1964" data-name="Group 1964" clip-path="url(#clip-path-4)">
|
|
76
|
+
<path id="Path_2683" data-name="Path 2683" d="M57.323,52.9a20.9,20.9,0,0,0,12.252.71c-.694.159-6.313,1.252-12.956-3.478l.329-.281s6.8,3.332,11.5,2.252a25.25,25.25,0,0,0-3.936-3.332,15.967,15.967,0,0,1,1.763-.248,18.965,18.965,0,0,0-2.426-1.347,27.6,27.6,0,0,1,14.791.515C84.308,49.7,89.8,54.513,91.966,56.55a14.513,14.513,0,0,0-6.956-9.564c-6.288-3.613-10.183-3.425-12.53-3.332s-10.371,2.674-10.371,2.674-5.114-2.392-5.678-2.487a13.66,13.66,0,0,0-5.208,1.691,6.74,6.74,0,0,0-2.863-.517s1.267,5.115,8.963,7.883" fill="#1d1d1b"/>
|
|
77
|
+
</g>
|
|
78
|
+
</g>
|
|
79
|
+
</g>
|
|
80
|
+
<path id="Path_2684" data-name="Path 2684" d="M51.624,45.742a10.607,10.607,0,0,0,5.324,4.106C60.6,51.275,64.6,52.9,68.445,52.1c0,0-4.033-3.787-5.888-4.522a43.094,43.094,0,0,1-5.609-3.315s-5.2.469-5.324,1.478" fill="#5c1b17"/>
|
|
81
|
+
<path id="Path_2685" data-name="Path 2685" d="M60.034,48.91a15.577,15.577,0,0,0-3.744-3.989,8.3,8.3,0,0,0-2.113-.266c-1.264.244-2.5.6-2.553,1.087a10.606,10.606,0,0,0,5.323,4.107c1.3.508,2.65,1.038,4.017,1.478a12.132,12.132,0,0,0-.93-2.417" fill="#420d13"/>
|
|
82
|
+
</g>
|
|
83
|
+
</g>
|
|
84
|
+
<rect id="Rectangle_1724-2" data-name="Rectangle 1724" width="119.929" height="119.929" fill="none"/>
|
|
85
|
+
</svg>
|
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
|
|
5
|
+
function _interopNamespace(e) {
|
|
6
|
+
if (e && e.__esModule) return e;
|
|
7
|
+
var n = Object.create(null);
|
|
8
|
+
if (e) {
|
|
9
|
+
Object.keys(e).forEach(function (k) {
|
|
10
|
+
if (k !== 'default') {
|
|
11
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return e[k];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
n['default'] = e;
|
|
22
|
+
return Object.freeze(n);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
26
|
+
|
|
27
|
+
var _defs, _g, _path;
|
|
28
|
+
|
|
29
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
30
|
+
|
|
31
|
+
function SvgFlamingo(props) {
|
|
32
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
width: 119.929,
|
|
35
|
+
height: 119.929,
|
|
36
|
+
viewBox: "0 0 119.929 119.929"
|
|
37
|
+
}, props), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
38
|
+
id: "flamingo_svg__a"
|
|
39
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
40
|
+
"data-name": "Rectangle 1727",
|
|
41
|
+
fill: "none",
|
|
42
|
+
d: "M0 0h119.929v119.929H0z"
|
|
43
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
44
|
+
id: "flamingo_svg__b"
|
|
45
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
46
|
+
"data-name": "Rectangle 1724",
|
|
47
|
+
transform: "translate(17.957 11.125)",
|
|
48
|
+
fill: "none",
|
|
49
|
+
d: "M0 0h69.089v99.476H0z"
|
|
50
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
51
|
+
id: "flamingo_svg__c"
|
|
52
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
53
|
+
"data-name": "Rectangle 1725",
|
|
54
|
+
transform: "translate(48.36 33.987)",
|
|
55
|
+
fill: "none",
|
|
56
|
+
d: "M0 0h45.686v23.51H0z"
|
|
57
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
58
|
+
id: "flamingo_svg__d"
|
|
59
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
60
|
+
"data-name": "Rectangle 1726",
|
|
61
|
+
transform: "translate(48.36 43.617)",
|
|
62
|
+
fill: "none",
|
|
63
|
+
d: "M0 0h43.606v12.934H0z"
|
|
64
|
+
})))), _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
65
|
+
"data-name": "Group 1958"
|
|
66
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
67
|
+
"data-name": "Group 1967",
|
|
68
|
+
clipPath: "url(#flamingo_svg__a)"
|
|
69
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
70
|
+
"data-name": "Group 1960"
|
|
71
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
72
|
+
"data-name": "Group 1959",
|
|
73
|
+
opacity: 0.3
|
|
74
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
75
|
+
"data-name": "Group 1958",
|
|
76
|
+
clipPath: "url(#flamingo_svg__b)"
|
|
77
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
78
|
+
"data-name": "Path 2640",
|
|
79
|
+
d: "M84.493 43.034a22.071 22.071 0 00-2.724-4.043 10.511 10.511 0 00-1.507-1.485 161.757 161.757 0 00-12.581-2.351q-.911-.133-1.759-.25l-.832-.111a160.201 160.201 0 00-3.611-.436l-.073-.008a3.07 3.07 0 00-.383-.856.437.437 0 01-.066-.129 3.047 3.047 0 00-.116-1.719 2.829 2.829 0 00-.455-.748 3.738 3.738 0 00-.311-1.223 1.087 1.087 0 00-.132-.334c.942-.824.046-1.941-.726-2.272a2.2 2.2 0 00-.384-.336 5.681 5.681 0 00-1.136-.722 2.267 2.267 0 00-.155-.412 2.483 2.483 0 00-.1-.344 5.3 5.3 0 00-1.912-2.518.994.994 0 00-.419-.195.562.562 0 00-.164.011c-.756-.475-3.246-1.809-7.959-2.269-.113-.011-.235-.018-.351-.028l2.45-.243 2.956-7.743a40.977 40.977 0 00-5.258-1.145 50.665 50.665 0 00-23.478 14.014c-.069.374-.136.752-.191 1.139 0 .029 0 .052-.006.08a65.168 65.168 0 00-3.281 2.84c-.648.841-1.277 1.7-1.872 2.58l2.709-1.264a21.293 21.293 0 00-1.938 10.634 19.364 19.364 0 00.858 4.383s.146-.555.384-1.322l.127-.4a14.212 14.212 0 011.6-3.628s.649 4.848 1.215 9.87l.1.887c.1.887.192 1.772.278 2.627a54.1 54.1 0 01.426 6.982 39.293 39.293 0 002.313-5.417 32.051 32.051 0 00.953-3.333c.088-.388.167-.781.236-1.175a18.246 18.246 0 00.3-3.543s1.544 2.525 3.221 6.053a51.294 51.294 0 013.489 9.339 32.568 32.568 0 00-2.111-13.8L35.31 52.4c.69.815 1.424 1.688 2.135 2.547.5.606.99 1.2 1.441 1.764.9 1.122 1.653 2.1 2.052 2.709 1 1.525 4.781 7.23 8.257 13.906.521 1 1.036 2.024 1.533 3.059s.977 2.079 1.429 3.125a56.675 56.675 0 012.3 6.189l1.783 5.725s-.305.837-.8 2.16c-.142.378-.3.8-.47 1.245-.341.9-.734 1.924-1.158 3.009a104.129 104.129 0 01-5.052 11.519 50.512 50.512 0 007.747 1.135c.171-.011.34-.022.514-.035a41.917 41.917 0 0010.005-.341s.853-6.022.759-7.43c0 0 1.072 4.626.911 5.363l1.354-.47s.014-.167.033-.437c.073-1.024.24-3.607.166-5.016a33.793 33.793 0 00-.54-4.012s.294.75.671 1.832c.062.181.128.371.194.568a27.016 27.016 0 011.411 5.718s.03-.182.073-.48v-.009c.233-1.625.894-7.074-.074-11.008a91.779 91.779 0 00-4.669-12.295S66.2 79.775 64.4 76.171c-.112-.226-.228-.454-.346-.687-.59-1.161-1.246-2.4-1.954-3.675q-.213-.381-.432-.766a86.566 86.566 0 00-1.363-2.314 62.262 62.262 0 00-2.988-4.475q-.564-.763-1.129-1.494c-.126-.163-.25-.319-.376-.479-.25-.321-.5-.639-.749-.95l-.436-.536q-.344-.421-.681-.83a147.54 147.54 0 00-.437-.52q-.336-.4-.664-.779a73.261 73.261 0 00-1.085-1.241c-.115-.13-.231-.262-.345-.388a93.843 93.843 0 00-.767-.845l-.195-.213c-.655-.711-1.261-1.35-1.806-1.912a75.675 75.675 0 00-2.577-2.549l-.034-.033-.121-.112-1.445-1.76.066-.041c.1.09.193.18.3.271a15.583 15.583 0 001.8 1.3 19.5 19.5 0 003.687 1.757c.433.156.857.289 1.278.413.115.034.229.065.343.1q.507.141 1 .253c.082.019.165.04.246.058q.606.13 1.189.222c.071.012.141.02.212.031.325.048.645.088.958.12l.263.026c.739.066 1.44.091 2.1.085h.242c.262-.005.517-.016.765-.03l.195-.011c.289-.02.568-.045.835-.074.085-.009.165-.02.249-.031.177-.022.35-.045.517-.07.1-.016.207-.031.308-.048a16.55 16.55 0 001.018-.199l.12-.026.414-.1a11.767 11.767 0 001.357-.427c-2.112-3.848-7.086-6.007-7.086-6.007a27.6 27.6 0 0114.792.516l.047.019c.421.15.841.32 1.26.5.092.039.184.082.276.122q.508.225 1.011.474c.088.043.177.086.265.131q.6.306 1.195.637l.008.005q.642.362 1.263.748c.021.012.041.026.062.039q.564.35 1.107.714l.175.118q.521.351 1.019.707l.093.066a51.19 51.19 0 012.073 1.573c.048.037.093.074.14.112q.388.312.75.613l.2.165c.229.192.447.379.657.56.046.04.1.083.142.123.234.2.452.4.658.581l.31.282.238.218.365.34q.242.228.428.407c.354.343.563.555.563.555a14.775 14.775 0 000-11.309 30.008 30.008 0 00-1.448-3.154"
|
|
80
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
81
|
+
"data-name": "Path 2641",
|
|
82
|
+
d: "M42.714 10.7s-3.659-6.389-3.8-9.767c0 0-.882 5.776 0 7.979 0 0-3.2-5.612-3.5-8.521 0 0-1.46 7.083 0 11.838l.124 1.586s-2.675-4.577-2.675-6.407a21.325 21.325 0 000 10.63c1.549 5.279 9.853-7.338 9.853-7.338",
|
|
83
|
+
fill: "#944787"
|
|
84
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
85
|
+
"data-name": "Path 2642",
|
|
86
|
+
d: "M35.412.4s-.253 1.239-.443 3.018c.438-.078.85-.137 1.227-.171A12.113 12.113 0 0135.412.4",
|
|
87
|
+
fill: "#571e61"
|
|
88
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
89
|
+
"data-name": "Path 2643",
|
|
90
|
+
d: "M36.1 15.086a10.545 10.545 0 01-3.92-2.576 18.44 18.44 0 00.681 5.532c.8 2.716 3.381.695 5.7-1.908a14.4 14.4 0 00-2.461-1.048",
|
|
91
|
+
fill: "#571e61"
|
|
92
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
93
|
+
"data-name": "Path 2644",
|
|
94
|
+
d: "M38.914.938s-.156 1.032-.272 2.385a5.26 5.26 0 01.816.22 10.51 10.51 0 01-.544-2.6",
|
|
95
|
+
fill: "#571e61"
|
|
96
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
97
|
+
"data-name": "Path 2645",
|
|
98
|
+
d: "M34.116 15.054a31.218 31.218 0 00-4 11.224C29.2 32.684 43 20.3 43 20.3z",
|
|
99
|
+
fill: "#6c6697"
|
|
100
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
101
|
+
"data-name": "Path 2646",
|
|
102
|
+
d: "M32.861 13.256l5.913 8.472 17.316-1.715 2.956-7.742s-14.359-4.505-26.185.985",
|
|
103
|
+
fill: "#fff"
|
|
104
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
105
|
+
"data-name": "Path 2647",
|
|
106
|
+
d: "M47.194 12.51a2.683 2.683 0 00-2.534 3.1 3.278 3.278 0 003.59 2.886 2.473 2.473 0 002.464-2.988c-.423-2.928-2.089-2.998-3.52-2.998z",
|
|
107
|
+
fill: "none",
|
|
108
|
+
stroke: "#ea7cd9",
|
|
109
|
+
strokeMiterlimit: 10,
|
|
110
|
+
strokeWidth: 2
|
|
111
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
112
|
+
"data-name": "Path 2648",
|
|
113
|
+
d: "M62.2 22.725s-2.44-1.877-8.212-2.44-15.392.36-21.164 4.082a67.182 67.182 0 00-9.385 8.119l4.223-1.971a21.082 21.082 0 00-1.079 15.016s1.032-3.941 2.111-5.349c0 0 2.3 17.175 2.018 20.366 0 0 3.942-7.274 3.8-13.468 0 0 4.881 7.977 6.711 15.392a32.565 32.565 0 00-2.112-13.8s7.227 8.306 8.822 10.747S58.261 75 61.452 85.7l1.783 5.725s-6.385 17.491-8.26 18.975c0 0 9.934 1.15 19.046-1.827a41.731 41.731 0 00.758-5.886s1.072 4.626.912 5.363l1.354-.471s.292-3.672.2-5.455a33.685 33.685 0 00-.54-4.012s2.089 5.326 2.276 8.118c0 0 1.15-6.828 0-11.5a91.633 91.633 0 00-4.671-12.291s-4.434-10.652-9.995-18.184a99.581 99.581 0 00-11.4-12.881l-1.446-1.76 12.5-7.673 4.505-7.39a4.1 4.1 0 00-.446-1.056c-.211-.235-.329-1.83-.634-2.558a10.439 10.439 0 00-.445-1.6 1.224 1.224 0 00.234-1.033c-.141-.61-.774-.985-1.384-1.337a8.515 8.515 0 01-1.267-.962 5.2 5.2 0 00-2.332-3.28",
|
|
114
|
+
fill: "#d56bc4"
|
|
115
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
116
|
+
"data-name": "Path 2649",
|
|
117
|
+
d: "M58.6 39.2l5.77-2.572.949-3.115-3.627-10.868-10.611-.108-5.6 2.587-.925 4.546S54.9 39.571 58.6 39.2",
|
|
118
|
+
fill: "#f39de7"
|
|
119
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
120
|
+
"data-name": "Path 2650",
|
|
121
|
+
d: "M61.359 23.757a14.327 14.327 0 002.141.095 3.953 3.953 0 00-1.3-1.127s-2.441-1.877-8.212-2.441c-5.087-.5-13.159.165-18.956 2.876.041.974.659 1.941 2.531 2.544l4.759.681 4.767-.34a28.674 28.674 0 0114.266-2.288",
|
|
122
|
+
fill: "#ec84db"
|
|
123
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
124
|
+
"data-name": "Path 2651",
|
|
125
|
+
d: "M32.827 24.367a26.3 26.3 0 00-1.1.757l6.4.58c-.071-1.806.774-2.135.774-2.135l.552 2.135c1.653-3.166 12.557-5.462 12.881-5.53-5.826-.259-14.257.805-19.51 4.193",
|
|
126
|
+
fill: "#734298"
|
|
127
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
128
|
+
"data-name": "Path 2652",
|
|
129
|
+
d: "M55.516 66.437c-1.478-2.323-9.01-13.093-10.066-14.5S42 46.235 40.03 39.689a54.228 54.228 0 01-1.9-13.989l-6.4-.581a73.634 73.634 0 00-8.285 7.362l4.223-1.971a21.082 21.082 0 00-1.079 15.016s1.032-3.942 2.111-5.349c0 0 2.3 17.175 2.018 20.366 0 0 3.942-7.274 3.8-13.468 0 0 4.881 7.977 6.711 15.392a32.565 32.565 0 00-2.112-13.8s7.227 8.306 8.822 10.746S58.261 75 61.452 85.7l1.783 5.725s-6.385 17.492-8.26 18.976a52.36 52.36 0 009.04.057c0-.009.013-.018.018-.027 1.2-2.042 3.168-16.823 3.449-18.865s-.844-3.308-1.689-5.349-8.8-17.457-10.277-19.78",
|
|
130
|
+
fill: "#683288"
|
|
131
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
132
|
+
"data-name": "Path 2653",
|
|
133
|
+
d: "M59.74 58.547a94.274 94.274 0 00-6.828-7.173l-1.445-1.76 2.163-1.329c-1.807-1.223-3.483-2.018-4.683-1.9a18.491 18.491 0 00.68 5.43c.751 1.971 5.121 5.947 10.113 6.728",
|
|
134
|
+
fill: "#683288"
|
|
135
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
136
|
+
"data-name": "Path 2654",
|
|
137
|
+
d: "M42.326 52.42l-3.21-3.745-1.689-1.384s-4.466-11.812-2.777-21.9l1.79.163a39.717 39.717 0 001.585 14c2.252 7.426 4.3 12.872 4.3 12.872",
|
|
138
|
+
fill: "#7e85b0"
|
|
139
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
140
|
+
"data-name": "Path 2655",
|
|
141
|
+
d: "M74.78 102.688s1.072 4.626.911 5.363l1.354-.471s.014-.168.033-.439a57.7 57.7 0 00-2.486-8.536 37.125 37.125 0 01.188 4.083",
|
|
142
|
+
fill: "#734298"
|
|
143
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
144
|
+
"data-name": "Path 2656",
|
|
145
|
+
d: "M79.338 103.213C78.188 97.131 75.9 94.8 75.9 94.8c.148.528.8 3.308.8 3.308s2.088 5.326 2.276 8.118c0 0 .208-1.239.359-3.017",
|
|
146
|
+
fill: "#734298"
|
|
147
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
148
|
+
"data-name": "Path 2657",
|
|
149
|
+
d: "M67.061 77.946c-.748-1.012-1.868-2.527-3.2-2.134-1.353.685-1.178 1.912-.067 2.794a5.068 5.068 0 002.673 1.029v.071a5.091 5.091 0 01-2.985-.654c-1.776-.891-2.138-3.606.148-4.1 1.824-.257 2.834 1.667 3.436 3",
|
|
150
|
+
fill: "#de82d0"
|
|
151
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
152
|
+
"data-name": "Path 2658",
|
|
153
|
+
d: "M65.781 104.586c.49-1.376 1.341-3.377 3.18-3.269 2.319.31 2.18 3.045.482 4.078-.45.467-2.67 1.124-2.928.825a5.058 5.058 0 002.58-1.244c1.035-.97 1.109-2.207-.295-2.778-1.365-.283-2.354 1.317-3.019 2.388",
|
|
154
|
+
fill: "#de82d0"
|
|
155
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
156
|
+
"data-name": "Path 2659",
|
|
157
|
+
d: "M64.509 68.787c-.325-1.186-.9-2.661-2.191-2.886-1.611-.124-1.623.849-.887 2.011a6.557 6.557 0 001.959 1.8 4.6 4.6 0 01-3.079-2.8c-.493-2.324 2.585-2.361 3.424-.809a5.439 5.439 0 01.774 2.689",
|
|
158
|
+
fill: "#de82d0"
|
|
159
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
160
|
+
"data-name": "Path 2660",
|
|
161
|
+
d: "M74.311 82.439s-4.436-10.652-10-18.184a101.993 101.993 0 00-8.671-10.188c.046.06 10.7 13.44 13.692 19.714 2.159 4.52 6.839 14.472 9.3 19.711a102.787 102.787 0 00-4.326-11.053",
|
|
162
|
+
fill: "#efbbea"
|
|
163
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
164
|
+
"data-name": "Path 2661",
|
|
165
|
+
d: "M39.726 27.277c8.672-3.72 17.571-.61 20.207 8.852.156.518.321 1.033.525 1.535l-.8.243c-1.08-1.921-1.271-4.08-2.514-5.947-3.621-6.238-11.156-6.979-17.423-4.683",
|
|
166
|
+
fill: "#ffc2f8"
|
|
167
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
168
|
+
"data-name": "Path 2662",
|
|
169
|
+
d: "M61.31 26.376l1.058 4.1c.3 1.2.66 2.734 1.868 3.2a.5.5 0 11-.406.914c-1.522-.784-1.8-2.514-1.99-3.974l-.621-4.217a.047.047 0 01.091-.018",
|
|
170
|
+
fill: "#ffc2f8"
|
|
171
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
172
|
+
"data-name": "Path 2663",
|
|
173
|
+
d: "M62.533 22.737a.994.994 0 00-.419-.195.872.872 0 00-.778.459 3.936 3.936 0 00-.2 2.885q.4 2.139.794 4.278a.37.37 0 00.074.189.321.321 0 00.234.076 1.667 1.667 0 001.285-.691 4.26 4.26 0 00.639-1.363 4.885 4.885 0 00.288-3.12 5.3 5.3 0 00-1.912-2.518",
|
|
174
|
+
fill: "#662f71"
|
|
175
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
176
|
+
"data-name": "Path 2664",
|
|
177
|
+
d: "M64.137 24.913a1.254 1.254 0 00-1.194-.642c-.515.1-.809.644-.963 1.145a11.318 11.318 0 00.241 5.764c.04.18.114.393.295.429.328-1.049-.024-2.287.56-3.217.38-.607 1.07-.91 1.49-1.473.463-.622-.043-1.415-.429-2.006",
|
|
178
|
+
fill: "#8d4ba0"
|
|
179
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
180
|
+
"data-name": "Path 2665",
|
|
181
|
+
d: "M63.5 26.193a2.327 2.327 0 00-.539.806 7.306 7.306 0 00-.416 4.812c.1.378.312.818.7.835s.653-.427.814-.8a18.571 18.571 0 012.007-3.52 1.279 1.279 0 00.346-.835 1.193 1.193 0 00-.583-.758c-.675-.486-1.53-1.245-2.332-.54",
|
|
182
|
+
fill: "#ae5da9"
|
|
183
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
184
|
+
"data-name": "Path 2666",
|
|
185
|
+
d: "M63.5 33.377a4.31 4.31 0 01-.376-4.176c1.05-2.253 1.895-2.206 2.669-2.229s2.276 1.384 1.15 2.369a32.655 32.655 0 00-3.238 4.036",
|
|
186
|
+
fill: "#361f56"
|
|
187
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
188
|
+
"data-name": "Path 2667",
|
|
189
|
+
d: "M67.841 31.646a2.826 2.826 0 01-.218 2.545 1.993 1.993 0 01-2.325.772.781.781 0 01-.358-.268.69.69 0 01-.016-.645 2.14 2.14 0 01.393-.541 4.672 4.672 0 001.336-2.4c.149-1.193 1 .019 1.188.537",
|
|
190
|
+
fill: "#662f71"
|
|
191
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
192
|
+
"data-name": "Path 2668",
|
|
193
|
+
d: "M65.113 34.363s1.333.235 2.028-1.6.037-4.082-1.606-4.5-3.135 3.566-2.035 5.115 1.613.985 1.613.985",
|
|
194
|
+
fill: "#fff"
|
|
195
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
196
|
+
"data-name": "Path 2669",
|
|
197
|
+
d: "M64.476 33.78a1.464 1.464 0 01-.11-.991.859.859 0 01.718-.631.445.445 0 01.31.083.589.589 0 01.144.2 4.512 4.512 0 01.352.924.916.916 0 01-.059.785c-.463.607-1.128.14-1.355-.37",
|
|
198
|
+
fill: "#1b0d29"
|
|
199
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
200
|
+
"data-name": "Path 2670",
|
|
201
|
+
d: "M65.1 32.483a.423.423 0 00-.042.419.264.264 0 00.109.124.22.22 0 00.268-.072.293.293 0 00.019-.288.446.446 0 00-.213-.205",
|
|
202
|
+
fill: "#fff"
|
|
203
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
204
|
+
"data-name": "Path 2671",
|
|
205
|
+
d: "M41.056 26.858s-.567 4.736 4.254 9.593 6.335 5.842 9.5 5.56 5.264-3.836 5.264-3.836a42.271 42.271 0 00-2.8-6.829c-1.3-2.11-6.96-7.64-16.221-4.488",
|
|
206
|
+
fill: "#662f71"
|
|
207
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
208
|
+
"data-name": "Path 2672",
|
|
209
|
+
d: "M54.813 42.011c3.167-.282 5.263-3.836 5.263-3.836a42.273 42.273 0 00-2.8-6.828 11.7 11.7 0 00-3.693-3.442c-.065.015-.108.028-.108.028s-6.335-2.747-10.489 0c0 0 .74 6.195 2.323 8.518 4.822 4.857 6.335 5.843 9.5 5.56",
|
|
210
|
+
fill: "#8d4ba0"
|
|
211
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
212
|
+
"data-name": "Path 2673",
|
|
213
|
+
d: "M48.055 37.882s-3.942-4.358-2.323-7.453 5.667-2.6 7.391-1.792a9.7 9.7 0 014.294 4.409c.845 1.821-9.362 4.836-9.362 4.836",
|
|
214
|
+
fill: "#ae5da9"
|
|
215
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
216
|
+
"data-name": "Path 2674",
|
|
217
|
+
d: "M58.578 36.275s.387 3.1-2.323 4.118-7.637-1.4-8.2-2.511l.14-1.361z",
|
|
218
|
+
fill: "#662f71"
|
|
219
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
220
|
+
"data-name": "Path 2675",
|
|
221
|
+
d: "M48.055 37.882a8.267 8.267 0 01.141-5.128 4.982 4.982 0 014.516-3.342c2.075-.3 3.524 1.794 4.22 2.745a2.256 2.256 0 01.535 1.683z",
|
|
222
|
+
fill: "#361f56"
|
|
223
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
224
|
+
"data-name": "Path 2676",
|
|
225
|
+
d: "M48.2 36.521a7.071 7.071 0 004.787 2.921c3.413.6 5.6-3.167 5.6-3.167s-1.3-4.963-5.456-5.315-4.931 5.561-4.931 5.561",
|
|
226
|
+
fill: "#fff"
|
|
227
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
228
|
+
"data-name": "Path 2677",
|
|
229
|
+
d: "M51.906 38.608a1.781 1.781 0 01-.134-1.211 1.049 1.049 0 01.878-.771.545.545 0 01.379.1.742.742 0 01.175.245 5.519 5.519 0 01.431 1.13 1.121 1.121 0 01-.073.96c-.565.74-1.378.169-1.656-.454",
|
|
230
|
+
fill: "#1b0d29"
|
|
231
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
232
|
+
"data-name": "Path 2678",
|
|
233
|
+
d: "M52.663 37.023a.514.514 0 00-.051.512.32.32 0 00.134.152.267.267 0 00.326-.088.359.359 0 00.024-.352.553.553 0 00-.261-.247",
|
|
234
|
+
fill: "#fff"
|
|
235
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
236
|
+
"data-name": "Path 2679",
|
|
237
|
+
d: "M48.36 45.015a7.468 7.468 0 014.693-3.379 4 4 0 004.035-.375c1.924-1.455 1.987-3.191 2.988-4.317a10.532 10.532 0 014.433-2.957 161.977 161.977 0 0122.753 3.52s3.191 2.346 5.678 8.681a14.775 14.775 0 010 11.309s-7.02-7.226-14.3-9.807a27.594 27.594 0 00-14.791-.516s4.974 2.158 7.086 6.006a20.059 20.059 0 01-13.612-.28c-7.7-2.769-8.963-7.884-8.963-7.884",
|
|
238
|
+
fill: "#b53c24"
|
|
239
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
240
|
+
"data-name": "Path 2680",
|
|
241
|
+
d: "M51.223 45.531l.892.469s3.754-.985 4.645-.7 4.693 2.347 4.693 2.347.188.328 2.393-.47a27.6 27.6 0 0114.792.517c7.283 2.581 14.3 9.807 14.3 9.807a14.775 14.775 0 000-11.309c-2.487-6.335-5.678-8.681-5.678-8.681a161.977 161.977 0 00-22.753-3.52 10.533 10.533 0 00-4.433 2.956c-1 1.127-1.064 2.863-2.988 4.318a4 4 0 01-4.036.375 7.464 7.464 0 00-4.692 3.379 5.476 5.476 0 012.862.516",
|
|
242
|
+
fill: "#f77148"
|
|
243
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
244
|
+
"data-name": "Path 2681",
|
|
245
|
+
d: "M79.05 43.7c-1.642 0-1.924.047-1.736 1.126a11.585 11.585 0 001.37 2.881C85.951 50.3 92.94 57.5 92.94 57.5a14.775 14.775 0 000-11.309c-2.487-6.335-5.678-8.681-5.678-8.681-2.12 7.5-6.57 6.194-8.212 6.194",
|
|
246
|
+
fill: "#f4a26d"
|
|
247
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
248
|
+
"data-name": "Group 1963"
|
|
249
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
250
|
+
"data-name": "Group 1962",
|
|
251
|
+
opacity: 0.5
|
|
252
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
253
|
+
"data-name": "Group 1961",
|
|
254
|
+
clipPath: "url(#flamingo_svg__c)"
|
|
255
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
256
|
+
"data-name": "Path 2682",
|
|
257
|
+
d: "M60.6 37.647c1.029-1.642 4.884-3.144 4.884-3.144s5.256.845 7.884 1.361 13.762 2.085 13.762 2.085c2.543 1.71 4.637 7.253 5.763 11.1.887 3.032-.087 6.519-.541 7.867.372.359.588.58.588.58a14.775 14.775 0 000-11.309c-2.487-6.335-5.678-8.682-5.678-8.682a162.056 162.056 0 00-22.753-3.519 10.54 10.54 0 00-4.433 2.956c-1 1.126-1.064 2.863-2.988 4.317a4 4 0 01-4.035.376 7.464 7.464 0 00-4.693 3.378 17.6 17.6 0 015.068-2.862c5.866 1.032 6.147-2.863 7.176-4.505",
|
|
258
|
+
fill: "#fff"
|
|
259
|
+
})))), /*#__PURE__*/React__namespace.createElement("g", {
|
|
260
|
+
"data-name": "Group 1966"
|
|
261
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
262
|
+
"data-name": "Group 1965",
|
|
263
|
+
opacity: 0.3
|
|
264
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
265
|
+
"data-name": "Group 1964",
|
|
266
|
+
clipPath: "url(#flamingo_svg__d)"
|
|
267
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
268
|
+
"data-name": "Path 2683",
|
|
269
|
+
d: "M57.323 52.9a20.9 20.9 0 0012.252.71c-.694.159-6.313 1.252-12.956-3.478l.329-.281s6.8 3.332 11.5 2.252a25.25 25.25 0 00-3.936-3.332 15.967 15.967 0 011.763-.248 18.965 18.965 0 00-2.426-1.347 27.6 27.6 0 0114.791.515c5.668 2.009 11.16 6.822 13.326 8.859a14.513 14.513 0 00-6.956-9.564c-6.288-3.613-10.183-3.425-12.53-3.332s-10.371 2.674-10.371 2.674-5.114-2.392-5.678-2.487a13.66 13.66 0 00-5.208 1.691 6.74 6.74 0 00-2.863-.517s1.267 5.115 8.963 7.883",
|
|
270
|
+
fill: "#1d1d1b"
|
|
271
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
272
|
+
"data-name": "Path 2684",
|
|
273
|
+
d: "M51.624 45.742a10.607 10.607 0 005.324 4.106C60.6 51.275 64.6 52.9 68.445 52.1c0 0-4.033-3.787-5.888-4.522a43.094 43.094 0 01-5.609-3.315s-5.2.469-5.324 1.478",
|
|
274
|
+
fill: "#5c1b17"
|
|
275
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
276
|
+
"data-name": "Path 2685",
|
|
277
|
+
d: "M60.034 48.91a15.577 15.577 0 00-3.744-3.989 8.3 8.3 0 00-2.113-.266c-1.264.244-2.5.6-2.553 1.087a10.606 10.606 0 005.323 4.107c1.3.508 2.65 1.038 4.017 1.478a12.132 12.132 0 00-.93-2.417",
|
|
278
|
+
fill: "#420d13"
|
|
279
|
+
})))), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
280
|
+
"data-name": "Rectangle 1724",
|
|
281
|
+
fill: "none",
|
|
282
|
+
d: "M0 0h119.929v119.929H0z"
|
|
283
|
+
})));
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
module.exports = SvgFlamingo;
|
|
287
|
+
//# sourceMappingURL=flamingo.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flamingo.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|