@team-monolith/cds 0.7.0 → 0.8.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.
Files changed (69) hide show
  1. package/@types/emotion.d.ts +70 -0
  2. package/dist/components/AlertDialog/AlertDialog.js +8 -9
  3. package/dist/components/AlertDialog/AlertDialogTitle.js +3 -6
  4. package/dist/components/Banner.js +1 -1
  5. package/dist/components/InputBase.js +1 -1
  6. package/dist/components/Tag.js +1 -1
  7. package/dist/icons/Arrows.d.ts +433 -0
  8. package/dist/icons/Arrows.js +228 -0
  9. package/dist/icons/Buildings.d.ts +233 -0
  10. package/dist/icons/Buildings.js +128 -0
  11. package/dist/icons/Business.d.ts +769 -0
  12. package/dist/icons/Business.js +396 -0
  13. package/dist/icons/Communication.d.ts +257 -0
  14. package/dist/icons/Communication.js +140 -0
  15. package/dist/icons/Design.d.ts +657 -0
  16. package/dist/icons/Design.js +340 -0
  17. package/dist/icons/Development.d.ts +201 -0
  18. package/dist/icons/Development.js +112 -0
  19. package/dist/icons/Device.d.ts +665 -0
  20. package/dist/icons/Device.js +344 -0
  21. package/dist/icons/Document.d.ts +809 -0
  22. package/dist/icons/Document.js +416 -0
  23. package/dist/icons/Editor.d.ts +457 -0
  24. package/dist/icons/Editor.js +240 -0
  25. package/dist/icons/Finance.d.ts +561 -0
  26. package/dist/icons/Finance.js +292 -0
  27. package/dist/icons/Health & Medical.d.ts +249 -0
  28. package/dist/icons/Health & Medical.js +136 -0
  29. package/dist/icons/Logos.d.ts +897 -0
  30. package/dist/icons/Logos.js +460 -0
  31. package/dist/icons/Map.d.ts +697 -0
  32. package/dist/icons/Map.js +360 -0
  33. package/dist/icons/Media.d.ts +873 -0
  34. package/dist/icons/Media.js +448 -0
  35. package/dist/icons/Others.d.ts +417 -0
  36. package/dist/icons/Others.js +220 -0
  37. package/dist/icons/System.d.ts +1049 -0
  38. package/dist/icons/System.js +536 -0
  39. package/dist/icons/User & Faces.d.ts +449 -0
  40. package/dist/icons/User & Faces.js +236 -0
  41. package/dist/icons/Weather.d.ts +321 -0
  42. package/dist/icons/Weather.js +172 -0
  43. package/dist/icons/index.d.ts +18 -0
  44. package/dist/icons/index.js +18 -0
  45. package/dist/index.d.ts +2 -7
  46. package/dist/index.js +2 -7
  47. package/dist/patterns/Dialog/DialogTitle.js +1 -1
  48. package/dist/patterns/Dropdown/Dropdown.js +1 -1
  49. package/dist/patterns/Dropdown/DropdownItem.js +1 -1
  50. package/dist/patterns/Table/TableCell.js +3 -3
  51. package/package.json +7 -4
  52. package/dist/components/AlertDialog/AlertDialogContext.d.ts +0 -5
  53. package/dist/components/AlertDialog/AlertDialogContext.js +0 -2
  54. package/dist/icons/Arrows/index.d.ts +0 -2
  55. package/dist/icons/Arrows/index.js +0 -2
  56. package/dist/icons/Media/index.d.ts +0 -2
  57. package/dist/icons/Media/index.js +0 -2
  58. package/dist/icons/System/index.d.ts +0 -2
  59. package/dist/icons/System/index.js +0 -2
  60. package/dist/icons/arrows.d.ts +0 -28
  61. package/dist/icons/arrows.js +0 -21
  62. package/dist/icons/brand.d.ts +0 -4
  63. package/dist/icons/brand.js +0 -13
  64. package/dist/icons/design.d.ts +0 -4
  65. package/dist/icons/design.js +0 -13
  66. package/dist/icons/map.d.ts +0 -4
  67. package/dist/icons/map.js +0 -13
  68. package/dist/icons/system.d.ts +0 -31
  69. package/dist/icons/system.js +0 -22
@@ -0,0 +1,70 @@
1
+ import "@emotion/react";
2
+
3
+ interface CodleColors {
4
+ background: {
5
+ neutralBase: string;
6
+ neutralAlt: string;
7
+ neutralAltActive: string;
8
+ neutralAltDisabled: string;
9
+ primary: string;
10
+ primaryActive: string;
11
+ primaryDisabled: string;
12
+ secondary: string;
13
+ secondaryActive: string;
14
+ secondaryDisabled: string;
15
+ danger: string;
16
+ dangerActive: string;
17
+ dangerDisabled: string;
18
+ success: string;
19
+ successActive: string;
20
+ successDisabled: string;
21
+ info: string;
22
+ infoActive: string;
23
+ infoDisabled: string;
24
+ warning: string;
25
+ warningActive: string;
26
+ warningDisabled: string;
27
+ };
28
+ foreground: {
29
+ neutralBase: string;
30
+ neutralBaseDisabled: string;
31
+ neutralAlt: string;
32
+ neutralAltDisabled: string;
33
+ primary: string;
34
+ primaryDisabled: string;
35
+ secondary: string;
36
+ secondaryDisabled: string;
37
+ danger: string;
38
+ dangerDisabled: string;
39
+ success: string;
40
+ successDisabled: string;
41
+ info: string;
42
+ infoDisabled: string;
43
+ warning: string;
44
+ warningDisabled: string;
45
+ };
46
+ container: {
47
+ primaryContainer: string;
48
+ primaryOnContainer: string;
49
+ secondaryContainer: string;
50
+ secondaryOnContainer: string;
51
+ dangerContainer: string;
52
+ dangerOnContainer: string;
53
+ successContainer: string;
54
+ successOnContainer: string;
55
+ infoContainer: string;
56
+ infoOnContainer: string;
57
+ warningContainer: string;
58
+ warningOnContainer: string;
59
+ obsidianContainer: string;
60
+ obsidianOnContainer: string;
61
+ marbleContainer: string;
62
+ marbleOnContainer: string;
63
+ };
64
+ }
65
+
66
+ declare module "@emotion/react" {
67
+ export interface Theme {
68
+ color: CodleColors;
69
+ }
70
+ }
@@ -24,23 +24,22 @@ var __rest = (this && this.__rest) || function (s, e) {
24
24
  }
25
25
  return t;
26
26
  };
27
- import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
27
+ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
28
28
  /** @jsxImportSource @emotion/react */
29
29
  import { Modal as MuiModal } from "@mui/material";
30
30
  import { css, useTheme } from "@emotion/react";
31
31
  import React from "react";
32
32
  import shadows from "../../foundation/shadows";
33
33
  import styled from "@emotion/styled";
34
- import { MOBILE } from "../../foundation/breakpoints";
35
- import AlertDialogContext from "./AlertDialogContext";
36
34
  export var AlertDialog = React.forwardRef(function (props, ref) {
37
35
  var className = props.className, _a = props.component, Component = _a === void 0 ? "div" : _a, open = props.open, onClose = props.onClose, children = props.children, icon = props.icon, other = __rest(props, ["className", "component", "open", "onClose", "children", "icon"]);
38
36
  var theme = useTheme();
39
- return (_jsx(MuiModal, __assign({ open: open, onClose: onClose, ref: ref }, other, { children: _jsxs(Component, __assign({ className: className, css: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n width: 480px;\n background: ", ";\n box-shadow: ", ";\n border-radius: 16px;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n padding: 24px;\n box-sizing: border-box;\n\n display: grid;\n ", "\n\n gap: 8px 16px;\n\n ", "\n "], ["\n width: 480px;\n background: ", ";\n box-shadow: ", ";\n border-radius: 16px;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n padding: 24px;\n box-sizing: border-box;\n\n display: grid;\n ", "\n\n gap: 8px 16px;\n\n ", "\n "])), theme.color.background.neutralBase, shadows.shadow04, icon
40
- ? css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n grid-template-areas:\n \"icon title\"\n \"iconPadding content\"\n \"actions actions\";\n "], ["\n grid-template-areas:\n \"icon title\"\n \"iconPadding content\"\n \"actions actions\";\n "]))) : css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "], ["\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "]))), MOBILE(css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n width: calc(100% - 24px);\n\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "], ["\n width: calc(100% - 24px);\n\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "]))))) }, { children: [icon && _jsx(IconDiv, { children: icon }), _jsx(AlertDialogContext.Provider, __assign({ value: { icon: icon } }, { children: children }))] })) })));
37
+ return (_jsx(MuiModal, __assign({ open: open, onClose: onClose, ref: ref }, other, { children: _jsxs(Component, __assign({ className: className, css: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n width: 480px;\n background: ", ";\n box-shadow: ", ";\n border-radius: 16px;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n padding: 24px;\n box-sizing: border-box;\n\n display: grid;\n ", "\n\n gap: 8px 16px;\n "], ["\n width: 480px;\n background: ", ";\n box-shadow: ", ";\n border-radius: 16px;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n padding: 24px;\n box-sizing: border-box;\n\n display: grid;\n ", "\n\n gap: 8px 16px;\n "])), theme.color.background.neutralBase, shadows.shadow04, icon
38
+ ? css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n grid-template-areas:\n \"icon title\"\n \"iconPadding content\"\n \"actions actions\";\n "], ["\n grid-template-areas:\n \"icon title\"\n \"iconPadding content\"\n \"actions actions\";\n "]))) : css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "], ["\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "])))) }, { children: [icon && (_jsxs(_Fragment, { children: [_jsx(IconDiv, { children: icon }), _jsx(IconPadding, {})] })), children] })) })));
41
39
  });
42
- var IconDiv = styled.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n display: flex;\n justify-content: center;\n align-items: center;\n grid-area: icon;\n ", "\n svg {\n width: 32px;\n height: 32px;\n }\n\n ", "\n"], ["\n display: flex;\n justify-content: center;\n align-items: center;\n grid-area: icon;\n ", "\n svg {\n width: 32px;\n height: 32px;\n }\n\n ", "\n"])), function (_a) {
40
+ var IconDiv = styled.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n display: flex;\n justify-content: center;\n align-items: center;\n grid-area: icon;\n ", "\n svg {\n width: 32px;\n height: 32px;\n }\n"], ["\n display: flex;\n justify-content: center;\n align-items: center;\n grid-area: icon;\n ", "\n svg {\n width: 32px;\n height: 32px;\n }\n"])), function (_a) {
43
41
  var theme = _a.theme;
44
- return css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n color: ", ";\n "], ["\n color: ", ";\n "])), theme.color.background.infoActive);
45
- }, MOBILE(css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n display: none;\n "], ["\n display: none;\n "])))));
46
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
42
+ return css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n color: ", ";\n "], ["\n color: ", ";\n "])), theme.color.background.infoActive);
43
+ });
44
+ var IconPadding = styled.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n grid-area: iconPadding;\n"], ["\n grid-area: iconPadding;\n"])));
45
+ var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6;
@@ -29,13 +29,10 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "@emotion/reac
29
29
  import { css, useTheme } from "@emotion/react";
30
30
  import React from "react";
31
31
  import SquareButton from "../SquareButton";
32
- import { CloseFillIcon } from "../../icons/system";
33
- import AlertDialogContext from "./AlertDialogContext";
34
- import { MOBILE } from "../../foundation/breakpoints";
32
+ import { CloseFillIcon } from "../../icons";
35
33
  export var AlertDialogTitle = React.forwardRef(function (props, ref) {
36
34
  var className = props.className, _a = props.component, Component = _a === void 0 ? "div" : _a, onClose = props.onClose, children = props.children, other = __rest(props, ["className", "component", "onClose", "children"]);
37
- var icon = React.useContext(AlertDialogContext).icon;
38
35
  var theme = useTheme();
39
- return (_jsx(_Fragment, { children: _jsxs(Component, __assign({}, other, { ref: ref, className: className, css: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n grid-area: title;\n font-family: \"Pretendard\";\n font-style: normal;\n font-weight: 500;\n font-size: 20px;\n line-height: 36px;\n color: ", ";\n\n display: flex;\n justify-content: space-between;\n "], ["\n grid-area: title;\n font-family: \"Pretendard\";\n font-style: normal;\n font-weight: 500;\n font-size: 20px;\n line-height: 36px;\n color: ", ";\n\n display: flex;\n justify-content: space-between;\n "])), theme.color.foreground.neutralBase) }, { children: [_jsxs("div", __assign({ css: css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n gap: 16px;\n "], ["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n gap: 16px;\n "]))) }, { children: [icon && (_jsx("div", __assign({ css: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n display: none;\n ", "\n "], ["\n display: none;\n ", "\n "])), MOBILE(css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n justify-content: center;\n align-items: center;\n color: ", ";\n\n svg {\n width: 32px;\n height: 32px;\n }\n "], ["\n display: flex;\n justify-content: center;\n align-items: center;\n color: ", ";\n\n svg {\n width: 32px;\n height: 32px;\n }\n "])), theme.color.background.infoActive))) }, { children: icon }))), children] })), onClose && (_jsx(SquareButton, { color: "icon", size: "small", icon: _jsx(CloseFillIcon, {}), onClick: onClose }))] })) }));
36
+ return (_jsx(_Fragment, { children: _jsxs(Component, __assign({}, other, { ref: ref, className: className, css: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n grid-area: title;\n font-family: \"Pretendard\";\n font-style: normal;\n font-weight: 500;\n font-size: 20px;\n line-height: 36px;\n color: ", ";\n\n display: flex;\n justify-content: space-between;\n "], ["\n grid-area: title;\n font-family: \"Pretendard\";\n font-style: normal;\n font-weight: 500;\n font-size: 20px;\n line-height: 36px;\n color: ", ";\n\n display: flex;\n justify-content: space-between;\n "])), theme.color.foreground.neutralBase) }, { children: [children, onClose && (_jsx(SquareButton, { color: "icon", size: "small", icon: _jsx(CloseFillIcon, {}), onClick: onClose }))] })) }));
40
37
  });
41
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4;
38
+ var templateObject_1;
@@ -30,7 +30,7 @@ import { css, useTheme } from "@emotion/react";
30
30
  import styled from "@emotion/styled";
31
31
  import React from "react";
32
32
  import COLOR from "../foundation/color";
33
- import { CloseFillIcon } from "../icons/system";
33
+ import { CloseFillIcon } from "../icons";
34
34
  import { RESET_BUTTON } from "../utils/reset";
35
35
  var COLOR_TO_STYLE = function (theme, color) {
36
36
  return ({
@@ -16,7 +16,7 @@ var __assign = (this && this.__assign) || function () {
16
16
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
17
17
  import { css } from "@emotion/react";
18
18
  import styled from "@emotion/styled";
19
- import { CloseCircleFillIcon } from "../icons/system";
19
+ import { CloseCircleFillIcon } from "../icons";
20
20
  import { RESET_BUTTON } from "../utils/reset";
21
21
  var COLOR_TO_INPUT_STYLES = function (theme, color, disabled) {
22
22
  if (disabled) {
@@ -29,7 +29,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
29
29
  import { css } from "@emotion/react";
30
30
  import styled from "@emotion/styled";
31
31
  import React from "react";
32
- import { CloseFillIcon } from "../icons/system";
32
+ import { CloseFillIcon } from "../icons";
33
33
  import { useTheme } from "@emotion/react";
34
34
  var COLOR_TO_STYLE = function (theme, color) {
35
35
  return ({
@@ -0,0 +1,433 @@
1
+ /// <reference types="react" />
2
+ export { default as arrowDownCircleFillSvg } from "remixicon/icons/Arrows/arrow-down-circle-fill.svg";
3
+ export declare const ArrowDownCircleFillIcon: (props: {
4
+ className?: string;
5
+ }) => JSX.Element;
6
+ export { default as arrowDownCircleLineSvg } from "remixicon/icons/Arrows/arrow-down-circle-line.svg";
7
+ export declare const ArrowDownCircleLineIcon: (props: {
8
+ className?: string;
9
+ }) => JSX.Element;
10
+ export { default as arrowDownDoubleFillSvg } from "remixicon/icons/Arrows/arrow-down-double-fill.svg";
11
+ export declare const ArrowDownDoubleFillIcon: (props: {
12
+ className?: string;
13
+ }) => JSX.Element;
14
+ export { default as arrowDownDoubleLineSvg } from "remixicon/icons/Arrows/arrow-down-double-line.svg";
15
+ export declare const ArrowDownDoubleLineIcon: (props: {
16
+ className?: string;
17
+ }) => JSX.Element;
18
+ export { default as arrowDownFillSvg } from "remixicon/icons/Arrows/arrow-down-fill.svg";
19
+ export declare const ArrowDownFillIcon: (props: {
20
+ className?: string;
21
+ }) => JSX.Element;
22
+ export { default as arrowDownLineSvg } from "remixicon/icons/Arrows/arrow-down-line.svg";
23
+ export declare const ArrowDownLineIcon: (props: {
24
+ className?: string;
25
+ }) => JSX.Element;
26
+ export { default as arrowDownSFillSvg } from "remixicon/icons/Arrows/arrow-down-s-fill.svg";
27
+ export declare const ArrowDownSFillIcon: (props: {
28
+ className?: string;
29
+ }) => JSX.Element;
30
+ export { default as arrowDownSLineSvg } from "remixicon/icons/Arrows/arrow-down-s-line.svg";
31
+ export declare const ArrowDownSLineIcon: (props: {
32
+ className?: string;
33
+ }) => JSX.Element;
34
+ export { default as arrowDropDownFillSvg } from "remixicon/icons/Arrows/arrow-drop-down-fill.svg";
35
+ export declare const ArrowDropDownFillIcon: (props: {
36
+ className?: string;
37
+ }) => JSX.Element;
38
+ export { default as arrowDropDownLineSvg } from "remixicon/icons/Arrows/arrow-drop-down-line.svg";
39
+ export declare const ArrowDropDownLineIcon: (props: {
40
+ className?: string;
41
+ }) => JSX.Element;
42
+ export { default as arrowDropLeftFillSvg } from "remixicon/icons/Arrows/arrow-drop-left-fill.svg";
43
+ export declare const ArrowDropLeftFillIcon: (props: {
44
+ className?: string;
45
+ }) => JSX.Element;
46
+ export { default as arrowDropLeftLineSvg } from "remixicon/icons/Arrows/arrow-drop-left-line.svg";
47
+ export declare const ArrowDropLeftLineIcon: (props: {
48
+ className?: string;
49
+ }) => JSX.Element;
50
+ export { default as arrowDropRightFillSvg } from "remixicon/icons/Arrows/arrow-drop-right-fill.svg";
51
+ export declare const ArrowDropRightFillIcon: (props: {
52
+ className?: string;
53
+ }) => JSX.Element;
54
+ export { default as arrowDropRightLineSvg } from "remixicon/icons/Arrows/arrow-drop-right-line.svg";
55
+ export declare const ArrowDropRightLineIcon: (props: {
56
+ className?: string;
57
+ }) => JSX.Element;
58
+ export { default as arrowDropUpFillSvg } from "remixicon/icons/Arrows/arrow-drop-up-fill.svg";
59
+ export declare const ArrowDropUpFillIcon: (props: {
60
+ className?: string;
61
+ }) => JSX.Element;
62
+ export { default as arrowDropUpLineSvg } from "remixicon/icons/Arrows/arrow-drop-up-line.svg";
63
+ export declare const ArrowDropUpLineIcon: (props: {
64
+ className?: string;
65
+ }) => JSX.Element;
66
+ export { default as arrowGoBackFillSvg } from "remixicon/icons/Arrows/arrow-go-back-fill.svg";
67
+ export declare const ArrowGoBackFillIcon: (props: {
68
+ className?: string;
69
+ }) => JSX.Element;
70
+ export { default as arrowGoBackLineSvg } from "remixicon/icons/Arrows/arrow-go-back-line.svg";
71
+ export declare const ArrowGoBackLineIcon: (props: {
72
+ className?: string;
73
+ }) => JSX.Element;
74
+ export { default as arrowGoForwardFillSvg } from "remixicon/icons/Arrows/arrow-go-forward-fill.svg";
75
+ export declare const ArrowGoForwardFillIcon: (props: {
76
+ className?: string;
77
+ }) => JSX.Element;
78
+ export { default as arrowGoForwardLineSvg } from "remixicon/icons/Arrows/arrow-go-forward-line.svg";
79
+ export declare const ArrowGoForwardLineIcon: (props: {
80
+ className?: string;
81
+ }) => JSX.Element;
82
+ export { default as arrowLeftCircleFillSvg } from "remixicon/icons/Arrows/arrow-left-circle-fill.svg";
83
+ export declare const ArrowLeftCircleFillIcon: (props: {
84
+ className?: string;
85
+ }) => JSX.Element;
86
+ export { default as arrowLeftCircleLineSvg } from "remixicon/icons/Arrows/arrow-left-circle-line.svg";
87
+ export declare const ArrowLeftCircleLineIcon: (props: {
88
+ className?: string;
89
+ }) => JSX.Element;
90
+ export { default as arrowLeftDoubleFillSvg } from "remixicon/icons/Arrows/arrow-left-double-fill.svg";
91
+ export declare const ArrowLeftDoubleFillIcon: (props: {
92
+ className?: string;
93
+ }) => JSX.Element;
94
+ export { default as arrowLeftDoubleLineSvg } from "remixicon/icons/Arrows/arrow-left-double-line.svg";
95
+ export declare const ArrowLeftDoubleLineIcon: (props: {
96
+ className?: string;
97
+ }) => JSX.Element;
98
+ export { default as arrowLeftDownFillSvg } from "remixicon/icons/Arrows/arrow-left-down-fill.svg";
99
+ export declare const ArrowLeftDownFillIcon: (props: {
100
+ className?: string;
101
+ }) => JSX.Element;
102
+ export { default as arrowLeftDownLineSvg } from "remixicon/icons/Arrows/arrow-left-down-line.svg";
103
+ export declare const ArrowLeftDownLineIcon: (props: {
104
+ className?: string;
105
+ }) => JSX.Element;
106
+ export { default as arrowLeftFillSvg } from "remixicon/icons/Arrows/arrow-left-fill.svg";
107
+ export declare const ArrowLeftFillIcon: (props: {
108
+ className?: string;
109
+ }) => JSX.Element;
110
+ export { default as arrowLeftLineSvg } from "remixicon/icons/Arrows/arrow-left-line.svg";
111
+ export declare const ArrowLeftLineIcon: (props: {
112
+ className?: string;
113
+ }) => JSX.Element;
114
+ export { default as arrowLeftRightFillSvg } from "remixicon/icons/Arrows/arrow-left-right-fill.svg";
115
+ export declare const ArrowLeftRightFillIcon: (props: {
116
+ className?: string;
117
+ }) => JSX.Element;
118
+ export { default as arrowLeftRightLineSvg } from "remixicon/icons/Arrows/arrow-left-right-line.svg";
119
+ export declare const ArrowLeftRightLineIcon: (props: {
120
+ className?: string;
121
+ }) => JSX.Element;
122
+ export { default as arrowLeftSFillSvg } from "remixicon/icons/Arrows/arrow-left-s-fill.svg";
123
+ export declare const ArrowLeftSFillIcon: (props: {
124
+ className?: string;
125
+ }) => JSX.Element;
126
+ export { default as arrowLeftSLineSvg } from "remixicon/icons/Arrows/arrow-left-s-line.svg";
127
+ export declare const ArrowLeftSLineIcon: (props: {
128
+ className?: string;
129
+ }) => JSX.Element;
130
+ export { default as arrowLeftUpFillSvg } from "remixicon/icons/Arrows/arrow-left-up-fill.svg";
131
+ export declare const ArrowLeftUpFillIcon: (props: {
132
+ className?: string;
133
+ }) => JSX.Element;
134
+ export { default as arrowLeftUpLineSvg } from "remixicon/icons/Arrows/arrow-left-up-line.svg";
135
+ export declare const ArrowLeftUpLineIcon: (props: {
136
+ className?: string;
137
+ }) => JSX.Element;
138
+ export { default as arrowRightCircleFillSvg } from "remixicon/icons/Arrows/arrow-right-circle-fill.svg";
139
+ export declare const ArrowRightCircleFillIcon: (props: {
140
+ className?: string;
141
+ }) => JSX.Element;
142
+ export { default as arrowRightCircleLineSvg } from "remixicon/icons/Arrows/arrow-right-circle-line.svg";
143
+ export declare const ArrowRightCircleLineIcon: (props: {
144
+ className?: string;
145
+ }) => JSX.Element;
146
+ export { default as arrowRightDoubleFillSvg } from "remixicon/icons/Arrows/arrow-right-double-fill.svg";
147
+ export declare const ArrowRightDoubleFillIcon: (props: {
148
+ className?: string;
149
+ }) => JSX.Element;
150
+ export { default as arrowRightDoubleLineSvg } from "remixicon/icons/Arrows/arrow-right-double-line.svg";
151
+ export declare const ArrowRightDoubleLineIcon: (props: {
152
+ className?: string;
153
+ }) => JSX.Element;
154
+ export { default as arrowRightDownFillSvg } from "remixicon/icons/Arrows/arrow-right-down-fill.svg";
155
+ export declare const ArrowRightDownFillIcon: (props: {
156
+ className?: string;
157
+ }) => JSX.Element;
158
+ export { default as arrowRightDownLineSvg } from "remixicon/icons/Arrows/arrow-right-down-line.svg";
159
+ export declare const ArrowRightDownLineIcon: (props: {
160
+ className?: string;
161
+ }) => JSX.Element;
162
+ export { default as arrowRightFillSvg } from "remixicon/icons/Arrows/arrow-right-fill.svg";
163
+ export declare const ArrowRightFillIcon: (props: {
164
+ className?: string;
165
+ }) => JSX.Element;
166
+ export { default as arrowRightLineSvg } from "remixicon/icons/Arrows/arrow-right-line.svg";
167
+ export declare const ArrowRightLineIcon: (props: {
168
+ className?: string;
169
+ }) => JSX.Element;
170
+ export { default as arrowRightSFillSvg } from "remixicon/icons/Arrows/arrow-right-s-fill.svg";
171
+ export declare const ArrowRightSFillIcon: (props: {
172
+ className?: string;
173
+ }) => JSX.Element;
174
+ export { default as arrowRightSLineSvg } from "remixicon/icons/Arrows/arrow-right-s-line.svg";
175
+ export declare const ArrowRightSLineIcon: (props: {
176
+ className?: string;
177
+ }) => JSX.Element;
178
+ export { default as arrowRightUpFillSvg } from "remixicon/icons/Arrows/arrow-right-up-fill.svg";
179
+ export declare const ArrowRightUpFillIcon: (props: {
180
+ className?: string;
181
+ }) => JSX.Element;
182
+ export { default as arrowRightUpLineSvg } from "remixicon/icons/Arrows/arrow-right-up-line.svg";
183
+ export declare const ArrowRightUpLineIcon: (props: {
184
+ className?: string;
185
+ }) => JSX.Element;
186
+ export { default as arrowTurnBackFillSvg } from "remixicon/icons/Arrows/arrow-turn-back-fill.svg";
187
+ export declare const ArrowTurnBackFillIcon: (props: {
188
+ className?: string;
189
+ }) => JSX.Element;
190
+ export { default as arrowTurnBackLineSvg } from "remixicon/icons/Arrows/arrow-turn-back-line.svg";
191
+ export declare const ArrowTurnBackLineIcon: (props: {
192
+ className?: string;
193
+ }) => JSX.Element;
194
+ export { default as arrowTurnForwardFillSvg } from "remixicon/icons/Arrows/arrow-turn-forward-fill.svg";
195
+ export declare const ArrowTurnForwardFillIcon: (props: {
196
+ className?: string;
197
+ }) => JSX.Element;
198
+ export { default as arrowTurnForwardLineSvg } from "remixicon/icons/Arrows/arrow-turn-forward-line.svg";
199
+ export declare const ArrowTurnForwardLineIcon: (props: {
200
+ className?: string;
201
+ }) => JSX.Element;
202
+ export { default as arrowUpCircleFillSvg } from "remixicon/icons/Arrows/arrow-up-circle-fill.svg";
203
+ export declare const ArrowUpCircleFillIcon: (props: {
204
+ className?: string;
205
+ }) => JSX.Element;
206
+ export { default as arrowUpCircleLineSvg } from "remixicon/icons/Arrows/arrow-up-circle-line.svg";
207
+ export declare const ArrowUpCircleLineIcon: (props: {
208
+ className?: string;
209
+ }) => JSX.Element;
210
+ export { default as arrowUpDoubleFillSvg } from "remixicon/icons/Arrows/arrow-up-double-fill.svg";
211
+ export declare const ArrowUpDoubleFillIcon: (props: {
212
+ className?: string;
213
+ }) => JSX.Element;
214
+ export { default as arrowUpDoubleLineSvg } from "remixicon/icons/Arrows/arrow-up-double-line.svg";
215
+ export declare const ArrowUpDoubleLineIcon: (props: {
216
+ className?: string;
217
+ }) => JSX.Element;
218
+ export { default as arrowUpDownFillSvg } from "remixicon/icons/Arrows/arrow-up-down-fill.svg";
219
+ export declare const ArrowUpDownFillIcon: (props: {
220
+ className?: string;
221
+ }) => JSX.Element;
222
+ export { default as arrowUpDownLineSvg } from "remixicon/icons/Arrows/arrow-up-down-line.svg";
223
+ export declare const ArrowUpDownLineIcon: (props: {
224
+ className?: string;
225
+ }) => JSX.Element;
226
+ export { default as arrowUpFillSvg } from "remixicon/icons/Arrows/arrow-up-fill.svg";
227
+ export declare const ArrowUpFillIcon: (props: {
228
+ className?: string;
229
+ }) => JSX.Element;
230
+ export { default as arrowUpLineSvg } from "remixicon/icons/Arrows/arrow-up-line.svg";
231
+ export declare const ArrowUpLineIcon: (props: {
232
+ className?: string;
233
+ }) => JSX.Element;
234
+ export { default as arrowUpSFillSvg } from "remixicon/icons/Arrows/arrow-up-s-fill.svg";
235
+ export declare const ArrowUpSFillIcon: (props: {
236
+ className?: string;
237
+ }) => JSX.Element;
238
+ export { default as arrowUpSLineSvg } from "remixicon/icons/Arrows/arrow-up-s-line.svg";
239
+ export declare const ArrowUpSLineIcon: (props: {
240
+ className?: string;
241
+ }) => JSX.Element;
242
+ export { default as contractLeftFillSvg } from "remixicon/icons/Arrows/contract-left-fill.svg";
243
+ export declare const ContractLeftFillIcon: (props: {
244
+ className?: string;
245
+ }) => JSX.Element;
246
+ export { default as contractLeftLineSvg } from "remixicon/icons/Arrows/contract-left-line.svg";
247
+ export declare const ContractLeftLineIcon: (props: {
248
+ className?: string;
249
+ }) => JSX.Element;
250
+ export { default as contractLeftRightFillSvg } from "remixicon/icons/Arrows/contract-left-right-fill.svg";
251
+ export declare const ContractLeftRightFillIcon: (props: {
252
+ className?: string;
253
+ }) => JSX.Element;
254
+ export { default as contractLeftRightLineSvg } from "remixicon/icons/Arrows/contract-left-right-line.svg";
255
+ export declare const ContractLeftRightLineIcon: (props: {
256
+ className?: string;
257
+ }) => JSX.Element;
258
+ export { default as contractRightFillSvg } from "remixicon/icons/Arrows/contract-right-fill.svg";
259
+ export declare const ContractRightFillIcon: (props: {
260
+ className?: string;
261
+ }) => JSX.Element;
262
+ export { default as contractRightLineSvg } from "remixicon/icons/Arrows/contract-right-line.svg";
263
+ export declare const ContractRightLineIcon: (props: {
264
+ className?: string;
265
+ }) => JSX.Element;
266
+ export { default as contractUpDownFillSvg } from "remixicon/icons/Arrows/contract-up-down-fill.svg";
267
+ export declare const ContractUpDownFillIcon: (props: {
268
+ className?: string;
269
+ }) => JSX.Element;
270
+ export { default as contractUpDownLineSvg } from "remixicon/icons/Arrows/contract-up-down-line.svg";
271
+ export declare const ContractUpDownLineIcon: (props: {
272
+ className?: string;
273
+ }) => JSX.Element;
274
+ export { default as cornerDownLeftFillSvg } from "remixicon/icons/Arrows/corner-down-left-fill.svg";
275
+ export declare const CornerDownLeftFillIcon: (props: {
276
+ className?: string;
277
+ }) => JSX.Element;
278
+ export { default as cornerDownLeftLineSvg } from "remixicon/icons/Arrows/corner-down-left-line.svg";
279
+ export declare const CornerDownLeftLineIcon: (props: {
280
+ className?: string;
281
+ }) => JSX.Element;
282
+ export { default as cornerDownRightFillSvg } from "remixicon/icons/Arrows/corner-down-right-fill.svg";
283
+ export declare const CornerDownRightFillIcon: (props: {
284
+ className?: string;
285
+ }) => JSX.Element;
286
+ export { default as cornerDownRightLineSvg } from "remixicon/icons/Arrows/corner-down-right-line.svg";
287
+ export declare const CornerDownRightLineIcon: (props: {
288
+ className?: string;
289
+ }) => JSX.Element;
290
+ export { default as cornerLeftDownFillSvg } from "remixicon/icons/Arrows/corner-left-down-fill.svg";
291
+ export declare const CornerLeftDownFillIcon: (props: {
292
+ className?: string;
293
+ }) => JSX.Element;
294
+ export { default as cornerLeftDownLineSvg } from "remixicon/icons/Arrows/corner-left-down-line.svg";
295
+ export declare const CornerLeftDownLineIcon: (props: {
296
+ className?: string;
297
+ }) => JSX.Element;
298
+ export { default as cornerLeftUpFillSvg } from "remixicon/icons/Arrows/corner-left-up-fill.svg";
299
+ export declare const CornerLeftUpFillIcon: (props: {
300
+ className?: string;
301
+ }) => JSX.Element;
302
+ export { default as cornerLeftUpLineSvg } from "remixicon/icons/Arrows/corner-left-up-line.svg";
303
+ export declare const CornerLeftUpLineIcon: (props: {
304
+ className?: string;
305
+ }) => JSX.Element;
306
+ export { default as cornerRightDownFillSvg } from "remixicon/icons/Arrows/corner-right-down-fill.svg";
307
+ export declare const CornerRightDownFillIcon: (props: {
308
+ className?: string;
309
+ }) => JSX.Element;
310
+ export { default as cornerRightDownLineSvg } from "remixicon/icons/Arrows/corner-right-down-line.svg";
311
+ export declare const CornerRightDownLineIcon: (props: {
312
+ className?: string;
313
+ }) => JSX.Element;
314
+ export { default as cornerRightUpFillSvg } from "remixicon/icons/Arrows/corner-right-up-fill.svg";
315
+ export declare const CornerRightUpFillIcon: (props: {
316
+ className?: string;
317
+ }) => JSX.Element;
318
+ export { default as cornerRightUpLineSvg } from "remixicon/icons/Arrows/corner-right-up-line.svg";
319
+ export declare const CornerRightUpLineIcon: (props: {
320
+ className?: string;
321
+ }) => JSX.Element;
322
+ export { default as cornerUpLeftDoubleFillSvg } from "remixicon/icons/Arrows/corner-up-left-double-fill.svg";
323
+ export declare const CornerUpLeftDoubleFillIcon: (props: {
324
+ className?: string;
325
+ }) => JSX.Element;
326
+ export { default as cornerUpLeftDoubleLineSvg } from "remixicon/icons/Arrows/corner-up-left-double-line.svg";
327
+ export declare const CornerUpLeftDoubleLineIcon: (props: {
328
+ className?: string;
329
+ }) => JSX.Element;
330
+ export { default as cornerUpLeftFillSvg } from "remixicon/icons/Arrows/corner-up-left-fill.svg";
331
+ export declare const CornerUpLeftFillIcon: (props: {
332
+ className?: string;
333
+ }) => JSX.Element;
334
+ export { default as cornerUpLeftLineSvg } from "remixicon/icons/Arrows/corner-up-left-line.svg";
335
+ export declare const CornerUpLeftLineIcon: (props: {
336
+ className?: string;
337
+ }) => JSX.Element;
338
+ export { default as cornerUpRightDoubleFillSvg } from "remixicon/icons/Arrows/corner-up-right-double-fill.svg";
339
+ export declare const CornerUpRightDoubleFillIcon: (props: {
340
+ className?: string;
341
+ }) => JSX.Element;
342
+ export { default as cornerUpRightDoubleLineSvg } from "remixicon/icons/Arrows/corner-up-right-double-line.svg";
343
+ export declare const CornerUpRightDoubleLineIcon: (props: {
344
+ className?: string;
345
+ }) => JSX.Element;
346
+ export { default as cornerUpRightFillSvg } from "remixicon/icons/Arrows/corner-up-right-fill.svg";
347
+ export declare const CornerUpRightFillIcon: (props: {
348
+ className?: string;
349
+ }) => JSX.Element;
350
+ export { default as cornerUpRightLineSvg } from "remixicon/icons/Arrows/corner-up-right-line.svg";
351
+ export declare const CornerUpRightLineIcon: (props: {
352
+ className?: string;
353
+ }) => JSX.Element;
354
+ export { default as dragMove2FillSvg } from "remixicon/icons/Arrows/drag-move-2-fill.svg";
355
+ export declare const DragMove2FillIcon: (props: {
356
+ className?: string;
357
+ }) => JSX.Element;
358
+ export { default as dragMove2LineSvg } from "remixicon/icons/Arrows/drag-move-2-line.svg";
359
+ export declare const DragMove2LineIcon: (props: {
360
+ className?: string;
361
+ }) => JSX.Element;
362
+ export { default as dragMoveFillSvg } from "remixicon/icons/Arrows/drag-move-fill.svg";
363
+ export declare const DragMoveFillIcon: (props: {
364
+ className?: string;
365
+ }) => JSX.Element;
366
+ export { default as dragMoveLineSvg } from "remixicon/icons/Arrows/drag-move-line.svg";
367
+ export declare const DragMoveLineIcon: (props: {
368
+ className?: string;
369
+ }) => JSX.Element;
370
+ export { default as expandLeftFillSvg } from "remixicon/icons/Arrows/expand-left-fill.svg";
371
+ export declare const ExpandLeftFillIcon: (props: {
372
+ className?: string;
373
+ }) => JSX.Element;
374
+ export { default as expandLeftLineSvg } from "remixicon/icons/Arrows/expand-left-line.svg";
375
+ export declare const ExpandLeftLineIcon: (props: {
376
+ className?: string;
377
+ }) => JSX.Element;
378
+ export { default as expandLeftRightFillSvg } from "remixicon/icons/Arrows/expand-left-right-fill.svg";
379
+ export declare const ExpandLeftRightFillIcon: (props: {
380
+ className?: string;
381
+ }) => JSX.Element;
382
+ export { default as expandLeftRightLineSvg } from "remixicon/icons/Arrows/expand-left-right-line.svg";
383
+ export declare const ExpandLeftRightLineIcon: (props: {
384
+ className?: string;
385
+ }) => JSX.Element;
386
+ export { default as expandRightFillSvg } from "remixicon/icons/Arrows/expand-right-fill.svg";
387
+ export declare const ExpandRightFillIcon: (props: {
388
+ className?: string;
389
+ }) => JSX.Element;
390
+ export { default as expandRightLineSvg } from "remixicon/icons/Arrows/expand-right-line.svg";
391
+ export declare const ExpandRightLineIcon: (props: {
392
+ className?: string;
393
+ }) => JSX.Element;
394
+ export { default as expandUpDownFillSvg } from "remixicon/icons/Arrows/expand-up-down-fill.svg";
395
+ export declare const ExpandUpDownFillIcon: (props: {
396
+ className?: string;
397
+ }) => JSX.Element;
398
+ export { default as expandUpDownLineSvg } from "remixicon/icons/Arrows/expand-up-down-line.svg";
399
+ export declare const ExpandUpDownLineIcon: (props: {
400
+ className?: string;
401
+ }) => JSX.Element;
402
+ export { default as skipDownFillSvg } from "remixicon/icons/Arrows/skip-down-fill.svg";
403
+ export declare const SkipDownFillIcon: (props: {
404
+ className?: string;
405
+ }) => JSX.Element;
406
+ export { default as skipDownLineSvg } from "remixicon/icons/Arrows/skip-down-line.svg";
407
+ export declare const SkipDownLineIcon: (props: {
408
+ className?: string;
409
+ }) => JSX.Element;
410
+ export { default as skipLeftFillSvg } from "remixicon/icons/Arrows/skip-left-fill.svg";
411
+ export declare const SkipLeftFillIcon: (props: {
412
+ className?: string;
413
+ }) => JSX.Element;
414
+ export { default as skipLeftLineSvg } from "remixicon/icons/Arrows/skip-left-line.svg";
415
+ export declare const SkipLeftLineIcon: (props: {
416
+ className?: string;
417
+ }) => JSX.Element;
418
+ export { default as skipRightFillSvg } from "remixicon/icons/Arrows/skip-right-fill.svg";
419
+ export declare const SkipRightFillIcon: (props: {
420
+ className?: string;
421
+ }) => JSX.Element;
422
+ export { default as skipRightLineSvg } from "remixicon/icons/Arrows/skip-right-line.svg";
423
+ export declare const SkipRightLineIcon: (props: {
424
+ className?: string;
425
+ }) => JSX.Element;
426
+ export { default as skipUpFillSvg } from "remixicon/icons/Arrows/skip-up-fill.svg";
427
+ export declare const SkipUpFillIcon: (props: {
428
+ className?: string;
429
+ }) => JSX.Element;
430
+ export { default as skipUpLineSvg } from "remixicon/icons/Arrows/skip-up-line.svg";
431
+ export declare const SkipUpLineIcon: (props: {
432
+ className?: string;
433
+ }) => JSX.Element;