@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
|
@@ -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';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Bone = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsx("g", { clipPath: "url(#bone_svg__a)", children: jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.8, 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" }) }), jsx("defs", { children: jsx("clipPath", { id: "bone_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Bone;
|
|
13
|
+
//# sourceMappingURL=Bone.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Bone.js","sources":["../../../../../../src/lib/components/icon/icons/Bone.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <g clipPath=\"url(#bone_svg__a)\">\n <path\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={1.8}\n 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\"\n />\n </g>,\n <defs>\n <clipPath id=\"bone_svg__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n );\n"],"names":["_jsx"],"mappings":";;;;;;;AAIA,YAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,WAAG,QAAQ,EAAC,mBAAmB,YAC7BA,cACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,GAAG,EAChB,CAAC,EAAC,qOAAqO,GACvO,GACA,EACJA,wBACEA,kBAAU,EAAE,EAAC,aAAa,YACxBA,cAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,GAC7B,GACN,CACR;AAjBD,CAiBC;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Car = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsxs("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", clipPath: "url(#car_svg__a)", children: [jsx("path", { strokeWidth: 1.8, 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" }), jsx("path", { strokeWidth: 1.3, d: "M6 13.5h1.5M16.5 13.5H18" }), jsx("path", { strokeWidth: 1.8, 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" })] }), jsx("defs", { children: jsx("clipPath", { id: "car_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Car;
|
|
13
|
+
//# sourceMappingURL=Car.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Car.js","sources":["../../../../../../src/lib/components/icon/icons/Car.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <g\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n clipPath=\"url(#car_svg__a)\"\n >\n <path\n strokeWidth={1.8}\n 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\"\n />\n <path strokeWidth={1.3} d=\"M6 13.5h1.5M16.5 13.5H18\" />\n <path\n strokeWidth={1.8}\n 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\"\n />\n </g>,\n <defs>\n <clipPath id=\"car_svg__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n );\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;AAIA,WAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,YACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,QAAQ,EAAC,kBAAkB,aAE3BC,cACE,WAAW,EAAE,GAAG,EAChB,CAAC,EAAC,8IAA8I,GAChJ,EACFA,cAAM,WAAW,EAAE,GAAG,EAAE,CAAC,EAAC,0BAA0B,GAAG,EACvDA,cACE,WAAW,EAAE,GAAG,EAChB,CAAC,EAAC,yFAAyF,GAC3F,IACA,EACJA,wBACEA,kBAAU,EAAE,EAAC,YAAY,YACvBA,cAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,GAC7B,GACN,CACR;AAxBD,CAwBC;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Files = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsxs("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, clipPath: "url(#files_svg__a)", children: [jsx("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" }), jsx("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" })] }), jsx("defs", { children: jsx("clipPath", { id: "files_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Files;
|
|
13
|
+
//# sourceMappingURL=Files.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Files.js","sources":["../../../../../../src/lib/components/icon/icons/Files.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <g\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n clipPath=\"url(#files_svg__a)\"\n >\n <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\" />\n <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\" />\n </g>,\n <defs>\n <clipPath id=\"files_svg__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n );\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;AAIA,aAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,YACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,CAAC,EACd,QAAQ,EAAC,oBAAoB,aAE7BC,cAAM,CAAC,EAAC,sGAAsG,GAAG,EACjHA,cAAM,CAAC,EAAC,2GAA2G,GAAG,IACpH,EACJA,wBACEA,kBAAU,EAAE,EAAC,cAAc,YACzBA,cAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,GAC7B,GACN,CACR;AAlBD,CAkBC;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Id = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsxs("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.8, clipPath: "url(#id_svg__a)", children: [jsx("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" }), jsx("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" })] }), jsx("defs", { children: jsx("clipPath", { id: "id_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Id;
|
|
13
|
+
//# sourceMappingURL=Id.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Id.js","sources":["../../../../../../src/lib/components/icon/icons/Id.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <g\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={1.8}\n clipPath=\"url(#id_svg__a)\"\n >\n <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\" />\n <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\" />\n </g>,\n <defs>\n <clipPath id=\"id_svg__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n );\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;AAIA,UAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,YACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,GAAG,EAChB,QAAQ,EAAC,iBAAiB,aAE1BC,cAAM,CAAC,EAAC,+IAA+I,GAAG,EAC1JA,cAAM,CAAC,EAAC,0GAA0G,GAAG,IACnH,EACJA,wBACEA,kBAAU,EAAE,EAAC,WAAW,YACtBA,cAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,GAC7B,GACN,CACR;AAlBD,CAkBC;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Prohibit = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsxs("g", { stroke: "currentColor", strokeWidth: 2, clipPath: "url(#prohibit_svg__a)", children: [jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18.364 18.364 5.636 5.637" }), jsx("path", { strokeMiterlimit: 10, d: "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" })] }), jsx("defs", { children: jsx("clipPath", { id: "prohibit_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Prohibit;
|
|
13
|
+
//# sourceMappingURL=Prohibit.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Prohibit.js","sources":["../../../../../../src/lib/components/icon/icons/Prohibit.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <g stroke=\"currentColor\" strokeWidth={2} clipPath=\"url(#prohibit_svg__a)\">\n <path\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n d=\"M18.364 18.364 5.636 5.637\"\n />\n <path strokeMiterlimit={10} d=\"M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z\" />\n </g>,\n <defs>\n <clipPath id=\"prohibit_svg__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n );\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;AAIA,gBAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,YAAG,MAAM,EAAC,cAAc,EAAC,WAAW,EAAE,CAAC,EAAE,QAAQ,EAAC,uBAAuB,aACvEC,cACE,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,CAAC,EAAC,4BAA4B,GAC9B,EACFA,cAAM,gBAAgB,EAAE,EAAE,EAAE,CAAC,EAAC,uCAAuC,GAAG,IACtE,EACJA,wBACEA,kBAAU,EAAE,EAAC,iBAAiB,YAC5BA,cAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,GAC7B,GACN,CACR;AAhBD,CAgBC;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Receipt = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsx("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, clipPath: "url(#receipt_svg__a)", children: jsx("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" }) }), jsx("defs", { children: jsx("clipPath", { id: "receipt_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Receipt;
|
|
13
|
+
//# sourceMappingURL=Receipt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Receipt.js","sources":["../../../../../../src/lib/components/icon/icons/Receipt.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <g\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n clipPath=\"url(#receipt_svg__a)\"\n >\n <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\" />\n </g>,\n <defs>\n <clipPath id=\"receipt_svg__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n );\n"],"names":["_jsx"],"mappings":";;;;;;;AAIA,eAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,WACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,CAAC,EACd,QAAQ,EAAC,sBAAsB,YAE/BA,cAAM,CAAC,EAAC,8HAA8H,GAAG,GACvI,EACJA,wBACEA,kBAAU,EAAE,EAAC,gBAAgB,YAC3BA,cAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,GAC7B,GACN,CACR;AAjBD,CAiBC;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Signature = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsx("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.8, clipPath: "url(#signature_svg__a)", children: jsx("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" }) }), jsx("defs", { children: jsx("clipPath", { id: "signature_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Signature;
|
|
13
|
+
//# sourceMappingURL=Signature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Signature.js","sources":["../../../../../../src/lib/components/icon/icons/Signature.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <g\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={1.8}\n clipPath=\"url(#signature_svg__a)\"\n >\n <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\" />\n </g>,\n <defs>\n <clipPath id=\"signature_svg__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n );\n"],"names":["_jsx"],"mappings":";;;;;;;AAIA,iBAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,WACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,GAAG,EAChB,QAAQ,EAAC,wBAAwB,YAEjCA,cAAM,CAAC,EAAC,mJAAmJ,GAAG,GAC5J,EACJA,wBACEA,kBAAU,EAAE,EAAC,kBAAkB,YAC7BA,cAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,GAC7B,GACN,CACR;AAjBD,CAiBC;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Stamp = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsx("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, clipPath: "url(#stamp_svg__a)", children: jsx("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" }) }), jsx("defs", { children: jsx("clipPath", { id: "stamp_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Stamp;
|
|
13
|
+
//# sourceMappingURL=Stamp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stamp.js","sources":["../../../../../../src/lib/components/icon/icons/Stamp.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <g\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n clipPath=\"url(#stamp_svg__a)\"\n >\n <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\" />\n </g>,\n <defs>\n <clipPath id=\"stamp_svg__a\">\n <path fill=\"#fff\" d=\"M0 0h24v24H0z\" />\n </clipPath>\n </defs>\n );\n"],"names":["_jsx"],"mappings":";;;;;;;AAIA,aAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,WACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,CAAC,EACd,QAAQ,EAAC,oBAAoB,YAE7BA,cAAM,CAAC,EAAC,6NAA6N,GAAG,GACtO,EACJA,wBACEA,kBAAU,EAAE,EAAC,cAAc,YACzBA,cAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,GAC7B,GACN,CACR;AAjBD,CAiBC;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
import { IconWrapper } from '../IconWrapper/IconWrapper.js';
|
|
4
|
+
import '../../../tslib.es6-a39f91fc.js';
|
|
5
|
+
import '../../../index-6ea95111.js';
|
|
6
|
+
import '../../../style-inject.es-1f59c1d0.js';
|
|
7
|
+
|
|
8
|
+
var Translation = (function (props) {
|
|
9
|
+
return createElement(IconWrapper, props, jsx("circle", { cx: 13.5, cy: 10.5, r: 8.5, stroke: "currentColor", strokeWidth: 2 }), jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M14 2c-3.37 2.685-4.61 7.066-3.722 11" }), jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M13 2c5.333 4.25 5.333 12.75 0 17M6 8h15M6 13h15" }), jsx("path", { fill: "#fff", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, 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" }));
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export default Translation;
|
|
13
|
+
//# sourceMappingURL=Translation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Translation.js","sources":["../../../../../../src/lib/components/icon/icons/Translation.tsx"],"sourcesContent":["/* Generated file. Do not modify. */\nimport { createElement } from 'react';\nimport { IconWrapper } from '../IconWrapper';\nimport type { IconWrapperProps } from '../IconWrapper';\nexport default (props: IconWrapperProps) =>\n createElement(\n IconWrapper,\n props,\n <circle\n cx={13.5}\n cy={10.5}\n r={8.5}\n stroke=\"currentColor\"\n strokeWidth={2}\n />,\n <path\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeWidth={2}\n d=\"M14 2c-3.37 2.685-4.61 7.066-3.722 11\"\n />,\n <path\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeWidth={2}\n d=\"M13 2c5.333 4.25 5.333 12.75 0 17M6 8h15M6 13h15\"\n />,\n <path\n fill=\"#fff\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n 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\"\n />\n );\n"],"names":["_jsx"],"mappings":";;;;;;;AAIA,mBAAe,UAAC,KAAuB;IACrC,OAAA,aAAa,CACX,WAAW,EACX,KAAK,EACLA,gBACE,EAAE,EAAE,IAAI,EACR,EAAE,EAAE,IAAI,EACR,CAAC,EAAE,GAAG,EACN,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,CAAC,GACd,EACFA,cACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,WAAW,EAAE,CAAC,EACd,CAAC,EAAC,uCAAuC,GACzC,EACFA,cACE,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,WAAW,EAAE,CAAC,EACd,CAAC,EAAC,kDAAkD,GACpD,EACFA,cACE,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,CAAC,EACd,CAAC,EAAC,4LAA4L,GAC9L,CACH;AA9BD,CA8BC;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { useState } from 'react';
|
|
3
3
|
import { Input } from '../input/index.js';
|
|
4
|
-
import { i as icons } from '../../index-
|
|
4
|
+
import { i as icons } from '../../index-d2e06251.js';
|
|
5
5
|
import { Button } from '../button/index.js';
|
|
6
6
|
import { c as classNames } from '../../index-6ea95111.js';
|
|
7
7
|
import { s as styleInject } from '../../style-inject.es-1f59c1d0.js';
|
|
@@ -62,6 +62,7 @@ import './icons/BikeBicycle.js';
|
|
|
62
62
|
import './icons/Blog.js';
|
|
63
63
|
import './icons/Bluetooth.js';
|
|
64
64
|
import './icons/Bold.js';
|
|
65
|
+
import './icons/Bone.js';
|
|
65
66
|
import './icons/BookOpen.js';
|
|
66
67
|
import './icons/Book.js';
|
|
67
68
|
import './icons/Bookmark.js';
|
|
@@ -77,6 +78,7 @@ import './icons/Calendar.js';
|
|
|
77
78
|
import './icons/CameraOff.js';
|
|
78
79
|
import './icons/Camera.js';
|
|
79
80
|
import './icons/CarTraffic.js';
|
|
81
|
+
import './icons/Car.js';
|
|
80
82
|
import './icons/Cast.js';
|
|
81
83
|
import './icons/ChainBikeBroken.js';
|
|
82
84
|
import './icons/CheckCircle.js';
|
|
@@ -166,6 +168,7 @@ import './icons/FileMinus.js';
|
|
|
166
168
|
import './icons/FilePlus.js';
|
|
167
169
|
import './icons/FileText.js';
|
|
168
170
|
import './icons/File.js';
|
|
171
|
+
import './icons/Files.js';
|
|
169
172
|
import './icons/Film.js';
|
|
170
173
|
import './icons/Filter.js';
|
|
171
174
|
import './icons/Fire.js';
|
|
@@ -194,6 +197,7 @@ import './icons/Heart.js';
|
|
|
194
197
|
import './icons/Hexagon.js';
|
|
195
198
|
import './icons/Home.js';
|
|
196
199
|
import './icons/HospitalBuilding.js';
|
|
200
|
+
import './icons/Id.js';
|
|
197
201
|
import './icons/ImagePicture.js';
|
|
198
202
|
import './icons/Inbox.js';
|
|
199
203
|
import './icons/InfoFilled.js';
|
|
@@ -279,10 +283,12 @@ import './icons/Power.js';
|
|
|
279
283
|
import './icons/Pregnacy.js';
|
|
280
284
|
import './icons/Printer.js';
|
|
281
285
|
import './icons/Progress.js';
|
|
286
|
+
import './icons/Prohibit.js';
|
|
282
287
|
import './icons/QrCode.js';
|
|
283
288
|
import './icons/QuestionmarkHelpCircle.js';
|
|
284
289
|
import './icons/QuotationMarks.js';
|
|
285
290
|
import './icons/Radio.js';
|
|
291
|
+
import './icons/Receipt.js';
|
|
286
292
|
import './icons/RefreshCcw.js';
|
|
287
293
|
import './icons/RefreshCw.js';
|
|
288
294
|
import './icons/Repeat.js';
|
|
@@ -308,6 +314,7 @@ import './icons/ShoppingBag.js';
|
|
|
308
314
|
import './icons/ShoppingCart.js';
|
|
309
315
|
import './icons/Shuffle.js';
|
|
310
316
|
import './icons/Sidebar.js';
|
|
317
|
+
import './icons/Signature.js';
|
|
311
318
|
import './icons/SkipBack.js';
|
|
312
319
|
import './icons/SkipForward.js';
|
|
313
320
|
import './icons/Slack.js';
|
|
@@ -318,6 +325,7 @@ import './icons/Smile.js';
|
|
|
318
325
|
import './icons/Sofa.js';
|
|
319
326
|
import './icons/Speaker.js';
|
|
320
327
|
import './icons/Square.js';
|
|
328
|
+
import './icons/Stamp.js';
|
|
321
329
|
import './icons/StarFilled.js';
|
|
322
330
|
import './icons/StarHalf.js';
|
|
323
331
|
import './icons/Star.js';
|
|
@@ -339,6 +347,7 @@ import './icons/ToggleRight.js';
|
|
|
339
347
|
import './icons/Tool.js';
|
|
340
348
|
import './icons/ToothFillingCracked.js';
|
|
341
349
|
import './icons/TrailerParts.js';
|
|
350
|
+
import './icons/Translation.js';
|
|
342
351
|
import './icons/Trash2.js';
|
|
343
352
|
import './icons/Trash.js';
|
|
344
353
|
import './icons/Trello.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.stories.js","sources":["../../../../../src/lib/components/icon/icons.stories.tsx"],"sourcesContent":["import { ChangeEvent, useState } from 'react';\nimport { Input } from '../input';\nimport * as icons from './icons';\nimport { Button } from '../button';\nimport classNames from 'classnames';\nimport styles from './style.module.scss';\n\nconst story = {\n title: 'JSX/Icon/IconsList',\n};\n\nconst iconsList = Object.entries(icons);\n\nexport const IconsList = () => {\n const [value, setValue] = useState('');\n const [options, setOptions] = useState(iconsList);\n\n const clearSearch = () => {\n setValue('');\n setOptions(iconsList);\n };\n\n const handleOnSearch = (event: ChangeEvent<HTMLInputElement>) => {\n const searchValue = event.target.value;\n setValue(event.target.value);\n\n if (searchValue === '') {\n setOptions(iconsList);\n return;\n }\n\n setOptions(iconsList.filter(([key]) => \n key.toLowerCase()\n .includes(searchValue.toLowerCase())\n ));\n };\n\n return (\n <div>\n <div className={classNames(styles.searchBar, 'bg-white')}>\n <div className='d-flex gap8 wmx12 m-auto'>\n <Input\n className='w70'\n onChange={handleOnSearch}\n placeholder='Search icon'\n value={value} \n />\n <Button className='w30' disabled={!value} onClick={clearSearch}>\n Clear search\n </Button>\n </div>\n </div>\n\n <div className='d-flex f-wrap mt80'>\n {options.map(([iconKey, Icon]) => (\n <div key={iconKey} className=\"w20 p8\">\n <div className='br4 p24 pt16 pb16 bg-grey-100 w100 d-flex fd-column ai-center'>\n <Icon size={32} />\n <span className='p-p--small'>{iconKey}</span>\n </div>\n </div>\n ))}\n </div>\n </div>\n );\n}\n\nexport default story;\n"],"names":["_jsxs","_jsx"],"mappings":"
|
|
1
|
+
{"version":3,"file":"icons.stories.js","sources":["../../../../../src/lib/components/icon/icons.stories.tsx"],"sourcesContent":["import { ChangeEvent, useState } from 'react';\nimport { Input } from '../input';\nimport * as icons from './icons';\nimport { Button } from '../button';\nimport classNames from 'classnames';\nimport styles from './style.module.scss';\n\nconst story = {\n title: 'JSX/Icon/IconsList',\n};\n\nconst iconsList = Object.entries(icons);\n\nexport const IconsList = () => {\n const [value, setValue] = useState('');\n const [options, setOptions] = useState(iconsList);\n\n const clearSearch = () => {\n setValue('');\n setOptions(iconsList);\n };\n\n const handleOnSearch = (event: ChangeEvent<HTMLInputElement>) => {\n const searchValue = event.target.value;\n setValue(event.target.value);\n\n if (searchValue === '') {\n setOptions(iconsList);\n return;\n }\n\n setOptions(iconsList.filter(([key]) => \n key.toLowerCase()\n .includes(searchValue.toLowerCase())\n ));\n };\n\n return (\n <div>\n <div className={classNames(styles.searchBar, 'bg-white')}>\n <div className='d-flex gap8 wmx12 m-auto'>\n <Input\n className='w70'\n onChange={handleOnSearch}\n placeholder='Search icon'\n value={value} \n />\n <Button className='w30' disabled={!value} onClick={clearSearch}>\n Clear search\n </Button>\n </div>\n </div>\n\n <div className='d-flex f-wrap mt80'>\n {options.map(([iconKey, Icon]) => (\n <div key={iconKey} className=\"w20 p8\">\n <div className='br4 p24 pt16 pb16 bg-grey-100 w100 d-flex fd-column ai-center'>\n <Icon size={32} />\n <span className='p-p--small'>{iconKey}</span>\n </div>\n </div>\n ))}\n </div>\n </div>\n );\n}\n\nexport default story;\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAOM,KAAK,GAAG;IACZ,KAAK,EAAE,oBAAoB;EAC3B;AAEF,IAAM,SAAS,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IAE3B,SAAS,GAAG;IACjB,IAAA,KAAoB,QAAQ,CAAC,EAAE,CAAC,EAA/B,KAAK,QAAA,EAAE,QAAQ,QAAgB,CAAC;IACjC,IAAA,KAAwB,QAAQ,CAAC,SAAS,CAAC,EAA1C,OAAO,QAAA,EAAE,UAAU,QAAuB,CAAC;IAElD,IAAM,WAAW,GAAG;QAClB,QAAQ,CAAC,EAAE,CAAC,CAAC;QACb,UAAU,CAAC,SAAS,CAAC,CAAC;KACvB,CAAC;IAEF,IAAM,cAAc,GAAG,UAAC,KAAoC;QAC1D,IAAM,WAAW,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC;QACvC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAE7B,IAAI,WAAW,KAAK,EAAE,EAAE;YACtB,UAAU,CAAC,SAAS,CAAC,CAAC;YACtB,OAAO;SACR;QAED,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,UAAC,EAAK;gBAAJ,GAAG,QAAA;YAC/B,OAAA,GAAG,CAAC,WAAW,EAAE;iBACd,QAAQ,CAAC,WAAW,CAAC,WAAW,EAAE,CAAC;SAAA,CACvC,CAAC,CAAC;KACJ,CAAC;IAEF,QACEA,yBACEC,aAAK,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,SAAS,EAAE,UAAU,CAAC,YACtDD,cAAK,SAAS,EAAC,0BAA0B,aACzCC,IAAC,KAAK,IACJ,SAAS,EAAC,KAAK,EACf,QAAQ,EAAE,cAAc,EACxB,WAAW,EAAC,aAAa,EACzB,KAAK,EAAE,KAAK,GACZ,EACFA,IAAC,MAAM,IAAC,SAAS,EAAC,KAAK,EAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,WAAW,6BAErD,IACH,GACF,EAENA,aAAK,SAAS,EAAC,oBAAoB,YAChC,OAAO,CAAC,GAAG,CAAC,UAAC,EAAe;wBAAd,OAAO,QAAA,EAAE,IAAI,QAAA;oBAAM,QAChCA,aAAmB,SAAS,EAAC,QAAQ,YACnCD,cAAK,SAAS,EAAC,+DAA+D,aAC5EC,IAAC,IAAI,IAAC,IAAI,EAAE,EAAE,GAAI,EAClBA,cAAM,SAAS,EAAC,YAAY,YAAE,OAAO,GAAQ,IACzC,IAJE,OAAO,CAKX;iBACP,CAAC,GACE,IACF,EACN;AACJ;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { IconWrapper } from './IconWrapper/IconWrapper.js';
|
|
3
|
-
import { i as icons } from '../../index-
|
|
3
|
+
import { i as icons } from '../../index-d2e06251.js';
|
|
4
4
|
import '../../tslib.es6-a39f91fc.js';
|
|
5
5
|
import '../../index-6ea95111.js';
|
|
6
6
|
import '../../style-inject.es-1f59c1d0.js';
|
|
@@ -59,6 +59,7 @@ import './icons/BikeBicycle.js';
|
|
|
59
59
|
import './icons/Blog.js';
|
|
60
60
|
import './icons/Bluetooth.js';
|
|
61
61
|
import './icons/Bold.js';
|
|
62
|
+
import './icons/Bone.js';
|
|
62
63
|
import './icons/BookOpen.js';
|
|
63
64
|
import './icons/Book.js';
|
|
64
65
|
import './icons/Bookmark.js';
|
|
@@ -74,6 +75,7 @@ import './icons/Calendar.js';
|
|
|
74
75
|
import './icons/CameraOff.js';
|
|
75
76
|
import './icons/Camera.js';
|
|
76
77
|
import './icons/CarTraffic.js';
|
|
78
|
+
import './icons/Car.js';
|
|
77
79
|
import './icons/Cast.js';
|
|
78
80
|
import './icons/ChainBikeBroken.js';
|
|
79
81
|
import './icons/CheckCircle.js';
|
|
@@ -163,6 +165,7 @@ import './icons/FileMinus.js';
|
|
|
163
165
|
import './icons/FilePlus.js';
|
|
164
166
|
import './icons/FileText.js';
|
|
165
167
|
import './icons/File.js';
|
|
168
|
+
import './icons/Files.js';
|
|
166
169
|
import './icons/Film.js';
|
|
167
170
|
import './icons/Filter.js';
|
|
168
171
|
import './icons/Fire.js';
|
|
@@ -191,6 +194,7 @@ import './icons/Heart.js';
|
|
|
191
194
|
import './icons/Hexagon.js';
|
|
192
195
|
import './icons/Home.js';
|
|
193
196
|
import './icons/HospitalBuilding.js';
|
|
197
|
+
import './icons/Id.js';
|
|
194
198
|
import './icons/ImagePicture.js';
|
|
195
199
|
import './icons/Inbox.js';
|
|
196
200
|
import './icons/InfoFilled.js';
|
|
@@ -276,10 +280,12 @@ import './icons/Power.js';
|
|
|
276
280
|
import './icons/Pregnacy.js';
|
|
277
281
|
import './icons/Printer.js';
|
|
278
282
|
import './icons/Progress.js';
|
|
283
|
+
import './icons/Prohibit.js';
|
|
279
284
|
import './icons/QrCode.js';
|
|
280
285
|
import './icons/QuestionmarkHelpCircle.js';
|
|
281
286
|
import './icons/QuotationMarks.js';
|
|
282
287
|
import './icons/Radio.js';
|
|
288
|
+
import './icons/Receipt.js';
|
|
283
289
|
import './icons/RefreshCcw.js';
|
|
284
290
|
import './icons/RefreshCw.js';
|
|
285
291
|
import './icons/Repeat.js';
|
|
@@ -305,6 +311,7 @@ import './icons/ShoppingBag.js';
|
|
|
305
311
|
import './icons/ShoppingCart.js';
|
|
306
312
|
import './icons/Shuffle.js';
|
|
307
313
|
import './icons/Sidebar.js';
|
|
314
|
+
import './icons/Signature.js';
|
|
308
315
|
import './icons/SkipBack.js';
|
|
309
316
|
import './icons/SkipForward.js';
|
|
310
317
|
import './icons/Slack.js';
|
|
@@ -315,6 +322,7 @@ import './icons/Smile.js';
|
|
|
315
322
|
import './icons/Sofa.js';
|
|
316
323
|
import './icons/Speaker.js';
|
|
317
324
|
import './icons/Square.js';
|
|
325
|
+
import './icons/Stamp.js';
|
|
318
326
|
import './icons/StarFilled.js';
|
|
319
327
|
import './icons/StarHalf.js';
|
|
320
328
|
import './icons/Star.js';
|
|
@@ -336,6 +344,7 @@ import './icons/ToggleRight.js';
|
|
|
336
344
|
import './icons/Tool.js';
|
|
337
345
|
import './icons/ToothFillingCracked.js';
|
|
338
346
|
import './icons/TrailerParts.js';
|
|
347
|
+
import './icons/Translation.js';
|
|
339
348
|
import './icons/Trash2.js';
|
|
340
349
|
import './icons/Trash.js';
|
|
341
350
|
import './icons/Trello.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.stories.js","sources":["../../../../../src/lib/components/icon/index.stories.tsx"],"sourcesContent":["import { IconWrapper, IconWrapperProps } from './IconWrapper';\nimport * as icons from './icons';\n\nconst iconsList = Object.keys(icons);\ntype IconKey = typeof iconsList[number];\n\nconst story = {\n title: 'JSX/Icon',\n component: IconWrapper,\n argTypes: {\n icon: {\n description: 'Identifier key of the icon',\n table: {\n type: { \n summary: 'IconKey (see Available Icons story for all icons)'\n },\n },\n control: 'select',\n options: iconsList,\n },\n size: {\n description: 'Icon size',\n },\n color: {\n description: 'Icon color',\n },\n className: {\n description: 'Class name for updating components styles',\n control: 'text',\n table: {\n type: { \n summary: 'Your own custom classnames can be added here'\n },\n },\n },\n },\n args: {\n icon: 'InfoIcon',\n size: 32,\n color: 'primary-500',\n noMargin: false,\n className: ''\n }\n};\n\nexport const IconStory = ({ color, className, icon, size }: IconWrapperProps & { icon: IconKey }) => {\n // @ts-ignore\n const Icon = icons?.[icon];\n\n return Icon && (\n <Icon\n size={size}\n color={color}\n className={className}\n />\n );\n}\n\nIconStory.storyName = \"Icon\";\n\nexport default story;\n"],"names":["_jsx"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.stories.js","sources":["../../../../../src/lib/components/icon/index.stories.tsx"],"sourcesContent":["import { IconWrapper, IconWrapperProps } from './IconWrapper';\nimport * as icons from './icons';\n\nconst iconsList = Object.keys(icons);\ntype IconKey = typeof iconsList[number];\n\nconst story = {\n title: 'JSX/Icon',\n component: IconWrapper,\n argTypes: {\n icon: {\n description: 'Identifier key of the icon',\n table: {\n type: { \n summary: 'IconKey (see Available Icons story for all icons)'\n },\n },\n control: 'select',\n options: iconsList,\n },\n size: {\n description: 'Icon size',\n },\n color: {\n description: 'Icon color',\n },\n className: {\n description: 'Class name for updating components styles',\n control: 'text',\n table: {\n type: { \n summary: 'Your own custom classnames can be added here'\n },\n },\n },\n },\n args: {\n icon: 'InfoIcon',\n size: 32,\n color: 'primary-500',\n noMargin: false,\n className: ''\n }\n};\n\nexport const IconStory = ({ color, className, icon, size }: IconWrapperProps & { icon: IconKey }) => {\n // @ts-ignore\n const Icon = icons?.[icon];\n\n return Icon && (\n <Icon\n size={size}\n color={color}\n className={className}\n />\n );\n}\n\nIconStory.storyName = \"Icon\";\n\nexport default story;\n"],"names":["_jsx"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,IAAM,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IAG/B,KAAK,GAAG;IACZ,KAAK,EAAE,UAAU;IACjB,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE;QACR,IAAI,EAAE;YACJ,WAAW,EAAE,4BAA4B;YACzC,KAAK,EAAE;gBACL,IAAI,EAAE;oBACJ,OAAO,EAAE,mDAAmD;iBAC7D;aACF;YACD,OAAO,EAAE,QAAQ;YACjB,OAAO,EAAE,SAAS;SACnB;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,WAAW;SACzB;QACD,KAAK,EAAE;YACL,WAAW,EAAE,YAAY;SAC1B;QACD,SAAS,EAAE;YACT,WAAW,EAAE,2CAA2C;YACxD,OAAO,EAAE,MAAM;YACf,KAAK,EAAE;gBACL,IAAI,EAAE;oBACJ,OAAO,EAAE,8CAA8C;iBACxD;aACF;SACF;KACF;IACD,IAAI,EAAE;QACJ,IAAI,EAAE,UAAU;QAChB,IAAI,EAAE,EAAE;QACR,KAAK,EAAE,aAAa;QACpB,QAAQ,EAAE,KAAK;QACf,SAAS,EAAE,EAAE;KACd;EACD;IAEW,SAAS,GAAG,UAAC,EAAsE;QAApE,KAAK,WAAA,EAAE,SAAS,eAAA,EAAE,IAAI,UAAA,EAAE,IAAI,UAAA;;IAEtD,IAAM,IAAI,GAAG,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAG,IAAI,CAAC,CAAC;IAE3B,OAAO,IAAI,KACTA,IAAC,IAAI,IACH,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,KAAK,EACZ,SAAS,EAAE,SAAS,GACpB,CACH,CAAC;AACJ,EAAC;AAED,SAAS,CAAC,SAAS,GAAG,MAAM;;;;;"}
|