@popsure/dirty-swan 0.58.4 → 0.58.5

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.
Files changed (68) hide show
  1. package/dist/cjs/index.js +45 -0
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/lib/components/icon/icons/Bone.d.ts +4 -0
  4. package/dist/cjs/lib/components/icon/icons/Car.d.ts +4 -0
  5. package/dist/cjs/lib/components/icon/icons/Files.d.ts +4 -0
  6. package/dist/cjs/lib/components/icon/icons/Id.d.ts +4 -0
  7. package/dist/cjs/lib/components/icon/icons/Prohibit.d.ts +4 -0
  8. package/dist/cjs/lib/components/icon/icons/Receipt.d.ts +4 -0
  9. package/dist/cjs/lib/components/icon/icons/Signature.d.ts +4 -0
  10. package/dist/cjs/lib/components/icon/icons/Stamp.d.ts +4 -0
  11. package/dist/cjs/lib/components/icon/icons/Translation.d.ts +4 -0
  12. package/dist/cjs/lib/components/icon/icons/index.d.ts +9 -0
  13. package/dist/esm/components/icon/icons/Bone.js +13 -0
  14. package/dist/esm/components/icon/icons/Bone.js.map +1 -0
  15. package/dist/esm/components/icon/icons/Car.js +13 -0
  16. package/dist/esm/components/icon/icons/Car.js.map +1 -0
  17. package/dist/esm/components/icon/icons/Files.js +13 -0
  18. package/dist/esm/components/icon/icons/Files.js.map +1 -0
  19. package/dist/esm/components/icon/icons/Id.js +13 -0
  20. package/dist/esm/components/icon/icons/Id.js.map +1 -0
  21. package/dist/esm/components/icon/icons/Prohibit.js +13 -0
  22. package/dist/esm/components/icon/icons/Prohibit.js.map +1 -0
  23. package/dist/esm/components/icon/icons/Receipt.js +13 -0
  24. package/dist/esm/components/icon/icons/Receipt.js.map +1 -0
  25. package/dist/esm/components/icon/icons/Signature.js +13 -0
  26. package/dist/esm/components/icon/icons/Signature.js.map +1 -0
  27. package/dist/esm/components/icon/icons/Stamp.js +13 -0
  28. package/dist/esm/components/icon/icons/Stamp.js.map +1 -0
  29. package/dist/esm/components/icon/icons/Translation.js +13 -0
  30. package/dist/esm/components/icon/icons/Translation.js.map +1 -0
  31. package/dist/esm/components/icon/icons.stories.js +10 -1
  32. package/dist/esm/components/icon/icons.stories.js.map +1 -1
  33. package/dist/esm/components/icon/index.stories.js +10 -1
  34. package/dist/esm/components/icon/index.stories.js.map +1 -1
  35. package/dist/esm/{index-2faa4731.js → index-608a56e3.js} +19 -1
  36. package/dist/esm/{index-2faa4731.js.map → index-608a56e3.js.map} +1 -1
  37. package/dist/esm/index.js +9 -0
  38. package/dist/esm/index.js.map +1 -1
  39. package/dist/esm/lib/components/icon/icons/Bone.d.ts +4 -0
  40. package/dist/esm/lib/components/icon/icons/Car.d.ts +4 -0
  41. package/dist/esm/lib/components/icon/icons/Files.d.ts +4 -0
  42. package/dist/esm/lib/components/icon/icons/Id.d.ts +4 -0
  43. package/dist/esm/lib/components/icon/icons/Prohibit.d.ts +4 -0
  44. package/dist/esm/lib/components/icon/icons/Receipt.d.ts +4 -0
  45. package/dist/esm/lib/components/icon/icons/Signature.d.ts +4 -0
  46. package/dist/esm/lib/components/icon/icons/Stamp.d.ts +4 -0
  47. package/dist/esm/lib/components/icon/icons/Translation.d.ts +4 -0
  48. package/dist/esm/lib/components/icon/icons/index.d.ts +9 -0
  49. package/package.json +1 -1
  50. package/src/lib/components/icon/assets/bone.svg +10 -0
  51. package/src/lib/components/icon/assets/car.svg +15 -0
  52. package/src/lib/components/icon/assets/files.svg +13 -0
  53. package/src/lib/components/icon/assets/id.svg +14 -0
  54. package/src/lib/components/icon/assets/prohibit.svg +11 -0
  55. package/src/lib/components/icon/assets/receipt.svg +12 -0
  56. package/src/lib/components/icon/assets/signature.svg +11 -0
  57. package/src/lib/components/icon/assets/stamp.svg +12 -0
  58. package/src/lib/components/icon/assets/translation.svg +15 -0
  59. package/src/lib/components/icon/icons/Bone.tsx +23 -0
  60. package/src/lib/components/icon/icons/Car.tsx +30 -0
  61. package/src/lib/components/icon/icons/Files.tsx +24 -0
  62. package/src/lib/components/icon/icons/Id.tsx +24 -0
  63. package/src/lib/components/icon/icons/Prohibit.tsx +25 -0
  64. package/src/lib/components/icon/icons/Receipt.tsx +23 -0
  65. package/src/lib/components/icon/icons/Signature.tsx +23 -0
  66. package/src/lib/components/icon/icons/Stamp.tsx +23 -0
  67. package/src/lib/components/icon/icons/Translation.tsx +35 -0
  68. package/src/lib/components/icon/icons/index.ts +9 -0
@@ -52,6 +52,7 @@ import BikeBicycle from './components/icon/icons/BikeBicycle.js';
52
52
  import Blog from './components/icon/icons/Blog.js';
53
53
  import Bluetooth from './components/icon/icons/Bluetooth.js';
54
54
  import Bold from './components/icon/icons/Bold.js';
55
+ import Bone from './components/icon/icons/Bone.js';
55
56
  import BookOpen from './components/icon/icons/BookOpen.js';
56
57
  import Book from './components/icon/icons/Book.js';
57
58
  import Bookmark from './components/icon/icons/Bookmark.js';
@@ -67,6 +68,7 @@ import CalendarIcon from './components/icon/icons/Calendar.js';
67
68
  import CameraOff from './components/icon/icons/CameraOff.js';
68
69
  import Camera from './components/icon/icons/Camera.js';
69
70
  import CarTraffic from './components/icon/icons/CarTraffic.js';
71
+ import Car from './components/icon/icons/Car.js';
70
72
  import Cast from './components/icon/icons/Cast.js';
71
73
  import ChainBikeBroken from './components/icon/icons/ChainBikeBroken.js';
72
74
  import CheckCircle from './components/icon/icons/CheckCircle.js';
@@ -156,6 +158,7 @@ import FileMinus from './components/icon/icons/FileMinus.js';
156
158
  import FilePlus from './components/icon/icons/FilePlus.js';
157
159
  import FileText from './components/icon/icons/FileText.js';
158
160
  import FileIcon from './components/icon/icons/File.js';
161
+ import Files from './components/icon/icons/Files.js';
159
162
  import Film from './components/icon/icons/Film.js';
160
163
  import Filter from './components/icon/icons/Filter.js';
161
164
  import Fire from './components/icon/icons/Fire.js';
@@ -184,6 +187,7 @@ import Heart from './components/icon/icons/Heart.js';
184
187
  import Hexagon from './components/icon/icons/Hexagon.js';
185
188
  import Home from './components/icon/icons/Home.js';
186
189
  import HospitalBuilding from './components/icon/icons/HospitalBuilding.js';
190
+ import Id from './components/icon/icons/Id.js';
187
191
  import ImagePicture from './components/icon/icons/ImagePicture.js';
188
192
  import Inbox from './components/icon/icons/Inbox.js';
189
193
  import InfoFilled from './components/icon/icons/InfoFilled.js';
@@ -269,10 +273,12 @@ import Power from './components/icon/icons/Power.js';
269
273
  import Pregnacy from './components/icon/icons/Pregnacy.js';
270
274
  import Printer from './components/icon/icons/Printer.js';
271
275
  import Progress from './components/icon/icons/Progress.js';
276
+ import Prohibit from './components/icon/icons/Prohibit.js';
272
277
  import QrCode from './components/icon/icons/QrCode.js';
273
278
  import QuestionmarkHelpCircle from './components/icon/icons/QuestionmarkHelpCircle.js';
274
279
  import QuotationMarks from './components/icon/icons/QuotationMarks.js';
275
280
  import Radio from './components/icon/icons/Radio.js';
281
+ import Receipt from './components/icon/icons/Receipt.js';
276
282
  import RefreshCcw from './components/icon/icons/RefreshCcw.js';
277
283
  import RefreshCw from './components/icon/icons/RefreshCw.js';
278
284
  import Repeat from './components/icon/icons/Repeat.js';
@@ -298,6 +304,7 @@ import ShoppingBag from './components/icon/icons/ShoppingBag.js';
298
304
  import ShoppingCart from './components/icon/icons/ShoppingCart.js';
299
305
  import Shuffle from './components/icon/icons/Shuffle.js';
300
306
  import Sidebar from './components/icon/icons/Sidebar.js';
307
+ import Signature from './components/icon/icons/Signature.js';
301
308
  import SkipBack from './components/icon/icons/SkipBack.js';
302
309
  import SkipForward from './components/icon/icons/SkipForward.js';
303
310
  import Slack from './components/icon/icons/Slack.js';
@@ -308,6 +315,7 @@ import Smile from './components/icon/icons/Smile.js';
308
315
  import Sofa from './components/icon/icons/Sofa.js';
309
316
  import Speaker from './components/icon/icons/Speaker.js';
310
317
  import Square from './components/icon/icons/Square.js';
318
+ import Stamp from './components/icon/icons/Stamp.js';
311
319
  import StarFilledIcon from './components/icon/icons/StarFilled.js';
312
320
  import StarHalf from './components/icon/icons/StarHalf.js';
313
321
  import Star from './components/icon/icons/Star.js';
@@ -329,6 +337,7 @@ import ToggleRight from './components/icon/icons/ToggleRight.js';
329
337
  import Tool from './components/icon/icons/Tool.js';
330
338
  import ToothFillingCracked from './components/icon/icons/ToothFillingCracked.js';
331
339
  import TrailerParts from './components/icon/icons/TrailerParts.js';
340
+ import Translation from './components/icon/icons/Translation.js';
332
341
  import Trash2Icon from './components/icon/icons/Trash2.js';
333
342
  import Trash from './components/icon/icons/Trash.js';
334
343
  import Trello from './components/icon/icons/Trello.js';
@@ -437,6 +446,7 @@ var icons = /*#__PURE__*/Object.freeze({
437
446
  BlogIcon: Blog,
438
447
  BluetoothIcon: Bluetooth,
439
448
  BoldIcon: Bold,
449
+ BoneIcon: Bone,
440
450
  BookOpenIcon: BookOpen,
441
451
  BookIcon: Book,
442
452
  BookmarkIcon: Bookmark,
@@ -452,6 +462,7 @@ var icons = /*#__PURE__*/Object.freeze({
452
462
  CameraOffIcon: CameraOff,
453
463
  CameraIcon: Camera,
454
464
  CarTrafficIcon: CarTraffic,
465
+ CarIcon: Car,
455
466
  CastIcon: Cast,
456
467
  ChainBikeBrokenIcon: ChainBikeBroken,
457
468
  CheckCircleIcon: CheckCircle,
@@ -541,6 +552,7 @@ var icons = /*#__PURE__*/Object.freeze({
541
552
  FilePlusIcon: FilePlus,
542
553
  FileTextIcon: FileText,
543
554
  FileIcon: FileIcon,
555
+ FilesIcon: Files,
544
556
  FilmIcon: Film,
545
557
  FilterIcon: Filter,
546
558
  FireIcon: Fire,
@@ -569,6 +581,7 @@ var icons = /*#__PURE__*/Object.freeze({
569
581
  HexagonIcon: Hexagon,
570
582
  HomeIcon: Home,
571
583
  HospitalBuildingIcon: HospitalBuilding,
584
+ IdIcon: Id,
572
585
  ImagePictureIcon: ImagePicture,
573
586
  InboxIcon: Inbox,
574
587
  InfoFilledIcon: InfoFilled,
@@ -654,10 +667,12 @@ var icons = /*#__PURE__*/Object.freeze({
654
667
  PregnacyIcon: Pregnacy,
655
668
  PrinterIcon: Printer,
656
669
  ProgressIcon: Progress,
670
+ ProhibitIcon: Prohibit,
657
671
  QrCodeIcon: QrCode,
658
672
  QuestionmarkHelpCircleIcon: QuestionmarkHelpCircle,
659
673
  QuotationMarksIcon: QuotationMarks,
660
674
  RadioIcon: Radio,
675
+ ReceiptIcon: Receipt,
661
676
  RefreshCcwIcon: RefreshCcw,
662
677
  RefreshCwIcon: RefreshCw,
663
678
  RepeatIcon: Repeat,
@@ -683,6 +698,7 @@ var icons = /*#__PURE__*/Object.freeze({
683
698
  ShoppingCartIcon: ShoppingCart,
684
699
  ShuffleIcon: Shuffle,
685
700
  SidebarIcon: Sidebar,
701
+ SignatureIcon: Signature,
686
702
  SkipBackIcon: SkipBack,
687
703
  SkipForwardIcon: SkipForward,
688
704
  SlackIcon: Slack,
@@ -693,6 +709,7 @@ var icons = /*#__PURE__*/Object.freeze({
693
709
  SofaIcon: Sofa,
694
710
  SpeakerIcon: Speaker,
695
711
  SquareIcon: Square,
712
+ StampIcon: Stamp,
696
713
  StarFilledIcon: StarFilledIcon,
697
714
  StarHalfIcon: StarHalf,
698
715
  StarIcon: Star,
@@ -714,6 +731,7 @@ var icons = /*#__PURE__*/Object.freeze({
714
731
  ToolIcon: Tool,
715
732
  ToothFillingCrackedIcon: ToothFillingCracked,
716
733
  TrailerPartsIcon: TrailerParts,
734
+ TranslationIcon: Translation,
717
735
  Trash2Icon: Trash2Icon,
718
736
  TrashIcon: Trash,
719
737
  TrelloIcon: Trello,
@@ -768,4 +786,4 @@ var icons = /*#__PURE__*/Object.freeze({
768
786
  });
769
787
 
770
788
  export { icons as i };
771
- //# sourceMappingURL=index-2faa4731.js.map
789
+ //# sourceMappingURL=index-608a56e3.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index-2faa4731.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index-608a56e3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/dist/esm/index.js CHANGED
@@ -87,6 +87,7 @@ export { default as BikeBicycleIcon } from './components/icon/icons/BikeBicycle.
87
87
  export { default as BlogIcon } from './components/icon/icons/Blog.js';
88
88
  export { default as BluetoothIcon } from './components/icon/icons/Bluetooth.js';
89
89
  export { default as BoldIcon } from './components/icon/icons/Bold.js';
90
+ export { default as BoneIcon } from './components/icon/icons/Bone.js';
90
91
  export { default as BookOpenIcon } from './components/icon/icons/BookOpen.js';
91
92
  export { default as BookIcon } from './components/icon/icons/Book.js';
92
93
  export { default as BookmarkIcon } from './components/icon/icons/Bookmark.js';
@@ -102,6 +103,7 @@ export { default as CalendarIcon } from './components/icon/icons/Calendar.js';
102
103
  export { default as CameraOffIcon } from './components/icon/icons/CameraOff.js';
103
104
  export { default as CameraIcon } from './components/icon/icons/Camera.js';
104
105
  export { default as CarTrafficIcon } from './components/icon/icons/CarTraffic.js';
106
+ export { default as CarIcon } from './components/icon/icons/Car.js';
105
107
  export { default as CastIcon } from './components/icon/icons/Cast.js';
106
108
  export { default as ChainBikeBrokenIcon } from './components/icon/icons/ChainBikeBroken.js';
107
109
  export { default as CheckCircleIcon } from './components/icon/icons/CheckCircle.js';
@@ -191,6 +193,7 @@ export { default as FileMinusIcon } from './components/icon/icons/FileMinus.js';
191
193
  export { default as FilePlusIcon } from './components/icon/icons/FilePlus.js';
192
194
  export { default as FileTextIcon } from './components/icon/icons/FileText.js';
193
195
  export { default as FileIcon } from './components/icon/icons/File.js';
196
+ export { default as FilesIcon } from './components/icon/icons/Files.js';
194
197
  export { default as FilmIcon } from './components/icon/icons/Film.js';
195
198
  export { default as FilterIcon } from './components/icon/icons/Filter.js';
196
199
  export { default as FireIcon } from './components/icon/icons/Fire.js';
@@ -219,6 +222,7 @@ export { default as HeartIcon } from './components/icon/icons/Heart.js';
219
222
  export { default as HexagonIcon } from './components/icon/icons/Hexagon.js';
220
223
  export { default as HomeIcon } from './components/icon/icons/Home.js';
221
224
  export { default as HospitalBuildingIcon } from './components/icon/icons/HospitalBuilding.js';
225
+ export { default as IdIcon } from './components/icon/icons/Id.js';
222
226
  export { default as ImagePictureIcon } from './components/icon/icons/ImagePicture.js';
223
227
  export { default as InboxIcon } from './components/icon/icons/Inbox.js';
224
228
  export { default as InfoFilledIcon } from './components/icon/icons/InfoFilled.js';
@@ -304,10 +308,12 @@ export { default as PowerIcon } from './components/icon/icons/Power.js';
304
308
  export { default as PregnacyIcon } from './components/icon/icons/Pregnacy.js';
305
309
  export { default as PrinterIcon } from './components/icon/icons/Printer.js';
306
310
  export { default as ProgressIcon } from './components/icon/icons/Progress.js';
311
+ export { default as ProhibitIcon } from './components/icon/icons/Prohibit.js';
307
312
  export { default as QrCodeIcon } from './components/icon/icons/QrCode.js';
308
313
  export { default as QuestionmarkHelpCircleIcon } from './components/icon/icons/QuestionmarkHelpCircle.js';
309
314
  export { default as QuotationMarksIcon } from './components/icon/icons/QuotationMarks.js';
310
315
  export { default as RadioIcon } from './components/icon/icons/Radio.js';
316
+ export { default as ReceiptIcon } from './components/icon/icons/Receipt.js';
311
317
  export { default as RefreshCcwIcon } from './components/icon/icons/RefreshCcw.js';
312
318
  export { default as RefreshCwIcon } from './components/icon/icons/RefreshCw.js';
313
319
  export { default as RepeatIcon } from './components/icon/icons/Repeat.js';
@@ -333,6 +339,7 @@ export { default as ShoppingBagIcon } from './components/icon/icons/ShoppingBag.
333
339
  export { default as ShoppingCartIcon } from './components/icon/icons/ShoppingCart.js';
334
340
  export { default as ShuffleIcon } from './components/icon/icons/Shuffle.js';
335
341
  export { default as SidebarIcon } from './components/icon/icons/Sidebar.js';
342
+ export { default as SignatureIcon } from './components/icon/icons/Signature.js';
336
343
  export { default as SkipBackIcon } from './components/icon/icons/SkipBack.js';
337
344
  export { default as SkipForwardIcon } from './components/icon/icons/SkipForward.js';
338
345
  export { default as SlackIcon } from './components/icon/icons/Slack.js';
@@ -343,6 +350,7 @@ export { default as SmileIcon } from './components/icon/icons/Smile.js';
343
350
  export { default as SofaIcon } from './components/icon/icons/Sofa.js';
344
351
  export { default as SpeakerIcon } from './components/icon/icons/Speaker.js';
345
352
  export { default as SquareIcon } from './components/icon/icons/Square.js';
353
+ export { default as StampIcon } from './components/icon/icons/Stamp.js';
346
354
  export { default as StarFilledIcon } from './components/icon/icons/StarFilled.js';
347
355
  export { default as StarHalfIcon } from './components/icon/icons/StarHalf.js';
348
356
  export { default as StarIcon } from './components/icon/icons/Star.js';
@@ -364,6 +372,7 @@ export { default as ToggleRightIcon } from './components/icon/icons/ToggleRight.
364
372
  export { default as ToolIcon } from './components/icon/icons/Tool.js';
365
373
  export { default as ToothFillingCrackedIcon } from './components/icon/icons/ToothFillingCracked.js';
366
374
  export { default as TrailerPartsIcon } from './components/icon/icons/TrailerParts.js';
375
+ export { default as TranslationIcon } from './components/icon/icons/Translation.js';
367
376
  export { default as Trash2Icon } from './components/icon/icons/Trash2.js';
368
377
  export { default as TrashIcon } from './components/icon/icons/Trash.js';
369
378
  export { default as TrelloIcon } from './components/icon/icons/Trello.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../../src/lib/hooks/useEscapeKey.ts","../../../src/lib/hooks/useFocusWithin.ts"],"sourcesContent":["import { useCallback, useEffect } from 'react';\n\nexport const useEscapeKey = (callback: () => void) => {\n const handleOnEscape = useCallback(\n (e: KeyboardEvent) => {\n if (e.key === 'Escape') {\n callback();\n }\n },\n [callback]\n );\n\n useEffect(() => {\n window.addEventListener('keydown', handleOnEscape);\n\n return () => window.removeEventListener('keydown', handleOnEscape);\n }, [handleOnEscape]);\n};\n","import { useEffect } from 'react';\n\nexport const useFocusWithin = (\n ref: HTMLElement | null,\n callback: (isFocusWithin: boolean) => void\n) => {\n useEffect(() => {\n const handleOnFocusIn = () => {\n if (!ref) {\n return;\n }\n\n const hasFocus = ref?.contains(document.activeElement);\n\n callback(Boolean(hasFocus));\n };\n\n document.addEventListener('focusin', handleOnFocusIn);\n\n return () => document?.removeEventListener('focusin', handleOnFocusIn);\n }, [callback, ref]);\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEa,YAAY,GAAG,UAAC,QAAoB;IAC/C,IAAM,cAAc,GAAG,WAAW,CAChC,UAAC,CAAgB;QACf,IAAI,CAAC,CAAC,GAAG,KAAK,QAAQ,EAAE;YACtB,QAAQ,EAAE,CAAC;SACZ;KACF,EACD,CAAC,QAAQ,CAAC,CACX,CAAC;IAEF,SAAS,CAAC;QACR,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,cAAc,CAAC,CAAC;QAEnD,OAAO,cAAM,OAAA,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,cAAc,CAAC,GAAA,CAAC;KACpE,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC;AACvB;;ICfa,cAAc,GAAG,UAC5B,GAAuB,EACvB,QAA0C;IAE1C,SAAS,CAAC;QACR,IAAM,eAAe,GAAG;YACtB,IAAI,CAAC,GAAG,EAAE;gBACR,OAAO;aACR;YAED,IAAM,QAAQ,GAAG,GAAG,aAAH,GAAG,uBAAH,GAAG,CAAE,QAAQ,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;YAEvD,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;SAC7B,CAAC;QAEF,QAAQ,CAAC,gBAAgB,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC;QAEtD,OAAO,cAAM,OAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,mBAAmB,CAAC,SAAS,EAAE,eAAe,CAAC,GAAA,CAAC;KACxE,EAAE,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC;AACtB;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../../../src/lib/hooks/useEscapeKey.ts","../../../src/lib/hooks/useFocusWithin.ts"],"sourcesContent":["import { useCallback, useEffect } from 'react';\n\nexport const useEscapeKey = (callback: () => void) => {\n const handleOnEscape = useCallback(\n (e: KeyboardEvent) => {\n if (e.key === 'Escape') {\n callback();\n }\n },\n [callback]\n );\n\n useEffect(() => {\n window.addEventListener('keydown', handleOnEscape);\n\n return () => window.removeEventListener('keydown', handleOnEscape);\n }, [handleOnEscape]);\n};\n","import { useEffect } from 'react';\n\nexport const useFocusWithin = (\n ref: HTMLElement | null,\n callback: (isFocusWithin: boolean) => void\n) => {\n useEffect(() => {\n const handleOnFocusIn = () => {\n if (!ref) {\n return;\n }\n\n const hasFocus = ref?.contains(document.activeElement);\n\n callback(Boolean(hasFocus));\n };\n\n document.addEventListener('focusin', handleOnFocusIn);\n\n return () => document?.removeEventListener('focusin', handleOnFocusIn);\n }, [callback, ref]);\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEa,YAAY,GAAG,UAAC,QAAoB;IAC/C,IAAM,cAAc,GAAG,WAAW,CAChC,UAAC,CAAgB;QACf,IAAI,CAAC,CAAC,GAAG,KAAK,QAAQ,EAAE;YACtB,QAAQ,EAAE,CAAC;SACZ;KACF,EACD,CAAC,QAAQ,CAAC,CACX,CAAC;IAEF,SAAS,CAAC;QACR,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,cAAc,CAAC,CAAC;QAEnD,OAAO,cAAM,OAAA,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,cAAc,CAAC,GAAA,CAAC;KACpE,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC;AACvB;;ICfa,cAAc,GAAG,UAC5B,GAAuB,EACvB,QAA0C;IAE1C,SAAS,CAAC;QACR,IAAM,eAAe,GAAG;YACtB,IAAI,CAAC,GAAG,EAAE;gBACR,OAAO;aACR;YAED,IAAM,QAAQ,GAAG,GAAG,aAAH,GAAG,uBAAH,GAAG,CAAE,QAAQ,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;YAEvD,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;SAC7B,CAAC;QAEF,QAAQ,CAAC,gBAAgB,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC;QAEtD,OAAO,cAAM,OAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,mBAAmB,CAAC,SAAS,EAAE,eAAe,CAAC,GAAA,CAAC;KACxE,EAAE,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC;AACtB;;;;"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type { IconWrapperProps } from '../IconWrapper';
3
+ declare const _default: (props: IconWrapperProps) => import("react").FunctionComponentElement<IconWrapperProps>;
4
+ export default _default;
@@ -52,6 +52,7 @@ export { default as BikeBicycleIcon } from './BikeBicycle';
52
52
  export { default as BlogIcon } from './Blog';
53
53
  export { default as BluetoothIcon } from './Bluetooth';
54
54
  export { default as BoldIcon } from './Bold';
55
+ export { default as BoneIcon } from './Bone';
55
56
  export { default as BookOpenIcon } from './BookOpen';
56
57
  export { default as BookIcon } from './Book';
57
58
  export { default as BookmarkIcon } from './Bookmark';
@@ -67,6 +68,7 @@ export { default as CalendarIcon } from './Calendar';
67
68
  export { default as CameraOffIcon } from './CameraOff';
68
69
  export { default as CameraIcon } from './Camera';
69
70
  export { default as CarTrafficIcon } from './CarTraffic';
71
+ export { default as CarIcon } from './Car';
70
72
  export { default as CastIcon } from './Cast';
71
73
  export { default as ChainBikeBrokenIcon } from './ChainBikeBroken';
72
74
  export { default as CheckCircleIcon } from './CheckCircle';
@@ -156,6 +158,7 @@ export { default as FileMinusIcon } from './FileMinus';
156
158
  export { default as FilePlusIcon } from './FilePlus';
157
159
  export { default as FileTextIcon } from './FileText';
158
160
  export { default as FileIcon } from './File';
161
+ export { default as FilesIcon } from './Files';
159
162
  export { default as FilmIcon } from './Film';
160
163
  export { default as FilterIcon } from './Filter';
161
164
  export { default as FireIcon } from './Fire';
@@ -184,6 +187,7 @@ export { default as HeartIcon } from './Heart';
184
187
  export { default as HexagonIcon } from './Hexagon';
185
188
  export { default as HomeIcon } from './Home';
186
189
  export { default as HospitalBuildingIcon } from './HospitalBuilding';
190
+ export { default as IdIcon } from './Id';
187
191
  export { default as ImagePictureIcon } from './ImagePicture';
188
192
  export { default as InboxIcon } from './Inbox';
189
193
  export { default as InfoFilledIcon } from './InfoFilled';
@@ -269,10 +273,12 @@ export { default as PowerIcon } from './Power';
269
273
  export { default as PregnacyIcon } from './Pregnacy';
270
274
  export { default as PrinterIcon } from './Printer';
271
275
  export { default as ProgressIcon } from './Progress';
276
+ export { default as ProhibitIcon } from './Prohibit';
272
277
  export { default as QrCodeIcon } from './QrCode';
273
278
  export { default as QuestionmarkHelpCircleIcon } from './QuestionmarkHelpCircle';
274
279
  export { default as QuotationMarksIcon } from './QuotationMarks';
275
280
  export { default as RadioIcon } from './Radio';
281
+ export { default as ReceiptIcon } from './Receipt';
276
282
  export { default as RefreshCcwIcon } from './RefreshCcw';
277
283
  export { default as RefreshCwIcon } from './RefreshCw';
278
284
  export { default as RepeatIcon } from './Repeat';
@@ -298,6 +304,7 @@ export { default as ShoppingBagIcon } from './ShoppingBag';
298
304
  export { default as ShoppingCartIcon } from './ShoppingCart';
299
305
  export { default as ShuffleIcon } from './Shuffle';
300
306
  export { default as SidebarIcon } from './Sidebar';
307
+ export { default as SignatureIcon } from './Signature';
301
308
  export { default as SkipBackIcon } from './SkipBack';
302
309
  export { default as SkipForwardIcon } from './SkipForward';
303
310
  export { default as SlackIcon } from './Slack';
@@ -308,6 +315,7 @@ export { default as SmileIcon } from './Smile';
308
315
  export { default as SofaIcon } from './Sofa';
309
316
  export { default as SpeakerIcon } from './Speaker';
310
317
  export { default as SquareIcon } from './Square';
318
+ export { default as StampIcon } from './Stamp';
311
319
  export { default as StarFilledIcon } from './StarFilled';
312
320
  export { default as StarHalfIcon } from './StarHalf';
313
321
  export { default as StarIcon } from './Star';
@@ -329,6 +337,7 @@ export { default as ToggleRightIcon } from './ToggleRight';
329
337
  export { default as ToolIcon } from './Tool';
330
338
  export { default as ToothFillingCrackedIcon } from './ToothFillingCracked';
331
339
  export { default as TrailerPartsIcon } from './TrailerParts';
340
+ export { default as TranslationIcon } from './Translation';
332
341
  export { default as Trash2Icon } from './Trash2';
333
342
  export { default as TrashIcon } from './Trash';
334
343
  export { default as TrelloIcon } from './Trello';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@popsure/dirty-swan",
3
- "version": "0.58.4",
3
+ "version": "0.58.5",
4
4
  "author": "Vincent Audoire <vincent@getpopsure.com>",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -0,0 +1,10 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44154_15395)">
3
+ <path d="M4.39998 15.6001C4.05119 15.6545 3.69443 15.6236 3.36014 15.5102C3.02586 15.3968 2.72399 15.2042 2.48031 14.9488C2.23663 14.6934 2.05838 14.3828 1.96077 14.0435C1.86317 13.7043 1.84911 13.3465 1.9198 13.0006C1.99049 12.6548 2.14383 12.3312 2.36672 12.0574C2.58961 11.7837 2.87544 11.568 3.19979 11.4287C3.52415 11.2894 3.87739 11.2307 4.22937 11.2575C4.58135 11.2844 4.9216 11.396 5.22107 11.5829C5.34121 11.6604 5.4843 11.6944 5.62648 11.6792C5.76865 11.664 5.90131 11.6005 6.00232 11.4993L11.5008 6.00086C11.602 5.89984 11.6655 5.76719 11.6807 5.62501C11.6959 5.48284 11.6619 5.33975 11.5844 5.21961C11.3975 4.92013 11.2858 4.57988 11.259 4.22791C11.2321 3.87593 11.2909 3.52268 11.4302 3.19833C11.5695 2.87397 11.7852 2.58815 12.0589 2.36525C12.3326 2.14236 12.6562 1.98902 13.0021 1.91833C13.3479 1.84764 13.7058 1.8617 14.045 1.95931C14.3842 2.05691 14.6948 2.23517 14.9502 2.47885C15.2056 2.72253 15.3982 3.0244 15.5117 3.35868C15.6251 3.69296 15.6559 4.04973 15.6015 4.39851C15.9503 4.34413 16.3071 4.37497 16.6414 4.48839C16.9757 4.60181 17.2775 4.79444 17.5212 5.04984C17.7649 5.30524 17.9431 5.61581 18.0407 5.95505C18.1384 6.29429 18.1524 6.65211 18.0817 6.99796C18.011 7.34381 17.8577 7.66741 17.6348 7.94114C17.4119 8.21487 17.1261 8.43059 16.8017 8.56989C16.4774 8.70918 16.1241 8.76791 15.7722 8.74107C15.4202 8.71422 15.0799 8.60258 14.7804 8.4157C14.6603 8.33817 14.5172 8.30417 14.375 8.31938C14.2329 8.3346 14.1002 8.3981 13.9992 8.4993L8.50076 13.9977C8.39956 14.0987 8.33606 14.2314 8.32085 14.3736C8.30564 14.5158 8.33963 14.6588 8.41717 14.779C8.60405 15.0785 8.71568 15.4187 8.74253 15.7707C8.76938 16.1227 8.71065 16.4759 8.57135 16.8003C8.43206 17.1246 8.21634 17.4104 7.94261 17.6333C7.66888 17.8562 7.34527 18.0096 6.99942 18.0803C6.65357 18.1509 6.29575 18.1369 5.95652 18.0393C5.61728 17.9417 5.3067 17.7634 5.0513 17.5197C4.7959 17.2761 4.60327 16.9742 4.48985 16.6399C4.37643 16.3056 4.3456 15.9489 4.39998 15.6001Z" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_44154_15395">
7
+ <rect width="20" height="20" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44154_15397)">
3
+ <path d="M1.25 8.75H18.75" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M17.5 13.75V15.625C17.5 15.7908 17.4342 15.9497 17.3169 16.0669C17.1997 16.1842 17.0408 16.25 16.875 16.25H15C14.8342 16.25 14.6753 16.1842 14.5581 16.0669C14.4408 15.9497 14.375 15.7908 14.375 15.625V13.75" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M5.625 13.75V15.625C5.625 15.7908 5.55915 15.9497 5.44194 16.0669C5.32473 16.1842 5.16576 16.25 5 16.25H3.125C2.95924 16.25 2.80027 16.1842 2.68306 16.0669C2.56585 15.9497 2.5 15.7908 2.5 15.625V13.75" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M5 11.25H6.25" stroke="#91919C" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M13.75 11.25H15" stroke="#91919C" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M17.5 8.75L15.1648 3.49609C15.1157 3.38564 15.0356 3.29179 14.9343 3.22592C14.8329 3.16006 14.7146 3.125 14.5938 3.125H5.40625C5.28537 3.125 5.16708 3.16006 5.06572 3.22592C4.96435 3.29179 4.88426 3.38564 4.83516 3.49609L2.5 8.75V13.75H17.5V8.75Z" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </g>
10
+ <defs>
11
+ <clipPath id="clip0_44154_15397">
12
+ <rect width="20" height="20" fill="white"/>
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44145_9383)">
3
+ <path d="M13.125 17.5H4.375C4.20924 17.5 4.05027 17.4342 3.93306 17.3169C3.81585 17.1997 3.75 17.0408 3.75 16.875V5.625C3.75 5.45924 3.81585 5.30027 3.93306 5.18306C4.05027 5.06585 4.20924 5 4.375 5H10.625L13.75 8.125V16.875C13.75 17.0408 13.6842 17.1997 13.5669 17.3169C13.4497 17.4342 13.2908 17.5 13.125 17.5Z" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M6.25 5V3.125C6.25 2.95924 6.31585 2.80027 6.43306 2.68306C6.55027 2.56585 6.70924 2.5 6.875 2.5H13.125L16.25 5.625V14.375C16.25 14.5408 16.1842 14.6997 16.0669 14.8169C15.9497 14.9342 15.7908 15 15.625 15H13.75" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.875 11.875H10.625" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M6.875 14.375H10.625" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_44145_9383">
10
+ <rect width="20" height="20" fill="white"/>
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44154_15398)">
3
+ <path d="M11.875 8.75H15" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M11.875 11.25H15" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M16.875 3.75H3.125C2.77982 3.75 2.5 4.02982 2.5 4.375V15.625C2.5 15.9702 2.77982 16.25 3.125 16.25H16.875C17.2202 16.25 17.5 15.9702 17.5 15.625V4.375C17.5 4.02982 17.2202 3.75 16.875 3.75Z" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M7.5 11.25C8.53553 11.25 9.375 10.4105 9.375 9.375C9.375 8.33947 8.53553 7.5 7.5 7.5C6.46447 7.5 5.625 8.33947 5.625 9.375C5.625 10.4105 6.46447 11.25 7.5 11.25Z" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M5 13.125C5.27734 12.0469 6.33516 11.25 7.5 11.25C8.66484 11.25 9.72344 12.0461 10 13.125" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_44154_15398">
11
+ <rect width="20" height="20" fill="white"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44145_9417)">
3
+ <path d="M15.303 15.303L4.69678 4.69678" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="#91919C" stroke-width="1.8" stroke-miterlimit="10"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_44145_9417">
8
+ <rect width="20" height="20" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44145_9390)">
3
+ <path d="M6.25 8.125H13.75" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M6.25 10.625H13.75" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M2.5 16.25V4.375C2.5 4.20924 2.56585 4.05027 2.68306 3.93306C2.80027 3.81585 2.95924 3.75 3.125 3.75H16.875C17.0408 3.75 17.1997 3.81585 17.3169 3.93306C17.4342 4.05027 17.5 4.20924 17.5 4.375V16.25L15 15L12.5 16.25L10 15L7.5 16.25L5 15L2.5 16.25Z" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_44145_9390">
9
+ <rect width="20" height="20" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44154_15396)">
3
+ <path d="M1.875 14H18.125" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M1.875 17.5C1.875 17.5 10.9 2.5 6.08672 2.5C2.50547 2.5 2.46719 17.5867 10 8.13984C10 8.13984 10.6336 11.2211 12.1273 11.25C12.7305 11.2617 13.475 10.757 14.375 9.375C14.375 9.375 14.375 11.25 18.125 11.25" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_44154_15396">
8
+ <rect width="20" height="20" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44145_9396)">
3
+ <path d="M3.125 17.5H16.875" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8.93118 10.625L7.54212 4.14062C7.48393 3.86746 7.48751 3.58474 7.55258 3.31313C7.61766 3.04153 7.74259 2.78788 7.91824 2.57074C8.0939 2.3536 8.31585 2.17845 8.56788 2.05808C8.8199 1.9377 9.09564 1.87516 9.37493 1.875H10.6249C10.9043 1.87504 11.1801 1.9375 11.4322 2.05783C11.6844 2.17815 11.9064 2.35329 12.0822 2.57044C12.2579 2.7876 12.3829 3.04128 12.448 3.31294C12.5131 3.58461 12.5167 3.86739 12.4585 4.14062L11.0695 10.625" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M16.25 10.625H3.75C3.40482 10.625 3.125 10.9048 3.125 11.25V14.375C3.125 14.7202 3.40482 15 3.75 15H16.25C16.5952 15 16.875 14.7202 16.875 14.375V11.25C16.875 10.9048 16.5952 10.625 16.25 10.625Z" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_44145_9396">
9
+ <rect width="20" height="20" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_44145_9287)">
3
+ <ellipse cx="11.2498" cy="8.75008" rx="7.08333" ry="7.08333" stroke="#91919C" stroke-width="1.8"/>
4
+ <path d="M11.6668 1.66675C8.85912 3.90414 7.82514 7.55498 8.56488 10.8334" stroke="#91919C" stroke-width="1.8" stroke-linecap="round"/>
5
+ <path d="M10.8332 1.66675C15.2776 5.20841 15.2776 12.2917 10.8332 15.8334" stroke="#91919C" stroke-width="1.8" stroke-linecap="round"/>
6
+ <path d="M5 6.66675C7.77778 6.66675 16.4107 6.66675 17.5 6.66675" stroke="#91919C" stroke-width="1.8" stroke-linecap="round"/>
7
+ <path d="M5 10.8333C7.77778 10.8333 16.4107 10.8333 17.5 10.8333" stroke="#91919C" stroke-width="1.8" stroke-linecap="round"/>
8
+ <path d="M9.99984 16.1458C9.99984 16.422 9.89145 16.687 9.69851 16.8823C9.50557 17.0777 9.24389 17.1874 8.97103 17.1874H3.72412L1.6665 18.3333V11.8749C1.6665 11.5987 1.7749 11.3337 1.96783 11.1383C2.16077 10.943 2.42245 10.8333 2.69531 10.8333H8.97103C9.24389 10.8333 9.50557 10.943 9.69851 11.1383C9.89145 11.3337 9.99984 11.5987 9.99984 11.8749V16.1458Z" fill="white" stroke="#91919C" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </g>
10
+ <defs>
11
+ <clipPath id="clip0_44145_9287">
12
+ <rect width="20" height="20" fill="white"/>
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
@@ -0,0 +1,23 @@
1
+ /* Generated file. Do not modify. */
2
+ import { createElement } from 'react';
3
+ import { IconWrapper } from '../IconWrapper';
4
+ import type { IconWrapperProps } from '../IconWrapper';
5
+ export default (props: IconWrapperProps) =>
6
+ createElement(
7
+ IconWrapper,
8
+ props,
9
+ <g clipPath="url(#bone_svg__a)">
10
+ <path
11
+ stroke="currentColor"
12
+ strokeLinecap="round"
13
+ strokeLinejoin="round"
14
+ strokeWidth={1.8}
15
+ d="M4.4 15.6a2.188 2.188 0 1 1 .821-4.017.625.625 0 0 0 .781-.084l5.499-5.498a.625.625 0 0 0 .083-.781 2.187 2.187 0 1 1 4.018-.821 2.188 2.188 0 1 1-.822 4.017.625.625 0 0 0-.78.083l-5.5 5.499a.625.625 0 0 0-.083.781A2.188 2.188 0 1 1 4.4 15.6Z"
16
+ />
17
+ </g>,
18
+ <defs>
19
+ <clipPath id="bone_svg__a">
20
+ <path fill="#fff" d="M0 0h20v20H0z" />
21
+ </clipPath>
22
+ </defs>
23
+ );
@@ -0,0 +1,30 @@
1
+ /* Generated file. Do not modify. */
2
+ import { createElement } from 'react';
3
+ import { IconWrapper } from '../IconWrapper';
4
+ import type { IconWrapperProps } from '../IconWrapper';
5
+ export default (props: IconWrapperProps) =>
6
+ createElement(
7
+ IconWrapper,
8
+ props,
9
+ <g
10
+ stroke="currentColor"
11
+ strokeLinecap="round"
12
+ strokeLinejoin="round"
13
+ clipPath="url(#car_svg__a)"
14
+ >
15
+ <path
16
+ strokeWidth={1.8}
17
+ d="M1.25 8.75h17.5M17.5 13.75v1.875a.624.624 0 0 1-.625.625H15a.624.624 0 0 1-.625-.625V13.75M5.625 13.75v1.875A.625.625 0 0 1 5 16.25H3.125a.625.625 0 0 1-.625-.625V13.75"
18
+ />
19
+ <path strokeWidth={1.3} d="M5 11.25h1.25M13.75 11.25H15" />
20
+ <path
21
+ strokeWidth={1.8}
22
+ d="m17.5 8.75-2.335-5.254a.625.625 0 0 0-.571-.371H5.406a.625.625 0 0 0-.57.371L2.5 8.75v5h15v-5Z"
23
+ />
24
+ </g>,
25
+ <defs>
26
+ <clipPath id="car_svg__a">
27
+ <path fill="#fff" d="M0 0h20v20H0z" />
28
+ </clipPath>
29
+ </defs>
30
+ );
@@ -0,0 +1,24 @@
1
+ /* Generated file. Do not modify. */
2
+ import { createElement } from 'react';
3
+ import { IconWrapper } from '../IconWrapper';
4
+ import type { IconWrapperProps } from '../IconWrapper';
5
+ export default (props: IconWrapperProps) =>
6
+ createElement(
7
+ IconWrapper,
8
+ props,
9
+ <g
10
+ stroke="currentColor"
11
+ strokeLinecap="round"
12
+ strokeLinejoin="round"
13
+ strokeWidth={1.8}
14
+ clipPath="url(#files_svg__a)"
15
+ >
16
+ <path d="M13.125 17.5h-8.75a.625.625 0 0 1-.625-.625V5.625A.625.625 0 0 1 4.375 5h6.25l3.125 3.125v8.75a.624.624 0 0 1-.625.625Z" />
17
+ <path d="M6.25 5V3.125a.625.625 0 0 1 .625-.625h6.25l3.125 3.125v8.75a.624.624 0 0 1-.625.625H13.75M6.875 11.875h3.75M6.875 14.375h3.75" />
18
+ </g>,
19
+ <defs>
20
+ <clipPath id="files_svg__a">
21
+ <path fill="#fff" d="M0 0h20v20H0z" />
22
+ </clipPath>
23
+ </defs>
24
+ );
@@ -0,0 +1,24 @@
1
+ /* Generated file. Do not modify. */
2
+ import { createElement } from 'react';
3
+ import { IconWrapper } from '../IconWrapper';
4
+ import type { IconWrapperProps } from '../IconWrapper';
5
+ export default (props: IconWrapperProps) =>
6
+ createElement(
7
+ IconWrapper,
8
+ props,
9
+ <g
10
+ stroke="currentColor"
11
+ strokeLinecap="round"
12
+ strokeLinejoin="round"
13
+ strokeWidth={1.8}
14
+ clipPath="url(#id_svg__a)"
15
+ >
16
+ <path d="M11.875 8.75H15M11.875 11.25H15M16.875 3.75H3.125a.625.625 0 0 0-.625.625v11.25c0 .345.28.625.625.625h13.75c.345 0 .625-.28.625-.625V4.375a.625.625 0 0 0-.625-.625Z" />
17
+ <path d="M7.5 11.25a1.875 1.875 0 1 0 0-3.75 1.875 1.875 0 0 0 0 3.75ZM5 13.125c.277-1.078 1.335-1.875 2.5-1.875s2.223.796 2.5 1.875" />
18
+ </g>,
19
+ <defs>
20
+ <clipPath id="id_svg__a">
21
+ <path fill="#fff" d="M0 0h20v20H0z" />
22
+ </clipPath>
23
+ </defs>
24
+ );