@popsure/dirty-swan 0.58.4 → 0.58.6

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-d2e06251.js} +19 -1
  36. package/dist/esm/{index-2faa4731.js.map → index-d2e06251.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 +8 -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 +22 -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 +36 -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-d2e06251.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index-2faa4731.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index-d2e06251.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.6",
4
4
  "author": "Vincent Audoire <vincent@getpopsure.com>",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1257_33)">
3
+ <path d="M5.28012 18.7203C4.86158 18.7855 4.43346 18.7485 4.03232 18.6124C3.63118 18.4763 3.26894 18.2452 2.97652 17.9387C2.6841 17.6322 2.4702 17.2595 2.35307 16.8524C2.23595 16.4454 2.21908 16.016 2.30391 15.601C2.38873 15.1859 2.57274 14.7976 2.84021 14.4691C3.10768 14.1407 3.45067 13.8818 3.8399 13.7146C4.22912 13.5475 4.65302 13.477 5.07539 13.5092C5.49776 13.5414 5.90607 13.6754 6.26543 13.8997C6.4096 13.9927 6.58131 14.0335 6.75192 14.0152C6.92253 13.997 7.08172 13.9208 7.20293 13.7994L13.8011 7.20122C13.9225 7.08001 13.9987 6.92082 14.017 6.75021C14.0352 6.5796 13.9944 6.40789 13.9014 6.26372C13.6771 5.90436 13.5432 5.49606 13.5109 5.07368C13.4787 4.65131 13.5492 4.22741 13.7163 3.83819C13.8835 3.44896 14.1424 3.10597 14.4708 2.8385C14.7993 2.57103 15.1876 2.38702 15.6027 2.3022C16.0177 2.21737 16.4471 2.23424 16.8542 2.35136C17.2612 2.46849 17.6339 2.68239 17.9404 2.97481C18.2469 3.26723 18.478 3.62947 18.6141 4.03061C18.7503 4.43175 18.7873 4.85987 18.722 5.27841C19.1405 5.21316 19.5687 5.25016 19.9698 5.38626C20.3709 5.52236 20.7332 5.75352 21.0256 6.06C21.318 6.36648 21.5319 6.73917 21.649 7.14626C21.7662 7.55334 21.783 7.98273 21.6982 8.39775C21.6134 8.81277 21.4294 9.20109 21.1619 9.52957C20.8944 9.85804 20.5514 10.1169 20.1622 10.2841C19.773 10.4512 19.3491 10.5217 18.9267 10.4895C18.5044 10.4573 18.0961 10.3233 17.7367 10.099C17.5925 10.006 17.4208 9.9652 17.2502 9.98346C17.0796 10.0017 16.9204 10.0779 16.7992 10.1994L10.2011 16.7975C10.0796 16.9187 10.0034 17.0779 9.98517 17.2485C9.96691 17.4191 10.0077 17.5908 10.1007 17.735C10.325 18.0943 10.459 18.5026 10.4912 18.925C10.5234 19.3474 10.4529 19.7713 10.2858 20.1605C10.1186 20.5497 9.85975 20.8927 9.53128 21.1602C9.2028 21.4277 8.81447 21.6117 8.39945 21.6965C7.98444 21.7813 7.55505 21.7645 7.14797 21.6473C6.74088 21.5302 6.36819 21.3163 6.06171 21.0239C5.75523 20.7315 5.52407 20.3692 5.38797 19.9681C5.25187 19.567 5.21486 19.1388 5.28012 18.7203Z" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_1257_33">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1257_37)">
3
+ <path d="M1.5 10.5H22.5" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M21 16.5V18.75C21 18.9489 20.921 19.1397 20.7803 19.2803C20.6397 19.421 20.4489 19.5 20.25 19.5H18C17.8011 19.5 17.6103 19.421 17.4697 19.2803C17.329 19.1397 17.25 18.9489 17.25 18.75V16.5" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.75 16.5V18.75C6.75 18.9489 6.67098 19.1397 6.53033 19.2803C6.38968 19.421 6.19891 19.5 6 19.5H3.75C3.55109 19.5 3.36032 19.421 3.21967 19.2803C3.07902 19.1397 3 18.9489 3 18.75V16.5" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M6 13.5H7.5" stroke="#8E8CEE" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M16.5 13.5H18" stroke="#8E8CEE" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M21 10.5L18.1978 4.19531C18.1389 4.06276 18.0428 3.95015 17.9211 3.87111C17.7995 3.79207 17.6576 3.75 17.5125 3.75H6.4875C6.34244 3.75 6.20049 3.79207 6.07886 3.87111C5.95722 3.95015 5.86112 4.06276 5.80219 4.19531L3 10.5V16.5H21V10.5Z" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </g>
10
+ <defs>
11
+ <clipPath id="clip0_1257_37">
12
+ <rect width="24" height="24" fill="white"/>
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1257_10)">
3
+ <path d="M15.75 21H5.25C5.05109 21 4.86032 20.921 4.71967 20.7803C4.57902 20.6397 4.5 20.4489 4.5 20.25V6.75C4.5 6.55109 4.57902 6.36032 4.71967 6.21967C4.86032 6.07902 5.05109 6 5.25 6H12.75L16.5 9.75V20.25C16.5 20.4489 16.421 20.6397 16.2803 20.7803C16.1397 20.921 15.9489 21 15.75 21Z" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7.5 6V3.75C7.5 3.55109 7.57902 3.36032 7.71967 3.21967C7.86032 3.07902 8.05109 3 8.25 3H15.75L19.5 6.75V17.25C19.5 17.4489 19.421 17.6397 19.2803 17.7803C19.1397 17.921 18.9489 18 18.75 18H16.5" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M8.25 14.25H12.75" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M8.25 17.25H12.75" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_1257_10">
10
+ <rect width="24" height="24" fill="white"/>
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1257_92)">
3
+ <path d="M14.25 10.5H18" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M14.25 13.5H18" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M20.25 4.5H3.75C3.33579 4.5 3 4.83579 3 5.25V18.75C3 19.1642 3.33579 19.5 3.75 19.5H20.25C20.6642 19.5 21 19.1642 21 18.75V5.25C21 4.83579 20.6642 4.5 20.25 4.5Z" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M9 13.5C10.2426 13.5 11.25 12.4926 11.25 11.25C11.25 10.0074 10.2426 9 9 9C7.75736 9 6.75 10.0074 6.75 11.25C6.75 12.4926 7.75736 13.5 9 13.5Z" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M6 15.75C6.33281 14.4562 7.60219 13.5 9 13.5C10.3978 13.5 11.6681 14.4553 12 15.75" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_1257_92">
11
+ <rect width="24" height="24" fill="white"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1257_17)">
3
+ <path d="M18.3637 18.3642L5.63623 5.63672" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="#8E8CEE" stroke-width="2" stroke-miterlimit="10"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_1257_17">
8
+ <rect width="24" height="24" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1257_4)">
3
+ <path d="M7.5 9.75H16.5" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7.5 12.75H16.5" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M3 19.5V5.25C3 5.05109 3.07902 4.86032 3.21967 4.71967C3.36032 4.57902 3.55109 4.5 3.75 4.5H20.25C20.4489 4.5 20.6397 4.57902 20.7803 4.71967C20.921 4.86032 21 5.05109 21 5.25V19.5L18 18L15 19.5L12 18L9 19.5L6 18L3 19.5Z" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1257_4">
9
+ <rect width="24" height="24" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1257_28)">
3
+ <path d="M2.25 16.7998H21.75" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M2.25 21C2.25 21 13.08 3 7.30406 3C3.00656 3 2.96063 21.1041 12 9.76781C12 9.76781 12.7603 13.4653 14.5528 13.5C15.2766 13.5141 16.17 12.9084 17.25 11.25C17.25 11.25 17.25 13.5 21.75 13.5" stroke="#8E8CEE" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_1257_28">
8
+ <rect width="24" height="24" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1257_22)">
3
+ <path d="M3.75 21H20.25" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M10.7175 12.75L9.05059 4.96875C8.98077 4.64095 8.98506 4.30169 9.06315 3.97576C9.14123 3.64983 9.29115 3.34546 9.50194 3.08489C9.71273 2.82433 9.97907 2.61414 10.2815 2.46969C10.5839 2.32525 10.9148 2.25019 11.25 2.25H12.75C13.0852 2.25005 13.4162 2.325 13.7187 2.46939C14.0213 2.61378 14.2877 2.82394 14.4986 3.08453C14.7095 3.34512 14.8595 3.64953 14.9377 3.97553C15.0158 4.30153 15.0201 4.64087 14.9503 4.96875L13.2834 12.75" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M19.5 12.75H4.5C4.08579 12.75 3.75 13.0858 3.75 13.5V17.25C3.75 17.6642 4.08579 18 4.5 18H19.5C19.9142 18 20.25 17.6642 20.25 17.25V13.5C20.25 13.0858 19.9142 12.75 19.5 12.75Z" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1257_22">
9
+ <rect width="24" height="24" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="13.5" cy="10.5" r="8.5" stroke="#8E8CEE" stroke-width="2"/>
3
+ <path d="M14 2C10.6307 4.68487 9.38997 9.06588 10.2777 13" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round"/>
4
+ <path d="M13 2C18.3333 6.25 18.3333 14.75 13 19" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round"/>
5
+ <path d="M6 8C9.33334 8 19.6928 8 21 8" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round"/>
6
+ <path d="M6 13C9.33334 13 19.6928 13 21 13" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round"/>
7
+ <path d="M12 19.375C12 19.7065 11.8699 20.0245 11.6384 20.2589C11.4069 20.4933 11.0929 20.625 10.7654 20.625H4.46914L2 22V14.25C2 13.9185 2.13007 13.6005 2.3616 13.3661C2.59312 13.1317 2.90714 13 3.23457 13H10.7654C11.0929 13 11.4069 13.1317 11.6384 13.3661C11.8699 13.6005 12 13.9185 12 14.25V19.375Z" fill="white" stroke="#8E8CEE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
8
+ </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="M5.28 18.72a2.626 2.626 0 1 1 .985-4.82.75.75 0 0 0 .938-.1L13.8 7.2a.75.75 0 0 0 .1-.937 2.625 2.625 0 1 1 4.821-.986 2.625 2.625 0 1 1-.985 4.821.75.75 0 0 0-.938.1l-6.598 6.598a.75.75 0 0 0-.1.938 2.624 2.624 0 1 1-4.82.985Z"
16
+ />
17
+ </g>,
18
+ <defs>
19
+ <clipPath id="bone_svg__a">
20
+ <path fill="#fff" d="M0 0h24v24H0z" />
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.5 10.5h21M21 16.5v2.25a.75.75 0 0 1-.75.75H18a.75.75 0 0 1-.75-.75V16.5M6.75 16.5v2.25a.75.75 0 0 1-.75.75H3.75a.75.75 0 0 1-.75-.75V16.5"
18
+ />
19
+ <path strokeWidth={1.3} d="M6 13.5h1.5M16.5 13.5H18" />
20
+ <path
21
+ strokeWidth={1.8}
22
+ d="m21 10.5-2.802-6.305a.75.75 0 0 0-.686-.445H6.489a.75.75 0 0 0-.686.445L3 10.5v6h18v-6Z"
23
+ />
24
+ </g>,
25
+ <defs>
26
+ <clipPath id="car_svg__a">
27
+ <path fill="#fff" d="M0 0h24v24H0z" />
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={2}
14
+ clipPath="url(#files_svg__a)"
15
+ >
16
+ <path d="M15.75 21H5.25a.75.75 0 0 1-.75-.75V6.75A.75.75 0 0 1 5.25 6h7.5l3.75 3.75v10.5a.75.75 0 0 1-.75.75Z" />
17
+ <path d="M7.5 6V3.75A.75.75 0 0 1 8.25 3h7.5l3.75 3.75v10.5a.75.75 0 0 1-.75.75H16.5M8.25 14.25h4.5M8.25 17.25h4.5" />
18
+ </g>,
19
+ <defs>
20
+ <clipPath id="files_svg__a">
21
+ <path fill="#fff" d="M0 0h24v24H0z" />
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="M14.25 10.5H18M14.25 13.5H18M20.25 4.5H3.75a.75.75 0 0 0-.75.75v13.5c0 .414.336.75.75.75h16.5a.75.75 0 0 0 .75-.75V5.25a.75.75 0 0 0-.75-.75Z" />
17
+ <path d="M9 13.5A2.25 2.25 0 1 0 9 9a2.25 2.25 0 0 0 0 4.5ZM6 15.75c.333-1.294 1.602-2.25 3-2.25s2.668.955 3 2.25" />
18
+ </g>,
19
+ <defs>
20
+ <clipPath id="id_svg__a">
21
+ <path fill="#fff" d="M0 0h24v24H0z" />
22
+ </clipPath>
23
+ </defs>
24
+ );
@@ -0,0 +1,22 @@
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 stroke="currentColor" strokeWidth={2} clipPath="url(#prohibit_svg__a)">
10
+ <path
11
+ strokeLinecap="round"
12
+ strokeLinejoin="round"
13
+ d="M18.364 18.364 5.636 5.637"
14
+ />
15
+ <path strokeMiterlimit={10} d="M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" />
16
+ </g>,
17
+ <defs>
18
+ <clipPath id="prohibit_svg__a">
19
+ <path fill="#fff" d="M0 0h24v24H0z" />
20
+ </clipPath>
21
+ </defs>
22
+ );