@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.
- package/dist/cjs/index.js +45 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/lib/components/icon/icons/Bone.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/Car.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/Files.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/Id.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/Prohibit.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/Receipt.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/Signature.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/Stamp.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/Translation.d.ts +4 -0
- package/dist/cjs/lib/components/icon/icons/index.d.ts +9 -0
- package/dist/esm/components/icon/icons/Bone.js +13 -0
- package/dist/esm/components/icon/icons/Bone.js.map +1 -0
- package/dist/esm/components/icon/icons/Car.js +13 -0
- package/dist/esm/components/icon/icons/Car.js.map +1 -0
- package/dist/esm/components/icon/icons/Files.js +13 -0
- package/dist/esm/components/icon/icons/Files.js.map +1 -0
- package/dist/esm/components/icon/icons/Id.js +13 -0
- package/dist/esm/components/icon/icons/Id.js.map +1 -0
- package/dist/esm/components/icon/icons/Prohibit.js +13 -0
- package/dist/esm/components/icon/icons/Prohibit.js.map +1 -0
- package/dist/esm/components/icon/icons/Receipt.js +13 -0
- package/dist/esm/components/icon/icons/Receipt.js.map +1 -0
- package/dist/esm/components/icon/icons/Signature.js +13 -0
- package/dist/esm/components/icon/icons/Signature.js.map +1 -0
- package/dist/esm/components/icon/icons/Stamp.js +13 -0
- package/dist/esm/components/icon/icons/Stamp.js.map +1 -0
- package/dist/esm/components/icon/icons/Translation.js +13 -0
- package/dist/esm/components/icon/icons/Translation.js.map +1 -0
- package/dist/esm/components/icon/icons.stories.js +10 -1
- package/dist/esm/components/icon/icons.stories.js.map +1 -1
- package/dist/esm/components/icon/index.stories.js +10 -1
- package/dist/esm/components/icon/index.stories.js.map +1 -1
- package/dist/esm/{index-2faa4731.js → index-d2e06251.js} +19 -1
- package/dist/esm/{index-2faa4731.js.map → index-d2e06251.js.map} +1 -1
- package/dist/esm/index.js +9 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/lib/components/icon/icons/Bone.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/Car.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/Files.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/Id.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/Prohibit.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/Receipt.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/Signature.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/Stamp.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/Translation.d.ts +4 -0
- package/dist/esm/lib/components/icon/icons/index.d.ts +9 -0
- package/package.json +1 -1
- package/src/lib/components/icon/assets/bone.svg +10 -0
- package/src/lib/components/icon/assets/car.svg +15 -0
- package/src/lib/components/icon/assets/files.svg +13 -0
- package/src/lib/components/icon/assets/id.svg +14 -0
- package/src/lib/components/icon/assets/prohibit.svg +11 -0
- package/src/lib/components/icon/assets/receipt.svg +12 -0
- package/src/lib/components/icon/assets/signature.svg +11 -0
- package/src/lib/components/icon/assets/stamp.svg +12 -0
- package/src/lib/components/icon/assets/translation.svg +8 -0
- package/src/lib/components/icon/icons/Bone.tsx +23 -0
- package/src/lib/components/icon/icons/Car.tsx +30 -0
- package/src/lib/components/icon/icons/Files.tsx +24 -0
- package/src/lib/components/icon/icons/Id.tsx +24 -0
- package/src/lib/components/icon/icons/Prohibit.tsx +22 -0
- package/src/lib/components/icon/icons/Receipt.tsx +23 -0
- package/src/lib/components/icon/icons/Signature.tsx +23 -0
- package/src/lib/components/icon/icons/Stamp.tsx +23 -0
- package/src/lib/components/icon/icons/Translation.tsx +36 -0
- package/src/lib/components/icon/icons/index.ts +9 -0
|
@@ -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
|
|
10
|
+
stroke="currentColor"
|
|
11
|
+
strokeLinecap="round"
|
|
12
|
+
strokeLinejoin="round"
|
|
13
|
+
strokeWidth={2}
|
|
14
|
+
clipPath="url(#receipt_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<path d="M7.5 9.75h9M7.5 12.75h9M3 19.5V5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 .75.75V19.5L18 18l-3 1.5-3-1.5-3 1.5L6 18l-3 1.5Z" />
|
|
17
|
+
</g>,
|
|
18
|
+
<defs>
|
|
19
|
+
<clipPath id="receipt_svg__a">
|
|
20
|
+
<path fill="#fff" d="M0 0h24v24H0z" />
|
|
21
|
+
</clipPath>
|
|
22
|
+
</defs>
|
|
23
|
+
);
|
|
@@ -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
|
|
10
|
+
stroke="currentColor"
|
|
11
|
+
strokeLinecap="round"
|
|
12
|
+
strokeLinejoin="round"
|
|
13
|
+
strokeWidth={1.8}
|
|
14
|
+
clipPath="url(#signature_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<path d="M2.25 16.8h19.5M2.25 21S13.08 3 7.304 3C3.007 3 2.961 21.104 12 9.768c0 0 .76 3.697 2.553 3.732.724.014 1.617-.592 2.697-2.25 0 0 0 2.25 4.5 2.25" />
|
|
17
|
+
</g>,
|
|
18
|
+
<defs>
|
|
19
|
+
<clipPath id="signature_svg__a">
|
|
20
|
+
<path fill="#fff" d="M0 0h24v24H0z" />
|
|
21
|
+
</clipPath>
|
|
22
|
+
</defs>
|
|
23
|
+
);
|
|
@@ -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
|
|
10
|
+
stroke="currentColor"
|
|
11
|
+
strokeLinecap="round"
|
|
12
|
+
strokeLinejoin="round"
|
|
13
|
+
strokeWidth={2}
|
|
14
|
+
clipPath="url(#stamp_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<path d="M3.75 21h16.5M10.717 12.75 9.051 4.969A2.25 2.25 0 0 1 11.25 2.25h1.5a2.25 2.25 0 0 1 2.2 2.719l-1.667 7.781M19.5 12.75h-15a.75.75 0 0 0-.75.75v3.75c0 .414.336.75.75.75h15a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75Z" />
|
|
17
|
+
</g>,
|
|
18
|
+
<defs>
|
|
19
|
+
<clipPath id="stamp_svg__a">
|
|
20
|
+
<path fill="#fff" d="M0 0h24v24H0z" />
|
|
21
|
+
</clipPath>
|
|
22
|
+
</defs>
|
|
23
|
+
);
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
<circle
|
|
10
|
+
cx={13.5}
|
|
11
|
+
cy={10.5}
|
|
12
|
+
r={8.5}
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
/>,
|
|
16
|
+
<path
|
|
17
|
+
stroke="currentColor"
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeWidth={2}
|
|
20
|
+
d="M14 2c-3.37 2.685-4.61 7.066-3.722 11"
|
|
21
|
+
/>,
|
|
22
|
+
<path
|
|
23
|
+
stroke="currentColor"
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
d="M13 2c5.333 4.25 5.333 12.75 0 17M6 8h15M6 13h15"
|
|
27
|
+
/>,
|
|
28
|
+
<path
|
|
29
|
+
fill="#fff"
|
|
30
|
+
stroke="currentColor"
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
strokeWidth={2}
|
|
34
|
+
d="M12 19.375c0 .331-.13.65-.362.884a1.227 1.227 0 0 1-.873.366H4.47L2 22v-7.75c0-.332.13-.65.362-.884.231-.234.545-.366.873-.366h7.53c.328 0 .642.132.873.366.232.235.362.553.362.884v5.125Z"
|
|
35
|
+
/>
|
|
36
|
+
);
|
|
@@ -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';
|