trely-ui-kit 0.1.0
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/README.md +15 -0
- package/dist/components/Button/Button.d.ts +12 -0
- package/dist/components/Button/Button.d.ts.map +1 -0
- package/dist/components/Icon/Icon.d.ts +7 -0
- package/dist/components/Icon/Icon.d.ts.map +1 -0
- package/dist/components/Icon/icons/AddMediaIcon.d.ts +4 -0
- package/dist/components/Icon/icons/AddMediaIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/ArrowDownIcon.d.ts +4 -0
- package/dist/components/Icon/icons/ArrowDownIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/ArrowLeftIcon.d.ts +4 -0
- package/dist/components/Icon/icons/ArrowLeftIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/ArrowRightIcon.d.ts +4 -0
- package/dist/components/Icon/icons/ArrowRightIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/ArrowUpIcon.d.ts +4 -0
- package/dist/components/Icon/icons/ArrowUpIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/CheckmarkIcon.d.ts +4 -0
- package/dist/components/Icon/icons/CheckmarkIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/CrossIcon.d.ts +4 -0
- package/dist/components/Icon/icons/CrossIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/DeleteIcon.d.ts +4 -0
- package/dist/components/Icon/icons/DeleteIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/DownloadIcon.d.ts +4 -0
- package/dist/components/Icon/icons/DownloadIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/EditIcon.d.ts +4 -0
- package/dist/components/Icon/icons/EditIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/FilterIcon.d.ts +4 -0
- package/dist/components/Icon/icons/FilterIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/FireIcon.d.ts +4 -0
- package/dist/components/Icon/icons/FireIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/LongArrowLeftIcon.d.ts +4 -0
- package/dist/components/Icon/icons/LongArrowLeftIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/LongArrowRightIcon.d.ts +4 -0
- package/dist/components/Icon/icons/LongArrowRightIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/PlusIcon.d.ts +4 -0
- package/dist/components/Icon/icons/PlusIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/RegenerateIcon.d.ts +4 -0
- package/dist/components/Icon/icons/RegenerateIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/SearchIcon.d.ts +4 -0
- package/dist/components/Icon/icons/SearchIcon.d.ts.map +1 -0
- package/dist/components/Icon/icons/TimeIcon.d.ts +4 -0
- package/dist/components/Icon/icons/TimeIcon.d.ts.map +1 -0
- package/dist/components/Icon/index.d.ts +21 -0
- package/dist/components/Icon/index.d.ts.map +1 -0
- package/dist/components/Input/Input.d.ts +10 -0
- package/dist/components/Input/Input.d.ts.map +1 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +493 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +80 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ButtonHTMLAttributes, FC, ReactNode } from 'react';
|
|
2
|
+
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
3
|
+
color?: 'gold' | 'green';
|
|
4
|
+
variant?: 'main' | 'secondary' | 'tertiary';
|
|
5
|
+
size?: 'xs' | 's' | 'm' | 'l';
|
|
6
|
+
icon?: boolean;
|
|
7
|
+
leftIcon?: ReactNode;
|
|
8
|
+
rightIcon?: ReactNode;
|
|
9
|
+
loading?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const Button: FC<ButtonProps>;
|
|
12
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAK5D,MAAM,WAAW,WAAY,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC1E,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,OAAO,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,UAAU,CAAC;IAC5C,IAAI,CAAC,EAAE,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IAC9B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,MAAM,EAAE,EAAE,CAAC,WAAW,CAiClC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../src/components/Icon/Icon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAY1C,MAAM,WAAW,SAAU,SAAQ,aAAa,CAAC,aAAa,CAAC;IAC7D,IAAI,CAAC,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,MAAM,GAAG,MAAM,CAAC;IAChD,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,IAAI,EAAE,EAAE,CAAC,SAAS,CAyB9B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AddMediaIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/AddMediaIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,SAAS,CAqCtC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowDownIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/ArrowDownIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,aAAa,EAAE,EAAE,CAAC,SAAS,CAWvC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowLeftIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/ArrowLeftIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,aAAa,EAAE,EAAE,CAAC,SAAS,CAWvC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowRightIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/ArrowRightIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,SAAS,CAWxC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowUpIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/ArrowUpIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,SAAS,CAWrC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckmarkIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/CheckmarkIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,aAAa,EAAE,EAAE,CAAC,SAAS,CAMvC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CrossIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/CrossIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,SAAS,CAAC;AAE1C,eAAO,MAAM,SAAS,EAAE,EAAE,CAAC,SAAS,CAOnC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeleteIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/DeleteIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,SAAS,CAiCpC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/DownloadIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,SAAS,CAatC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EditIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/EditIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,CAyBlC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilterIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/FilterIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,SAAS,CA6BpC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FireIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/FireIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,CAalC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LongArrowLeftIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/LongArrowLeftIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,iBAAiB,EAAE,EAAE,CAAC,SAAS,CAQ3C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LongArrowRightIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/LongArrowRightIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,kBAAkB,EAAE,EAAE,CAAC,SAAS,CAQ5C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlusIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/PlusIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,CAOlC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RegenerateIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/RegenerateIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,SAAS,CAWxC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/SearchIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,SAAS,CAiBpC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TimeIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/icons/TimeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAQ,SAAS,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,CAyBlC,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type { IconProps } from './Icon';
|
|
2
|
+
export { Icon } from './Icon';
|
|
3
|
+
export { AddMediaIcon } from './icons/AddMediaIcon';
|
|
4
|
+
export { ArrowDownIcon } from './icons/ArrowDownIcon';
|
|
5
|
+
export { ArrowLeftIcon } from './icons/ArrowLeftIcon';
|
|
6
|
+
export { ArrowRightIcon } from './icons/ArrowRightIcon';
|
|
7
|
+
export { ArrowUpIcon } from './icons/ArrowUpIcon';
|
|
8
|
+
export { CheckmarkIcon } from './icons/CheckmarkIcon';
|
|
9
|
+
export { CrossIcon } from './icons/CrossIcon';
|
|
10
|
+
export { DeleteIcon } from './icons/DeleteIcon';
|
|
11
|
+
export { DownloadIcon } from './icons/DownloadIcon';
|
|
12
|
+
export { EditIcon } from './icons/EditIcon';
|
|
13
|
+
export { FilterIcon } from './icons/FilterIcon';
|
|
14
|
+
export { FireIcon } from './icons/FireIcon';
|
|
15
|
+
export { LongArrowLeftIcon } from './icons/LongArrowLeftIcon';
|
|
16
|
+
export { LongArrowRightIcon } from './icons/LongArrowRightIcon';
|
|
17
|
+
export { PlusIcon } from './icons/PlusIcon';
|
|
18
|
+
export { RegenerateIcon } from './icons/RegenerateIcon';
|
|
19
|
+
export { SearchIcon } from './icons/SearchIcon';
|
|
20
|
+
export { TimeIcon } from './icons/TimeIcon';
|
|
21
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Icon/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC, InputHTMLAttributes } from 'react';
|
|
2
|
+
export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
3
|
+
label?: string;
|
|
4
|
+
error?: string;
|
|
5
|
+
clearable?: boolean;
|
|
6
|
+
onClear?: () => void;
|
|
7
|
+
name?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare const Input: FC<InputProps>;
|
|
10
|
+
//# sourceMappingURL=Input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/Input/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,mBAAmB,EAAS,MAAM,OAAO,CAAC;AAQvD,MAAM,WAAW,UAAW,SAAQ,mBAAmB,CAAC,gBAAgB,CAAC;IACvE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,KAAK,EAAE,EAAE,CAAC,UAAU,CAqEhC,CAAC"}
|
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--BG-Green: #273C3F;--BG-Light-Green: #456165;--bg-green-5-opacity: rgba(39, 60, 63, .05);--bg-green-10-opacity: rgba(39, 60, 63, .1);--bg-green-15-opacity: rgba(39, 60, 63, .15);--bg-green-30-opacity: rgba(39, 60, 63, .3);--BG-Accent-Gold: #C6A064;--BG-Light-Gold: #E5C28B;--bg-gold-10-opacity: rgba(198, 160, 100, .1);--bg-gold-20-opacity: rgba(198, 160, 100, .2);--bg-gold-30-opacity: rgba(198, 160, 100, .3);--BG-White: #FFF;--bg-black-3-opacity: rgba(0, 0, 0, .03);--bg-black-5-opacity: rgba(0, 0, 0, .05);--bg-black-10-opacity: rgba(0, 0, 0, .1);--bg-black-15-opacity: rgba(0, 0, 0, .15);--bg-black-20-opacity: rgba(0, 0, 0, .2);--Text-Gold: #CEAC75;--Text-Gold-30-opacity: rgba(206, 172, 117, .3);--Text-Gold-70-opacity: rgba(206, 172, 117, .7);--Text-White: #FFF;--Text-White-70-opacity: rgba(255, 255, 255, .7);--Text-Green: #273C3F;--Text-green-70-opacity: rgba(39, 60, 63, .7);--Text-Black: #000000;--Text-Black-30-opacity: rgba(0, 0, 0, .3);--Text-Black-40-opacity: rgba(0, 0, 0, .4);--System-Colours-Error: #F92E1F;--system-colours-error-10-opacity: rgba(249, 46, 31, .1)}._button_1r0ns_1{position:relative;display:inline-flex;align-items:center;justify-content:center;font-weight:600;border-radius:12px;cursor:pointer;transition:all .3s ease;border:none;background:none}._button_1r0ns_1:disabled{cursor:not-allowed}._button--xs_1r0ns_16{border-radius:8px;padding:8px 12px;font-size:14px;font-weight:600;line-height:22px}._button--xs--icon_1r0ns_23{padding:8px}._button--s_1r0ns_26{border-radius:8px;padding:10px 12px;font-size:14px;font-style:normal;font-weight:600;line-height:22px}._button--s--icon_1r0ns_34{padding:10px}._button--m_1r0ns_37{border-radius:10px;padding:12px;font-size:14px;font-style:normal;font-weight:600;line-height:22px}._button--m--icon_1r0ns_45{padding:12px}._button--l_1r0ns_48{border-radius:12px;padding:16px 12px;font-size:16px;font-style:normal;font-weight:600;line-height:24px}._button--l--icon_1r0ns_56{padding:16px}._button-gold--main_1r0ns_59{background-color:var(--BG-Accent-Gold);color:var(--Text-White)}._button-gold--main_1r0ns_59:hover{background-color:var(--BG-Light-Gold)}._button-gold--main_1r0ns_59:active{background-color:var(--BG-Light-Gold);color:var(--Text-White-70-opacity)}._button-gold--main_1r0ns_59:disabled{background-color:var(--bg-gold-30-opacity);color:var(--Text-White)}._button-gold--secondary_1r0ns_74{background-color:var(--bg-gold-10-opacity);color:var(--Text-Gold)}._button-gold--secondary_1r0ns_74:hover{background-color:var(--bg-gold-20-opacity)}._button-gold--secondary_1r0ns_74:active{background-color:var(--bg-gold-20-opacity);color:var(--Text-Gold-70-opacity)}._button-gold--secondary_1r0ns_74:disabled{background:var(--bg-gold-10-opacity);color:var(--Text-Gold-30-opacity)}._button-gold--tertiary_1r0ns_89{background-color:transparent;color:var(--Text-Gold)}._button-gold--tertiary_1r0ns_89:hover{background-color:var(--bg-gold-10-opacity)}._button-gold--tertiary_1r0ns_89:active{background-color:var(--bg-gold-10-opacity);color:var(--Text-Gold-70-opacity)}._button-gold--tertiary_1r0ns_89:disabled{background:transparent;color:var(--Text-Gold);opacity:.4}._button-green--main_1r0ns_105{background-color:var(--BG-Green);color:var(--Text-White)}._button-green--main_1r0ns_105:hover{background-color:var(--BG-Light-Green)}._button-green--main_1r0ns_105:active{background-color:var(--BG-Light-Green);color:var(--Text-White-70-opacity)}._button-green--main_1r0ns_105:disabled{background-color:var(--bg-green-30-opacity);color:var(--Text-White)}._button-green--secondary_1r0ns_120{background-color:var(--bg-green-5-opacity);color:var(--Text-Green)}._button-green--secondary_1r0ns_120:hover{background-color:var(--bg-green-15-opacity)}._button-green--secondary_1r0ns_120:active{background-color:var(--bg-green-15-opacity);color:var(--Text-green-70-opacity)}._button-green--secondary_1r0ns_120:disabled{background:var(--bg-green-10-opacity);color:var(--bg-green-30-opacity)}._button-green--tertiary_1r0ns_135{background-color:transparent;color:var(--Text-Green)}._button-green--tertiary_1r0ns_135:hover{background-color:var(--bg-green-5-opacity)}._button-green--tertiary_1r0ns_135:active{background-color:var(--bg-green-5-opacity);color:var(--Text-green-70-opacity)}._button-green--tertiary_1r0ns_135:disabled{background:transparent;color:var(--Text-Green);opacity:.4}._button__content_1r0ns_152{display:flex;align-items:center;justify-content:center;gap:10px}._button--loading_1r0ns_160 ._button__content_1r0ns_152{opacity:0}._button__loader_1r0ns_164{position:absolute;width:16px;height:16px;border:2px solid currentColor;border-radius:50%;border-top-color:transparent;animation:_spin_1r0ns_1 .6s linear infinite}@keyframes _spin_1r0ns_1{to{transform:rotate(360deg)}}._icon_1urm5_1{display:inline-block;vertical-align:middle;flex-shrink:0;transition:all .2s ease-in-out}._icon_1urm5_1:hover{opacity:.8}._wrapper_4297m_1{width:100%}._label_4297m_5{display:inline-block;font-size:14px;font-weight:500;line-height:22px;color:var(--Text-Black);margin-bottom:10px}._inputContainer_4297m_14{position:relative;width:100%;display:flex}._input_4297m_14{flex:1;font-size:14px;font-weight:500;line-height:22px;color:var(--Text-Black);background:var(--bg-black-3-opacity);border:1px solid var(--bg-black-5-opacity);outline:none;padding:12px;border-radius:8px;transition:all .3s ease}._input_4297m_14::placeholder{color:var(--Text-Black-40-opacity)}._input_4297m_14:hover{border-color:var(--Text-Green)}._input_4297m_14:focus{border-color:var(--Text-Green);box-shadow:0 0 0 3px #d3dad8}._input_4297m_14:disabled{cursor:not-allowed;border-color:var(--bg-black-3-opacity);color:var(--Text-Black-30-opacity)}._input_4297m_14:disabled::placeholder{color:var(--Text-Black-30-opacity)}._inputError_4297m_52:not(:focus){border:1px solid var(--System-Colours-Error, #F92E1F);background:var(--system-colours-error-10-opacity)}._clearButton_4297m_57{position:absolute;top:50%;right:12px;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;width:16px;height:16px;padding:0;background-color:var(--bg-black-10-opacity);border:none;border-radius:100%;cursor:pointer;transition:background-color .3s ease}._clearButton_4297m_57:hover{background-color:var(--bg-black-15-opacity)}._clearButton_4297m_57:active{background-color:var(--bg-black-20-opacity)}._errorText_4297m_81{margin-top:2px;font-size:11px;font-weight:500;line-height:18px;color:var(--System-Colours-Error)}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type { ButtonProps } from './components/Button/Button';
|
|
2
|
+
export { Button } from './components/Button/Button';
|
|
3
|
+
export type { IconProps } from './components/Icon';
|
|
4
|
+
export * from './components/Icon';
|
|
5
|
+
export type { InputProps } from './components/Input/Input';
|
|
6
|
+
export { Input } from './components/Input/Input';
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAC;AAE/B,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACnD,cAAc,mBAAmB,CAAC;AAClC,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require('./index.css');const n=require("react/jsx-runtime"),j=require("react");function b(o){var s,r,t="";if(typeof o=="string"||typeof o=="number")t+=o;else if(typeof o=="object")if(Array.isArray(o)){var d=o.length;for(s=0;s<d;s++)o[s]&&(r=b(o[s]))&&(t&&(t+=" "),t+=r)}else for(r in o)o[r]&&(t&&(t+=" "),t+=r);return t}function _(){for(var o,s,r=0,t="",d=arguments.length;r<d;r++)(o=arguments[r])&&(s=b(o))&&(t&&(t+=" "),t+=s);return t}const J="_button_1r0ns_1",K="_button__content_1r0ns_152",Q="_button__loader_1r0ns_164",W="_spin_1r0ns_1",l={button:J,"button--xs":"_button--xs_1r0ns_16","button--xs--icon":"_button--xs--icon_1r0ns_23","button--s":"_button--s_1r0ns_26","button--s--icon":"_button--s--icon_1r0ns_34","button--m":"_button--m_1r0ns_37","button--m--icon":"_button--m--icon_1r0ns_45","button--l":"_button--l_1r0ns_48","button--l--icon":"_button--l--icon_1r0ns_56","button-gold--main":"_button-gold--main_1r0ns_59","button-gold--secondary":"_button-gold--secondary_1r0ns_74","button-gold--tertiary":"_button-gold--tertiary_1r0ns_89","button-green--main":"_button-green--main_1r0ns_105","button-green--secondary":"_button-green--secondary_1r0ns_120","button-green--tertiary":"_button-green--tertiary_1r0ns_135",button__content:K,"button--loading":"_button--loading_1r0ns_160",button__loader:Q,spin:W},L=({color:o="gold",variant:s="main",size:r="m",icon:t,leftIcon:d,rightIcon:u,loading:p=!1,children:i,className:h="",disabled:x,type:c="button",...w})=>{const k=_(l.button,l[`button-${o}--${s}`],l[`button--${r}`],t&&l[`button--${r}--icon`],p&&l["button--loading"],h);return n.jsxs("button",{className:k,disabled:x||p,type:c,...w,children:[p&&n.jsx("span",{className:l.button__loader}),n.jsxs("span",{className:l.button__content,children:[d,i,u]})]})};L.displayName="Button";const Y="_icon_1urm5_1",z={icon:Y},I={XS:12,S:16,M:20,L:24},e=({size:o=24,color:s="currentColor",className:r="",children:t,...d})=>{const u=_(z.icon,r);return n.jsx("svg",{className:u,width:I[o]||o,height:I[o]||o,fill:"none",stroke:s,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",...d,children:t})};e.displayName="Icon";const M=o=>n.jsxs(e,{...o,children:[n.jsx("circle",{cx:"16.5019",cy:"16.5019",r:"4.50187","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M14.0008 7.99805L5.82585 16.173C5.29519 16.7037 4.99707 17.4234 4.99707 18.1739C4.99707 18.9243 5.29519 19.644 5.82585 20.1747V20.1747C6.3565 20.7054 7.07622 21.0035 7.82668 21.0035C8.57714 21.0035 9.29686 20.7054 9.82751 20.1747L12.1931 17.8091","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M2.99609 13.0003L11.5499 4.44645C12.4786 3.5178 13.7381 2.99609 15.0514 2.99609C16.3647 2.99609 17.6242 3.5178 18.5529 4.44645V4.44645C19.4815 5.37509 20.0032 6.6346 20.0032 7.94791C20.0032 9.26121 19.4815 10.5207 18.5529 11.4494L17.8094 12.1928","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M18.0022 16.5022H15.001","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M16.5022 15.001V18.0022","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});M.displayName="AddMediaIcon";const y=o=>n.jsx(e,{...o,children:n.jsx("path",{d:"M8 10L12 14L16 10","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})});y.displayName="ArrowDownIcon";const g=o=>n.jsx(e,{...o,children:n.jsx("path",{d:"M14 8L10 12L14 16","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})});g.displayName="ArrowLeftIcon";const f=o=>n.jsx(e,{...o,children:n.jsx("path",{d:"M10 16L14 12L10 8","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})});f.displayName="ArrowRightIcon";const N=o=>n.jsx(e,{...o,children:n.jsx("path",{d:"M16 14L12 10L8 14","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})});N.displayName="ArrowUpIcon";const A=o=>n.jsx(e,{...o,children:n.jsx("path",{d:"M7 13.5217L11.1667 17L17 7","stroke-width":"1.5","stroke-linecap":"round"})});A.displayName="CheckmarkIcon";const m=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M17 7L7 17","stroke-width":"1.5","stroke-linecap":"round"}),n.jsx("path",{d:"M7 7L17 17","stroke-width":"1.5","stroke-linecap":"round"})]});m.displayName="CrossIcon";const H=o=>n.jsxs(e,{...o,children:[n.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M16.1378 21H7.85782C6.81082 21 5.94082 20.192 5.86282 19.147L4.96582 7H18.9998L18.1328 19.142C18.0578 20.189 17.1868 21 16.1378 21V21Z","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M12 11V17","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M4 7H20","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M17 7L15.987 4.298C15.694 3.517 14.948 3 14.114 3H9.886C9.052 3 8.306 3.517 8.013 4.298L7 7","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M15.4298 11L14.9998 17","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M8.57016 11L9.00016 17","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});H.displayName="DeleteIcon";const V=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M12 17V3","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M20 21H4","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M17 12L11.999 17.001L6.99902 12","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});V.displayName="DownloadIcon";const v=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M21 11V19C21 20.105 20.105 21 19 21H5C3.895 21 3 20.105 3 19V5C3 3.895 3.895 3 5 3H13","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M20.707 6.12125L9.828 17.0002H7V14.1722L17.879 3.29325C18.27 2.90225 18.903 2.90225 19.293 3.29325L20.707 4.70725C21.098 5.09825 21.098 5.73125 20.707 6.12125Z","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M16.0898 5.08984L18.9098 7.90984","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});v.displayName="EditIcon";const E=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M18 5H21","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M3 5H14","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M10 12H21","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M3 12H6","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M18 19H21","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M3 19H14","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M17.4142 3.58579C18.1953 4.36684 18.1953 5.63317 17.4142 6.41422C16.6332 7.19527 15.3668 7.19527 14.5858 6.41422C13.8047 5.63317 13.8047 4.36684 14.5858 3.58579C15.3668 2.80474 16.6332 2.80474 17.4142 3.58579","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M9.41422 10.5858C10.1953 11.3668 10.1953 12.6332 9.41422 13.4142C8.63317 14.1953 7.36684 14.1953 6.58579 13.4142C5.80474 12.6332 5.80474 11.3668 6.58579 10.5858C7.36684 9.80474 8.63317 9.80474 9.41422 10.5858","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M17.4142 17.5858C18.1953 18.3668 18.1953 19.6332 17.4142 20.4142C16.6332 21.1953 15.3668 21.1953 14.5858 20.4142C13.8047 19.6332 13.8047 18.3668 14.5858 17.5858C15.3668 16.8047 16.6332 16.8047 17.4142 17.5858","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});E.displayName="FilterIcon";const R=o=>n.jsx(e,{...o,children:n.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M6.19807 7.55934L9.68086 3.49609L13.4357 7.87676L15.8653 5.04219L17.802 7.30168C19.0465 8.75357 19.7305 10.6027 19.7305 12.515V12.7726C19.7305 14.8229 18.9161 16.7892 17.4663 18.239C16.0166 19.6887 14.0503 20.5032 12 20.5032V20.5032C7.73059 20.5032 4.26953 17.0421 4.26953 12.7727V12.7727C4.26953 10.8604 4.95359 9.01124 6.19807 7.55934Z","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})});R.displayName="FireIcon";const B=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M5 12H19","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M10 7L5 12","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M10 17L5 12","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});B.displayName="LongArrowLeftIcon";const D=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M19 12H5","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M14 17L19 12","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M14 7L19 12","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});D.displayName="LongArrowRightIcon";const F=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M12 7V17","stroke-width":"1.5","stroke-linecap":"round"}),n.jsx("path",{d:"M7 12H17","stroke-width":"1.5","stroke-linecap":"round"})]});F.displayName="PlusIcon";const S=o=>n.jsx(e,{...o,children:n.jsx("path",{d:"M16.1176 17.6558C17.8646 16.383 19 14.3213 19 11.9944C19 8.1284 15.866 4.99439 12 4.99439H11.5882M12 18.9944C8.13401 18.9944 5 15.8604 5 11.9944C5 9.66748 6.13537 7.60575 7.88235 6.33296M11.1765 20.5591L12.8235 18.912L11.1765 17.265M12.8235 6.7238L11.1765 5.07675L12.8235 3.42969","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})});S.displayName="RegenerateIcon";const T=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M15.7138 6.8382C18.1647 9.28913 18.1647 13.2629 15.7138 15.7138C13.2629 18.1647 9.28913 18.1647 6.8382 15.7138C4.38727 13.2629 4.38727 9.28913 6.8382 6.8382C9.28913 4.38727 13.2629 4.38727 15.7138 6.8382","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M19 19L15.71 15.71","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});T.displayName="SearchIcon";const $=o=>n.jsxs(e,{...o,children:[n.jsx("path",{d:"M16.066 12.1193H11.4141","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("circle",{cx:"12.0174",cy:"11.5164",r:"9.00375","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}),n.jsx("path",{d:"M11.4143 12.1192V6.51465","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]});$.displayName="TimeIcon";const P=j.createContext(null);P.displayName="HookFormContext";const nn=()=>j.useContext(P);typeof window<"u"?j.useLayoutEffect:j.useEffect;const on="_wrapper_4297m_1",tn="_label_4297m_5",en="_inputContainer_4297m_14",rn="_input_4297m_14",sn="_inputError_4297m_52",dn="_clearButton_4297m_57",cn="_errorText_4297m_81",a={wrapper:on,label:tn,inputContainer:en,input:rn,inputError:sn,clearButton:dn,errorText:cn},U=({label:o,error:s,clearable:r=!1,onClear:t,className:d="",value:u,disabled:p,name:i,...h})=>{const x=j.useId(),c=nn(),w=i&&c?c.register(i):{},k=i&&c?.formState?.errors?.[i],C=s||(k&&typeof k=="object"&&"message"in k?String(k.message):void 0),Z=!!(i&&c?c.watch(i):u),q=_(a.wrapper,d),X=_(a.input,{[a.inputError]:!!C}),O=()=>{if(t)t();else if(i&&c)c.setValue(i,"",{shouldValidate:!0,shouldDirty:!0});else if(h.onChange){const G={target:{value:""}};h.onChange(G)}};return n.jsxs("div",{className:q,children:[o&&n.jsx("label",{htmlFor:x,className:a.label,children:o}),n.jsxs("div",{className:a.inputContainer,children:[n.jsx("input",{className:X,value:u,disabled:p,...w,...h,id:x}),r&&Z&&!p&&n.jsx("button",{type:"button",className:a.clearButton,onClick:O,tabIndex:-1,children:n.jsx(m,{size:"XS"})})]}),C&&n.jsx("div",{className:a.errorText,children:C})]})};U.displayName="Input";exports.AddMediaIcon=M;exports.ArrowDownIcon=y;exports.ArrowLeftIcon=g;exports.ArrowRightIcon=f;exports.ArrowUpIcon=N;exports.Button=L;exports.CheckmarkIcon=A;exports.CrossIcon=m;exports.DeleteIcon=H;exports.DownloadIcon=V;exports.EditIcon=v;exports.FilterIcon=E;exports.FireIcon=R;exports.Icon=e;exports.Input=U;exports.LongArrowLeftIcon=B;exports.LongArrowRightIcon=D;exports.PlusIcon=F;exports.RegenerateIcon=S;exports.SearchIcon=T;exports.TimeIcon=$;
|
|
2
|
+
//# sourceMappingURL=index.js.map
|