@shiflo/ui 0.2.3 → 0.2.5

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 (43) hide show
  1. package/dist/components/Button/Button.mjs +72 -69
  2. package/dist/components/Snackbar/Snackbar.mjs +23 -18
  3. package/dist/components/Tag/Tag.mjs +5 -5
  4. package/dist/components/TextField/TextField.mjs +20 -20
  5. package/dist/components/index.d.ts +1 -3
  6. package/dist/components/index.mjs +10 -12
  7. package/dist/theme/typography.mjs +6 -6
  8. package/package.json +4 -2
  9. package/dist/assets/icons/index.d.ts +0 -2
  10. package/dist/assets/icons/index.mjs +0 -48
  11. package/dist/assets/icons/index.ts-BhlTWUs_.js +0 -52
  12. package/dist/assets/icons/line/calendar-line.svg-DHsuXoUL.js +0 -5
  13. package/dist/assets/icons/line/index.d.ts +0 -1
  14. package/dist/assets/icons/line/index.mjs +0 -4
  15. package/dist/assets/icons/solid/arrow-left-solid.svg-C16XJbK9.js +0 -5
  16. package/dist/assets/icons/solid/briefcase-blank-solid.svg-6ppQL_Z4.js +0 -5
  17. package/dist/assets/icons/solid/calendar-days-solid.svg-CIj8vf6t.js +0 -5
  18. package/dist/assets/icons/solid/calendar-lines-solid.svg-D2qG_E7t.js +0 -5
  19. package/dist/assets/icons/solid/calendar-week-solid.svg-CVmrJtif.js +0 -5
  20. package/dist/assets/icons/solid/calendars-solid.svg-rClh_xBu.js +0 -5
  21. package/dist/assets/icons/solid/chart-simple-horizontal-solid.svg-znTJSeQj.js +0 -5
  22. package/dist/assets/icons/solid/check-solid.svg-C41sTTzR.js +0 -5
  23. package/dist/assets/icons/solid/chevron-left-solid.svg-CrKzZ71H.js +0 -5
  24. package/dist/assets/icons/solid/circle-check-solid.svg-D2Pv_oiO.js +0 -5
  25. package/dist/assets/icons/solid/circle-exclamation-solid.svg-CuZt_q4T.js +0 -5
  26. package/dist/assets/icons/solid/circle-info-solid.svg-eMJtJJRm.js +0 -5
  27. package/dist/assets/icons/solid/circle-plus-solid.svg-wYCF_uVS.js +0 -5
  28. package/dist/assets/icons/solid/clock-desk-solid.svg-Dvm3Xip1.js +0 -5
  29. package/dist/assets/icons/solid/gear-solid.svg-C6vEx0Wx.js +0 -5
  30. package/dist/assets/icons/solid/grid-2-solid.svg-BRtzwK6Y.js +0 -5
  31. package/dist/assets/icons/solid/index.d.ts +0 -22
  32. package/dist/assets/icons/solid/index.mjs +0 -46
  33. package/dist/assets/icons/solid/minus-solid.svg-BBiGvc-2.js +0 -5
  34. package/dist/assets/icons/solid/pen-to-square-solid.svg-DUdNcuTM.js +0 -5
  35. package/dist/assets/icons/solid/plus-solid.svg-piiaS3kO.js +0 -5
  36. package/dist/assets/icons/solid/rotate-right-solid.svg-CYW200XH.js +0 -5
  37. package/dist/assets/icons/solid/trash-solid.svg-iJSf_6Y3.js +0 -5
  38. package/dist/assets/icons/solid/xmark-solid.svg-Ce8xHlZn.js +0 -5
  39. package/dist/components/Icon/Icon.d.ts +0 -3
  40. package/dist/components/Icon/Icon.mjs +0 -18
  41. package/dist/components/Icon/Icon.typing.d.ts +0 -11
  42. package/dist/components/Icon/index.d.ts +0 -4
  43. package/dist/components/Icon/index.mjs +0 -4
@@ -1,20 +1,19 @@
1
1
  import { jsxs as s } from "@emotion/react/jsx-runtime";
2
- import S from "@emotion/styled";
3
- const b = S.button`
2
+ import x from "@emotion/styled";
3
+ const b = x.button`
4
4
  display: inline-flex;
5
5
  align-items: center;
6
6
  justify-content: center;
7
- gap: ${({ theme: { spacing: e } }) => e[100]};
8
7
  font-weight: 500;
9
8
  transition: all 0.2s;
10
9
  border: 1px solid transparent;
11
10
 
12
11
  ${({
13
12
  theme: {
14
- mode: e,
15
- palette: { primary: r, secondary: t, neutral: o, gradient: g },
16
- typography: { body1: a, body2: n, small1: c, small2: l },
17
- spacing: d,
13
+ mode: r,
14
+ palette: { primary: e, secondary: a, neutral: o, gradient: d },
15
+ typography: { body1: c, body2: n, small1: l, small2: g },
16
+ spacing: t,
18
17
  radius: h
19
18
  },
20
19
  variant: k,
@@ -25,22 +24,22 @@ const b = S.button`
25
24
  switch (k) {
26
25
  case "ghost":
27
26
  Object.assign(i, {
28
- backgroundColor: r.alpha[10],
29
- color: r.main,
27
+ backgroundColor: e.alpha[10],
28
+ color: e.main,
30
29
  "& svg": {
31
- color: r.main
30
+ color: e.main
32
31
  },
33
32
  "@media (hover: hover)": {
34
33
  "&:hover": {
35
- backgroundColor: r.alpha[20]
34
+ backgroundColor: e.alpha[20]
36
35
  }
37
36
  },
38
37
  "&:active": {
39
38
  transform: "scale(0.9)",
40
- backgroundColor: r.alpha[30]
39
+ backgroundColor: e.alpha[30]
41
40
  },
42
41
  "&:disabled": {
43
- backgroundColor: e === "dark" ? r.alpha[10] : r.alpha[5],
42
+ backgroundColor: r === "dark" ? e.alpha[10] : e.alpha[5],
44
43
  color: o[500],
45
44
  cursor: "not-allowed"
46
45
  }
@@ -48,20 +47,20 @@ const b = S.button`
48
47
  break;
49
48
  case "gradient":
50
49
  Object.assign(i, {
51
- background: g.primaryToAccent,
52
- color: e === "dark" ? o[900] : t.main,
50
+ background: d.primaryToAccent,
51
+ color: r === "dark" ? o[900] : a.main,
53
52
  "& svg": {
54
- color: e === "dark" ? o[900] : t.main
53
+ color: r === "dark" ? o[900] : a.main
55
54
  },
56
55
  "@media (hover: hover)": {
57
56
  "&:hover": {
58
- background: g.primaryToAccent
57
+ background: d.primaryToAccent
59
58
  }
60
59
  },
61
60
  "&:active": {
62
61
  transform: "scale(0.9)",
63
- background: g.primaryToAccent,
64
- boxShadow: `inset 0 0 0 100px ${r.dark}`
62
+ background: d.primaryToAccent,
63
+ boxShadow: `inset 0 0 0 100px ${e.dark}`
65
64
  },
66
65
  "&:disabled": {
67
66
  background: o[200],
@@ -74,10 +73,10 @@ const b = S.button`
74
73
  case "text":
75
74
  Object.assign(i, {
76
75
  backgroundColor: "transparent",
77
- color: e === "dark" ? o[800] : o[700],
76
+ color: r === "dark" ? o[800] : o[700],
78
77
  // 기본 텍스트 색상 (더 강조된 중립색)
79
78
  "& svg": {
80
- color: e === "dark" ? o[800] : o[700]
79
+ color: r === "dark" ? o[800] : o[700]
81
80
  },
82
81
  "@media (hover: hover)": {
83
82
  "&:hover": {
@@ -99,19 +98,19 @@ const b = S.button`
99
98
  default:
100
99
  if (v === "secondary") {
101
100
  Object.assign(i, {
102
- backgroundColor: t.main,
103
- color: e === "dark" ? o[900] : o[700],
101
+ backgroundColor: a.main,
102
+ color: r === "dark" ? o[900] : o[700],
104
103
  "& svg": {
105
- color: e === "dark" ? o[900] : o[700]
104
+ color: r === "dark" ? o[900] : o[700]
106
105
  },
107
106
  "@media (hover: hover)": {
108
107
  "&:hover": {
109
- backgroundColor: t.light
108
+ backgroundColor: a.light
110
109
  }
111
110
  },
112
111
  "&:active": {
113
112
  transform: "scale(0.9)",
114
- backgroundColor: t.dark
113
+ backgroundColor: a.dark
115
114
  },
116
115
  "&:disabled": {
117
116
  backgroundColor: o[200],
@@ -122,19 +121,19 @@ const b = S.button`
122
121
  break;
123
122
  }
124
123
  Object.assign(i, {
125
- backgroundColor: r.main,
126
- color: e === "dark" ? o[900] : t.main,
124
+ backgroundColor: e.main,
125
+ color: r === "dark" ? o[900] : a.main,
127
126
  "& svg": {
128
- color: e === "dark" ? o[900] : t.main
127
+ color: r === "dark" ? o[900] : a.main
129
128
  },
130
129
  "@media (hover: hover)": {
131
130
  "&:hover": {
132
- backgroundColor: r.hover
131
+ backgroundColor: e.hover
133
132
  }
134
133
  },
135
134
  "&:active": {
136
135
  transform: "scale(0.9)",
137
- backgroundColor: r.active
136
+ backgroundColor: e.active
138
137
  },
139
138
  "&:disabled": {
140
139
  backgroundColor: o[200],
@@ -147,49 +146,53 @@ const b = S.button`
147
146
  switch (f) {
148
147
  case "large":
149
148
  Object.assign(i, {
150
- padding: `${d[300]} ${d[350]}`,
149
+ padding: `${t[300]} ${t[350]}`,
151
150
  borderRadius: h[300],
152
- fontSize: a.fontSize,
153
- lineHeight: a.lineHeight,
151
+ fontSize: c.fontSize,
152
+ lineHeight: c.lineHeight,
153
+ gap: t[200],
154
154
  "& svg": {
155
- width: a.fontSize,
156
- height: a.fontSize
155
+ width: `calc(${c.fontSize} + 4px)`,
156
+ height: `calc(${c.fontSize} + 4px)`
157
157
  }
158
158
  });
159
159
  break;
160
160
  case "small":
161
161
  Object.assign(i, {
162
- padding: `${d[100]} ${d[150]}`,
162
+ padding: `${t[100]} ${t[150]}`,
163
163
  borderRadius: h[200],
164
- fontSize: c.fontSize,
165
- lineHeight: c.lineHeight,
164
+ fontSize: l.fontSize,
165
+ lineHeight: l.lineHeight,
166
+ gap: t[100],
166
167
  "& svg": {
167
- width: c.fontSize,
168
- height: c.fontSize
168
+ width: `calc(${l.fontSize} + 4px)`,
169
+ height: `calc(${l.fontSize} + 4px)`
169
170
  }
170
171
  });
171
172
  break;
172
173
  case "xSmall":
173
174
  Object.assign(i, {
174
- padding: `${d[50]} ${d[100]}`,
175
+ padding: `${t[50]} ${t[100]}`,
175
176
  borderRadius: h[150],
176
- fontSize: l.fontSize,
177
- lineHeight: l.lineHeight,
177
+ fontSize: g.fontSize,
178
+ lineHeight: g.lineHeight,
179
+ gap: t[100],
178
180
  "& svg": {
179
- width: l.fontSize,
180
- height: l.fontSize
181
+ width: `calc(${g.fontSize} + 4px)`,
182
+ height: `calc(${g.fontSize} + 4px)`
181
183
  }
182
184
  });
183
185
  break;
184
186
  default:
185
187
  Object.assign(i, {
186
- padding: `${d[200]} ${d[250]}`,
188
+ padding: `${t[200]} ${t[250]}`,
187
189
  borderRadius: h[250],
188
190
  fontSize: n.fontSize,
189
191
  lineHeight: n.lineHeight,
192
+ gap: t[150],
190
193
  "& svg": {
191
- width: n.fontSize,
192
- height: n.fontSize
194
+ width: `calc(${n.fontSize} + 4px)`,
195
+ height: `calc(${n.fontSize} + 4px)`
193
196
  }
194
197
  });
195
198
  break;
@@ -197,34 +200,34 @@ const b = S.button`
197
200
  return i;
198
201
  }}
199
202
  `;
200
- function w({
201
- ref: e,
202
- children: r,
203
- variant: t = "filled",
203
+ function $({
204
+ ref: r,
205
+ children: e,
206
+ variant: a = "filled",
204
207
  size: o = "medium",
205
- color: g = "primary",
206
- startIcon: a,
208
+ color: d = "primary",
209
+ startIcon: c,
207
210
  endIcon: n,
208
- ...c
211
+ ...l
209
212
  }) {
210
- return t === "text" ? /* @__PURE__ */ s(b, { ref: e, variant: "text", size: o, color: "secondary", ...c, children: [
211
- a,
212
- r,
213
+ return a === "text" ? /* @__PURE__ */ s(b, { ref: r, variant: "text", size: o, color: "secondary", ...l, children: [
214
+ c,
215
+ e,
213
216
  n
214
- ] }) : t === "ghost" ? /* @__PURE__ */ s(b, { ref: e, variant: "ghost", size: o, color: "primary", ...c, children: [
215
- a,
216
- r,
217
+ ] }) : a === "ghost" ? /* @__PURE__ */ s(b, { ref: r, variant: "ghost", size: o, color: "primary", ...l, children: [
218
+ c,
219
+ e,
217
220
  n
218
- ] }) : t === "gradient" ? /* @__PURE__ */ s(b, { ref: e, variant: "gradient", size: o, color: "primary", ...c, children: [
219
- a,
220
- r,
221
+ ] }) : a === "gradient" ? /* @__PURE__ */ s(b, { ref: r, variant: "gradient", size: o, color: "primary", ...l, children: [
222
+ c,
223
+ e,
221
224
  n
222
- ] }) : /* @__PURE__ */ s(b, { ref: e, variant: t, size: o, color: g, ...c, children: [
223
- a,
224
- r,
225
+ ] }) : /* @__PURE__ */ s(b, { ref: r, variant: a, size: o, color: d, ...l, children: [
226
+ c,
227
+ e,
225
228
  n
226
229
  ] });
227
230
  }
228
231
  export {
229
- w as default
232
+ $ as default
230
233
  };
@@ -1,8 +1,8 @@
1
- import { jsxs as z, jsx as o } from "@emotion/react/jsx-runtime";
2
- import { useState as $, useRef as b, useImperativeHandle as A, useLayoutEffect as I, useEffect as y } from "react";
1
+ import { jsxs as z, jsx as s } from "@emotion/react/jsx-runtime";
2
+ import { useState as x, useRef as b, useImperativeHandle as A, useLayoutEffect as I, useEffect as y } from "react";
3
3
  import { createPortal as L } from "react-dom";
4
- import i from "@emotion/styled";
5
- const R = i.div`
4
+ import a from "@emotion/styled";
5
+ const R = a.div`
6
6
  position: fixed;
7
7
  bottom: ${({ theme: { spacing: e }, bottom: t }) => `calc(${t || e[800]} + var(--safe-area-inset-bottom, 0px))`};
8
8
  left: 50%;
@@ -26,9 +26,14 @@ const R = i.div`
26
26
  ${({ ease: e }) => e === "in" ? "ease-in" : "ease-out"},
27
27
  transform ${({ transitionDuration: e }) => `${e}ms`},
28
28
  background-color 0.2s;
29
- `, T = i.div`
29
+ `, T = a.div`
30
30
  white-space: nowrap;
31
- `, j = i.div`
31
+ color: ${({
32
+ theme: {
33
+ palette: { common: e }
34
+ }
35
+ }) => e.surface};
36
+ `, j = a.div`
32
37
  flex-grow: 1;
33
38
  display: -webkit-box;
34
39
  overflow: hidden;
@@ -45,7 +50,7 @@ const R = i.div`
45
50
  lineHeight: t.lineHeight,
46
51
  color: e.surface
47
52
  })}
48
- `, F = i.div`
53
+ `, F = a.div`
49
54
  white-space: nowrap;
50
55
  `;
51
56
  function N({
@@ -62,8 +67,8 @@ function N({
62
67
  disableAutoHide: u,
63
68
  ...k
64
69
  }) {
65
- const [S, p] = $(!0), [n, h] = $(!1), a = b(null), s = b(null);
66
- return A(w, () => a.current), I(() => {
70
+ const [S, p] = x(!0), [n, h] = x(!1), i = b(null), o = b(null);
71
+ return A(w, () => i.current), I(() => {
67
72
  let r;
68
73
  return t ? (p(!1), r = requestAnimationFrame(() => {
69
74
  h(!0);
@@ -71,24 +76,24 @@ function N({
71
76
  r && cancelAnimationFrame(r);
72
77
  };
73
78
  }, [t, l]), y(() => {
74
- const r = a.current, x = (E) => {
79
+ const r = i.current, $ = (E) => {
75
80
  t || E.propertyName === "opacity" && p(!0);
76
81
  };
77
- return r?.addEventListener("transitionend", x), () => {
78
- r?.removeEventListener("transitionend", x);
82
+ return r?.addEventListener("transitionend", $), () => {
83
+ r?.removeEventListener("transitionend", $);
79
84
  };
80
85
  }, [t]), y(() => {
81
86
  if (!(u || !n))
82
- return s.current = setTimeout(() => {
87
+ return o.current = setTimeout(() => {
83
88
  c?.();
84
89
  }, d), () => {
85
- s.current && clearTimeout(s.current);
90
+ o.current && clearTimeout(o.current);
86
91
  };
87
92
  }, [u, d, n, c]), S ? null : L(
88
93
  /* @__PURE__ */ z(
89
94
  R,
90
95
  {
91
- ref: a,
96
+ ref: i,
92
97
  transitionDuration: l,
93
98
  ease: t ? "in" : "out",
94
99
  maxWidth: g,
@@ -99,9 +104,9 @@ function N({
99
104
  },
100
105
  ...k,
101
106
  children: [
102
- m && /* @__PURE__ */ o(T, { children: m }),
103
- /* @__PURE__ */ o(j, { children: e }),
104
- f && /* @__PURE__ */ o(F, { children: f })
107
+ m && /* @__PURE__ */ s(T, { children: m }),
108
+ /* @__PURE__ */ s(j, { children: e }),
109
+ f && /* @__PURE__ */ s(F, { children: f })
105
110
  ]
106
111
  }
107
112
  ),
@@ -1,11 +1,11 @@
1
1
  import { jsx as n } from "@emotion/react/jsx-runtime";
2
2
  import a from "@emotion/styled";
3
3
  import r from "../../utils/getValueByPath.mjs";
4
- const s = a.span`
4
+ const h = a.span`
5
5
  transition: all 0.2s;
6
6
  cursor: default;
7
7
 
8
- padding: ${({ theme: { spacing: t } }) => t[100]};
8
+ padding: ${({ theme: { spacing: t } }) => `${t[150]} ${t[200]}`};
9
9
  border-radius: ${({ theme: { radius: t } }) => t[200]};
10
10
 
11
11
  ${({ theme: { palette: t }, color: o, textColor: i }) => {
@@ -26,9 +26,9 @@ const s = a.span`
26
26
  lineHeight: t.lineHeight
27
27
  })};
28
28
  `;
29
- function f(t) {
30
- return /* @__PURE__ */ n(s, { ...t });
29
+ function g(t) {
30
+ return /* @__PURE__ */ n(h, { ...t });
31
31
  }
32
32
  export {
33
- f as default
33
+ g as default
34
34
  };
@@ -1,7 +1,7 @@
1
- import { jsxs as p, jsx as a } from "@emotion/react/jsx-runtime";
1
+ import { jsxs as p, jsx as s } from "@emotion/react/jsx-runtime";
2
2
  import { useState as m } from "react";
3
3
  import l from "@emotion/styled";
4
- const b = l.div`
4
+ const $ = l.div`
5
5
  display: flex;
6
6
  align-items: center;
7
7
  gap: ${({ theme: { spacing: e } }) => e[200]};
@@ -53,8 +53,8 @@ const b = l.div`
53
53
  fontSize: n.fontSize,
54
54
  lineHeight: n.lineHeight,
55
55
  "& svg": {
56
- width: n.fontSize,
57
- height: n.fontSize
56
+ width: `calc(${n.fontSize} + 4px)`,
57
+ height: `calc(${n.fontSize} + 4px)`
58
58
  }
59
59
  });
60
60
  break;
@@ -64,8 +64,8 @@ const b = l.div`
64
64
  fontSize: t.fontSize,
65
65
  lineHeight: t.lineHeight,
66
66
  "& svg": {
67
- width: t.fontSize,
68
- height: t.fontSize
67
+ width: `calc(${t.fontSize} + 4px)`,
68
+ height: `calc(${t.fontSize} + 4px)`
69
69
  }
70
70
  });
71
71
  break;
@@ -75,8 +75,8 @@ const b = l.div`
75
75
  fontSize: o.fontSize,
76
76
  lineHeight: o.lineHeight,
77
77
  "& svg": {
78
- width: o.fontSize,
79
- height: o.fontSize
78
+ width: `calc(${o.fontSize} + 4px)`,
79
+ height: `calc(${o.fontSize} + 4px)`
80
80
  }
81
81
  });
82
82
  break;
@@ -118,7 +118,7 @@ const b = l.div`
118
118
  color: e[500],
119
119
  cursor: "not-allowed"
120
120
  } : {}};
121
- `, w = l.input`
121
+ `, x = l.input`
122
122
  flex-grow: 1;
123
123
  border: none;
124
124
  outline: none;
@@ -135,12 +135,12 @@ const b = l.div`
135
135
  &:disabled {
136
136
  cursor: not-allowed;
137
137
  }
138
- `, S = l.div`
138
+ `, b = l.div`
139
139
  display: flex;
140
140
  align-items: center;
141
141
  justify-content: center;
142
142
  white-space: nowrap;
143
- `, $ = l.div`
143
+ `, w = l.div`
144
144
  display: flex;
145
145
  align-items: center;
146
146
  justify-content: center;
@@ -153,14 +153,14 @@ function F({
153
153
  disabled: t,
154
154
  startIcon: r,
155
155
  endIcon: i,
156
- onFocus: c,
156
+ onFocus: d,
157
157
  onBlur: h,
158
158
  css: u,
159
159
  ...f
160
160
  }) {
161
- const [g, d] = m(!1);
161
+ const [g, c] = m(!1);
162
162
  return /* @__PURE__ */ p(
163
- b,
163
+ $,
164
164
  {
165
165
  variant: e,
166
166
  size: n,
@@ -169,13 +169,13 @@ function F({
169
169
  disabled: t,
170
170
  css: u,
171
171
  children: [
172
- r && /* @__PURE__ */ a(S, { children: r }),
173
- /* @__PURE__ */ a(w, { ...f, onFocus: (s) => {
174
- d(!0), c?.(s);
175
- }, onBlur: (s) => {
176
- d(!1), h?.(s);
172
+ r && /* @__PURE__ */ s(b, { children: r }),
173
+ /* @__PURE__ */ s(x, { ...f, onFocus: (a) => {
174
+ c(!0), d?.(a);
175
+ }, onBlur: (a) => {
176
+ c(!1), h?.(a);
177
177
  }, disabled: t }),
178
- i && /* @__PURE__ */ a($, { children: i })
178
+ i && /* @__PURE__ */ s(w, { children: i })
179
179
  ]
180
180
  }
181
181
  );
@@ -2,7 +2,6 @@ import { default as BottomSheet } from './BottomSheet';
2
2
  import { default as Box } from './Box';
3
3
  import { default as Button } from './Button';
4
4
  import { default as Dialog } from './Dialog';
5
- import { default as Icon } from './Icon';
6
5
  import { default as Overlay } from './Overlay';
7
6
  import { default as Snackbar } from './Snackbar';
8
7
  import { default as Switch } from './Switch';
@@ -13,11 +12,10 @@ export * from './BottomSheet';
13
12
  export * from './Box';
14
13
  export * from './Button';
15
14
  export * from './Dialog';
16
- export * from './Icon';
17
15
  export * from './Overlay';
18
16
  export * from './Snackbar';
19
17
  export * from './Switch';
20
18
  export * from './Tag';
21
19
  export * from './TextField';
22
20
  export * from './Typography';
23
- export { Button, Box, Typography, TextField, Overlay, BottomSheet, Dialog, Icon, Snackbar, Switch, Tag };
21
+ export { Button, Box, Typography, TextField, Overlay, BottomSheet, Dialog, Snackbar, Switch, Tag };
@@ -1,24 +1,22 @@
1
- import { default as a } from "./BottomSheet/BottomSheet.mjs";
1
+ import { default as o } from "./BottomSheet/BottomSheet.mjs";
2
2
  import { default as r } from "./Box/Box.mjs";
3
3
  import { default as l } from "./Button/Button.mjs";
4
4
  import { default as x } from "./Dialog/Dialog.mjs";
5
- import { default as m } from "./Icon/Icon.mjs";
6
- import { default as s } from "./Overlay/Overlay.mjs";
7
- import { default as g } from "./Snackbar/Snackbar.mjs";
8
- import { default as i } from "./Switch/Switch.mjs";
5
+ import { default as m } from "./Overlay/Overlay.mjs";
6
+ import { default as s } from "./Snackbar/Snackbar.mjs";
7
+ import { default as h } from "./Switch/Switch.mjs";
9
8
  import { default as y } from "./Tag/Tag.mjs";
10
9
  import { default as S } from "./TextField/TextField.mjs";
11
- import { default as b } from "./Typography/Typography.mjs";
10
+ import { default as c } from "./Typography/Typography.mjs";
12
11
  export {
13
- a as BottomSheet,
12
+ o as BottomSheet,
14
13
  r as Box,
15
14
  l as Button,
16
15
  x as Dialog,
17
- m as Icon,
18
- s as Overlay,
19
- g as Snackbar,
20
- i as Switch,
16
+ m as Overlay,
17
+ s as Snackbar,
18
+ h as Switch,
21
19
  y as Tag,
22
20
  S as TextField,
23
- b as Typography
21
+ c as Typography
24
22
  };
@@ -11,18 +11,18 @@ const e = {
11
11
  },
12
12
  heading3: {
13
13
  tag: "h3",
14
- fontSize: "18px",
15
- lineHeight: "24px"
14
+ fontSize: "20px",
15
+ lineHeight: "28px"
16
16
  },
17
17
  body1: {
18
18
  tag: "div",
19
19
  fontSize: "16px",
20
- lineHeight: "20px"
20
+ lineHeight: "24px"
21
21
  },
22
22
  body2: {
23
23
  tag: "div",
24
24
  fontSize: "14px",
25
- lineHeight: "18px"
25
+ lineHeight: "20px"
26
26
  },
27
27
  small1: {
28
28
  tag: "p",
@@ -31,8 +31,8 @@ const e = {
31
31
  },
32
32
  small2: {
33
33
  tag: "p",
34
- fontSize: "10.5px",
35
- lineHeight: "14px"
34
+ fontSize: "10px",
35
+ lineHeight: "16px"
36
36
  },
37
37
  small3: {
38
38
  tag: "p",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shiflo/ui",
3
3
  "description": "Shiflo React UI Components",
4
- "version": "0.2.3",
4
+ "version": "0.2.5",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -76,6 +76,7 @@
76
76
  "globals": "^16.0.0",
77
77
  "husky": "^9.1.7",
78
78
  "lint-staged": "^15.4.3",
79
+ "lucide-react": "^0.563.0",
79
80
  "prettier": "^3.5.3",
80
81
  "storybook": "^10.0.2",
81
82
  "typescript": "^5.7.3",
@@ -88,7 +89,8 @@
88
89
  "@emotion/react": "^11.0.0",
89
90
  "@emotion/styled": "^11.0.0",
90
91
  "react": "^19.0.0",
91
- "react-dom": "^19.0.0"
92
+ "react-dom": "^19.0.0",
93
+ "lucide-react": "^0.563.0"
92
94
  },
93
95
  "lint-staged": {
94
96
  "*.{js,mjs,ts,jsx,tsx,mts,json,html}": "prettier --write",
@@ -1,2 +0,0 @@
1
- export * from './line';
2
- export * from './solid';
@@ -1,48 +0,0 @@
1
- import { S as e } from "./line/calendar-line.svg-DHsuXoUL.js";
2
- import { S as a } from "./solid/calendar-days-solid.svg-CIj8vf6t.js";
3
- import { S as i } from "./solid/calendar-lines-solid.svg-D2qG_E7t.js";
4
- import { S as t } from "./solid/calendar-week-solid.svg-CVmrJtif.js";
5
- import { S as f } from "./solid/calendars-solid.svg-rClh_xBu.js";
6
- import { S as p } from "./solid/gear-solid.svg-C6vEx0Wx.js";
7
- import { S as n } from "./solid/grid-2-solid.svg-BRtzwK6Y.js";
8
- import { S as c } from "./solid/pen-to-square-solid.svg-DUdNcuTM.js";
9
- import { S as h } from "./solid/plus-solid.svg-piiaS3kO.js";
10
- import { S as L } from "./solid/rotate-right-solid.svg-CYW200XH.js";
11
- import { S as B } from "./solid/xmark-solid.svg-Ce8xHlZn.js";
12
- import { S as G } from "./solid/check-solid.svg-C41sTTzR.js";
13
- import { S as T } from "./solid/trash-solid.svg-iJSf_6Y3.js";
14
- import { S as q } from "./solid/minus-solid.svg-BBiGvc-2.js";
15
- import { S as w } from "./solid/briefcase-blank-solid.svg-6ppQL_Z4.js";
16
- import { S as z } from "./solid/chart-simple-horizontal-solid.svg-znTJSeQj.js";
17
- import { S as E } from "./solid/clock-desk-solid.svg-Dvm3Xip1.js";
18
- import { S as I } from "./solid/circle-check-solid.svg-D2Pv_oiO.js";
19
- import { S as W } from "./solid/arrow-left-solid.svg-C16XJbK9.js";
20
- import { S as b } from "./solid/circle-info-solid.svg-eMJtJJRm.js";
21
- import { S as F } from "./solid/circle-exclamation-solid.svg-CuZt_q4T.js";
22
- import { S as K } from "./solid/circle-plus-solid.svg-wYCF_uVS.js";
23
- import { S as O } from "./solid/chevron-left-solid.svg-CrKzZ71H.js";
24
- export {
25
- W as ArrowLeftSolid,
26
- w as BriefcaseBlankSolid,
27
- a as CalendarDaysSolid,
28
- e as CalendarLine,
29
- i as CalendarLinesSolid,
30
- t as CalendarWeekSolid,
31
- f as CalendarsSolid,
32
- z as ChartSimpleHorizontalSolid,
33
- G as CheckSolid,
34
- O as ChevronLeftSolid,
35
- I as CircleCheckSolid,
36
- F as CircleExclamationSolid,
37
- b as CircleInfoSolid,
38
- K as CirclePlusSolid,
39
- E as ClockDeskSolid,
40
- p as GearSolid,
41
- n as Grid2Solid,
42
- q as MinusSolid,
43
- c as PenToSquareSolid,
44
- h as PlusSolid,
45
- L as RotateRightSolid,
46
- T as TrashSolid,
47
- B as XmarkSolid
48
- };
@@ -1,52 +0,0 @@
1
- import { S as o } from "./line/calendar-line.svg-DHsuXoUL.js";
2
- import { S } from "./solid/calendar-days-solid.svg-CIj8vf6t.js";
3
- import { S as i } from "./solid/calendar-lines-solid.svg-D2qG_E7t.js";
4
- import { S as r } from "./solid/calendar-week-solid.svg-CVmrJtif.js";
5
- import { S as l } from "./solid/calendars-solid.svg-rClh_xBu.js";
6
- import { S as a } from "./solid/gear-solid.svg-C6vEx0Wx.js";
7
- import { S as e } from "./solid/grid-2-solid.svg-BRtzwK6Y.js";
8
- import { S as d } from "./solid/pen-to-square-solid.svg-DUdNcuTM.js";
9
- import { S as m } from "./solid/plus-solid.svg-piiaS3kO.js";
10
- import { S as t } from "./solid/rotate-right-solid.svg-CYW200XH.js";
11
- import { S as s } from "./solid/xmark-solid.svg-Ce8xHlZn.js";
12
- import { S as f } from "./solid/check-solid.svg-C41sTTzR.js";
13
- import { S as n } from "./solid/trash-solid.svg-iJSf_6Y3.js";
14
- import { S as g } from "./solid/minus-solid.svg-BBiGvc-2.js";
15
- import { S as p } from "./solid/briefcase-blank-solid.svg-6ppQL_Z4.js";
16
- import { S as C } from "./solid/chart-simple-horizontal-solid.svg-znTJSeQj.js";
17
- import { S as v } from "./solid/clock-desk-solid.svg-Dvm3Xip1.js";
18
- import { S as c } from "./solid/circle-check-solid.svg-D2Pv_oiO.js";
19
- import { S as k } from "./solid/arrow-left-solid.svg-C16XJbK9.js";
20
- import { S as h } from "./solid/circle-info-solid.svg-eMJtJJRm.js";
21
- import { S as u } from "./solid/circle-exclamation-solid.svg-CuZt_q4T.js";
22
- import { S as L } from "./solid/circle-plus-solid.svg-wYCF_uVS.js";
23
- import { S as P } from "./solid/chevron-left-solid.svg-CrKzZ71H.js";
24
- const K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
25
- __proto__: null,
26
- ArrowLeftSolid: k,
27
- BriefcaseBlankSolid: p,
28
- CalendarDaysSolid: S,
29
- CalendarLine: o,
30
- CalendarLinesSolid: i,
31
- CalendarWeekSolid: r,
32
- CalendarsSolid: l,
33
- ChartSimpleHorizontalSolid: C,
34
- CheckSolid: f,
35
- ChevronLeftSolid: P,
36
- CircleCheckSolid: c,
37
- CircleExclamationSolid: u,
38
- CircleInfoSolid: h,
39
- CirclePlusSolid: L,
40
- ClockDeskSolid: v,
41
- GearSolid: a,
42
- Grid2Solid: e,
43
- MinusSolid: g,
44
- PenToSquareSolid: d,
45
- PlusSolid: m,
46
- RotateRightSolid: t,
47
- TrashSolid: n,
48
- XmarkSolid: s
49
- }, Symbol.toStringTag, { value: "Module" }));
50
- export {
51
- K as S
52
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 27, viewBox: "0 0 24 27", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_62_10)" }, /* @__PURE__ */ e.createElement("path", { d: "M8.14286 1.26562C8.14286 0.564258 7.56964 0 6.85714 0C6.14464 0 5.57143 0.564258 5.57143 1.26562V3.375H3.42857C1.5375 3.375 0 4.88848 0 6.75V7.59375V10.125V23.625C0 25.4865 1.5375 27 3.42857 27H20.5714C22.4625 27 24 25.4865 24 23.625V10.125V7.59375V6.75C24 4.88848 22.4625 3.375 20.5714 3.375H18.4286V1.26562C18.4286 0.564258 17.8554 0 17.1429 0C16.4304 0 15.8571 0.564258 15.8571 1.26562V3.375H8.14286V1.26562ZM2.57143 10.125H21.4286V23.625C21.4286 24.0891 21.0429 24.4688 20.5714 24.4688H3.42857C2.95714 24.4688 2.57143 24.0891 2.57143 23.625V10.125ZM5.14286 14.7656C5.14286 15.467 5.71607 16.0312 6.42857 16.0312H17.5714C18.2839 16.0312 18.8571 15.467 18.8571 14.7656C18.8571 14.0643 18.2839 13.5 17.5714 13.5H6.42857C5.71607 13.5 5.14286 14.0643 5.14286 14.7656ZM6.42857 18.5625C5.71607 18.5625 5.14286 19.1268 5.14286 19.8281C5.14286 20.5295 5.71607 21.0938 6.42857 21.0938H12.4286C13.1411 21.0938 13.7143 20.5295 13.7143 19.8281C13.7143 19.1268 13.1411 18.5625 12.4286 18.5625H6.42857Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_62_10" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 27, fill: "currentColor" }))));
3
- export {
4
- l as S
5
- };
@@ -1 +0,0 @@
1
- export { default as CalendarLine } from './calendar-line.svg';
@@ -1,4 +0,0 @@
1
- import { S as r } from "./calendar-line.svg-DHsuXoUL.js";
2
- export {
3
- r as CalendarLine
4
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const r = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" }));
3
- export {
4
- r as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M8.25 2.625V4.5H15.75V2.625C15.75 2.41875 15.5813 2.25 15.375 2.25H8.625C8.41875 2.25 8.25 2.41875 8.25 2.625ZM6 4.5V2.625C6 1.17656 7.17656 0 8.625 0H15.375C16.8234 0 18 1.17656 18 2.625V4.5H21C22.6547 4.5 24 5.84531 24 7.5V19.5C24 21.1547 22.6547 22.5 21 22.5H3C1.34531 22.5 0 21.1547 0 19.5V7.5C0 5.84531 1.34531 4.5 3 4.5H6Z", fill: "currentColor" }));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const t = (C) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 27, viewBox: "0 0 24 27", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...C }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_67_10)" }, /* @__PURE__ */ e.createElement("path", { d: "M6.85714 0C7.80536 0 8.57143 0.754102 8.57143 1.6875V3.375H15.4286V1.6875C15.4286 0.754102 16.1946 0 17.1429 0C18.0911 0 18.8571 0.754102 18.8571 1.6875V3.375H21.4286C22.8482 3.375 24 4.50879 24 5.90625V8.4375H0V5.90625C0 4.50879 1.15179 3.375 2.57143 3.375H5.14286V1.6875C5.14286 0.754102 5.90893 0 6.85714 0ZM0 10.125H24V24.4688C24 25.8662 22.8482 27 21.4286 27H2.57143C1.15179 27 0 25.8662 0 24.4688V10.125ZM3.42857 14.3438V16.0312C3.42857 16.4953 3.81429 16.875 4.28571 16.875H6C6.47143 16.875 6.85714 16.4953 6.85714 16.0312V14.3438C6.85714 13.8797 6.47143 13.5 6 13.5H4.28571C3.81429 13.5 3.42857 13.8797 3.42857 14.3438ZM10.2857 14.3438V16.0312C10.2857 16.4953 10.6714 16.875 11.1429 16.875H12.8571C13.3286 16.875 13.7143 16.4953 13.7143 16.0312V14.3438C13.7143 13.8797 13.3286 13.5 12.8571 13.5H11.1429C10.6714 13.5 10.2857 13.8797 10.2857 14.3438ZM18 13.5C17.5286 13.5 17.1429 13.8797 17.1429 14.3438V16.0312C17.1429 16.4953 17.5286 16.875 18 16.875H19.7143C20.1857 16.875 20.5714 16.4953 20.5714 16.0312V14.3438C20.5714 13.8797 20.1857 13.5 19.7143 13.5H18ZM3.42857 21.0938V22.7812C3.42857 23.2453 3.81429 23.625 4.28571 23.625H6C6.47143 23.625 6.85714 23.2453 6.85714 22.7812V21.0938C6.85714 20.6297 6.47143 20.25 6 20.25H4.28571C3.81429 20.25 3.42857 20.6297 3.42857 21.0938ZM11.1429 20.25C10.6714 20.25 10.2857 20.6297 10.2857 21.0938V22.7812C10.2857 23.2453 10.6714 23.625 11.1429 23.625H12.8571C13.3286 23.625 13.7143 23.2453 13.7143 22.7812V21.0938C13.7143 20.6297 13.3286 20.25 12.8571 20.25H11.1429ZM17.1429 21.0938V22.7812C17.1429 23.2453 17.5286 23.625 18 23.625H19.7143C20.1857 23.625 20.5714 23.2453 20.5714 22.7812V21.0938C20.5714 20.6297 20.1857 20.25 19.7143 20.25H18C17.5286 20.25 17.1429 20.6297 17.1429 21.0938Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_67_10" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 27, fill: "currentColor" }))));
3
- export {
4
- t as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 27, viewBox: "0 0 24 27", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_67_14)" }, /* @__PURE__ */ e.createElement("path", { d: "M5.14286 1.6875V3.375H2.57143C1.15179 3.375 0 4.50879 0 5.90625V8.4375H24V5.90625C24 4.50879 22.8482 3.375 21.4286 3.375H18.8571V1.6875C18.8571 0.754102 18.0911 0 17.1429 0C16.1946 0 15.4286 0.754102 15.4286 1.6875V3.375H8.57143V1.6875C8.57143 0.754102 7.80536 0 6.85714 0C5.90893 0 5.14286 0.754102 5.14286 1.6875ZM24 10.125H0V24.4688C0 25.8662 1.15179 27 2.57143 27H21.4286C22.8482 27 24 25.8662 24 24.4688V10.125ZM5.14286 15.6094C5.14286 14.908 5.71607 14.3438 6.42857 14.3438H17.5714C18.2839 14.3438 18.8571 14.908 18.8571 15.6094C18.8571 16.3107 18.2839 16.875 17.5714 16.875H6.42857C5.71607 16.875 5.14286 16.3107 5.14286 15.6094ZM6.42857 19.4062H12.4286C13.1411 19.4062 13.7143 19.9705 13.7143 20.6719C13.7143 21.3732 13.1411 21.9375 12.4286 21.9375H6.42857C5.71607 21.9375 5.14286 21.3732 5.14286 20.6719C5.14286 19.9705 5.71607 19.4062 6.42857 19.4062Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_67_14" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 27, fill: "currentColor" }))));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 27, viewBox: "0 0 24 27", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_67_12)" }, /* @__PURE__ */ e.createElement("path", { d: "M6.85714 0C7.80536 0 8.57143 0.754102 8.57143 1.6875V3.375H15.4286V1.6875C15.4286 0.754102 16.1946 0 17.1429 0C18.0911 0 18.8571 0.754102 18.8571 1.6875V3.375H21.4286C22.8482 3.375 24 4.50879 24 5.90625V8.4375H0V5.90625C0 4.50879 1.15179 3.375 2.57143 3.375H5.14286V1.6875C5.14286 0.754102 5.90893 0 6.85714 0ZM0 10.125H24V24.4688C24 25.8662 22.8482 27 21.4286 27H2.57143C1.15179 27 0 25.8662 0 24.4688V10.125ZM4.28571 13.5C3.81429 13.5 3.42857 13.8797 3.42857 14.3438V17.7188C3.42857 18.1828 3.81429 18.5625 4.28571 18.5625H19.7143C20.1857 18.5625 20.5714 18.1828 20.5714 17.7188V14.3438C20.5714 13.8797 20.1857 13.5 19.7143 13.5H4.28571Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_67_12" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 27, fill: "currentColor" }))));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 25, viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_62_23)" }, /* @__PURE__ */ e.createElement("path", { d: "M10.5 0.5C9.67031 0.5 9 1.17031 9 2V3.5H6.75C5.50781 3.5 4.5 4.50781 4.5 5.75V8H24V5.75C24 4.50781 22.9922 3.5 21.75 3.5H19.5V2C19.5 1.17031 18.8297 0.5 18 0.5C17.1703 0.5 16.5 1.17031 16.5 2V3.5H12V2C12 1.17031 11.3297 0.5 10.5 0.5ZM4.5 9.5V17.75C4.5 18.9922 5.50781 20 6.75 20H21.75C22.9922 20 24 18.9922 24 17.75V9.5H4.5ZM2.25 9.125C2.25 8.50156 1.74844 8 1.125 8C0.501562 8 0 8.50156 0 9.125V18.875C0 21.9828 2.51719 24.5 5.625 24.5H18.375C18.9984 24.5 19.5 23.9984 19.5 23.375C19.5 22.7516 18.9984 22.25 18.375 22.25H5.625C3.75938 22.25 2.25 20.7406 2.25 18.875V9.125Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_62_23" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 24, fill: "currentColor", transform: "translate(0 0.5)" }))));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as t from "react";
2
- const C = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 28, viewBox: "0 0 24 28", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M21.4286 17.375C22.8482 17.375 24 16.2412 24 14.8438V13.1562C24 11.7588 22.8482 10.625 21.4286 10.625H2.57143C1.15179 10.625 0 11.7588 0 13.1562V14.8438C0 16.2412 1.15179 17.375 2.57143 17.375H21.4286ZM11.1429 25.8125C12.5625 25.8125 13.7143 24.6787 13.7143 23.2812V21.5938C13.7143 20.1963 12.5625 19.0625 11.1429 19.0625H2.57143C1.15179 19.0625 0 20.1963 0 21.5938V23.2812C0 24.6787 1.15179 25.8125 2.57143 25.8125H11.1429ZM20.5714 6.40625V4.71875C20.5714 3.32129 19.4196 2.1875 18 2.1875H2.57143C1.15179 2.1875 0 3.32129 0 4.71875V6.40625C0 7.80371 1.15179 8.9375 2.57143 8.9375H18C19.4196 8.9375 20.5714 7.80371 20.5714 6.40625Z", fill: "currentColor" }));
3
- export {
4
- C as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 28, viewBox: "0 0 24 28", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_296_43)" }, /* @__PURE__ */ e.createElement("path", { d: "M23.4964 6.05823C24.1661 6.71741 24.1661 7.78791 23.4964 8.44709L9.78213 21.9471C9.11249 22.6063 8.02499 22.6063 7.35535 21.9471L0.498204 15.1971C-0.171439 14.5379 -0.171439 13.4674 0.498204 12.8082C1.16785 12.149 2.25535 12.149 2.92499 12.8082L8.57142 18.3612L21.075 6.05823C21.7446 5.39905 22.8321 5.39905 23.5018 6.05823H23.4964Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_296_43" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 27, fill: "currentColor", transform: "translate(0 0.5)" }))));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const o = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 320 512", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z" }));
3
- export {
4
- o as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const c = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" }));
3
- export {
4
- c as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24l0 112c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-112c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" }));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const t = (l) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...l }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" }));
3
- export {
4
- t as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const t = (l) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...l }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM232 344l0-64-64 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l64 0 0-64c0-13.3 10.7-24 24-24s24 10.7 24 24l0 64 64 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-64 0 0 64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" }));
3
- export {
4
- t as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 28, viewBox: "0 0 24 28", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_308_55)" }, /* @__PURE__ */ e.createElement("path", { d: "M0 12.3125C0 9.17963 1.26428 6.17507 3.51472 3.9598C5.76516 1.74453 8.8174 0.5 12 0.5C15.1826 0.5 18.2348 1.74453 20.4853 3.9598C22.7357 6.17507 24 9.17963 24 12.3125C24 15.4454 22.7357 18.4499 20.4853 20.6652C18.2348 22.8805 15.1826 24.125 12 24.125C8.8174 24.125 5.76516 22.8805 3.51472 20.6652C1.26428 18.4499 0 15.4454 0 12.3125ZM12 5.5625C11.2875 5.5625 10.7143 6.12676 10.7143 6.82812V12.3125C10.7143 12.65 10.8482 12.9717 11.0893 13.209L13.6607 15.7402C14.1643 16.2359 14.9786 16.2359 15.4768 15.7402C15.975 15.2445 15.9804 14.443 15.4768 13.9525L13.2804 11.7904V6.82812C13.2804 6.12676 12.7071 5.5625 11.9946 5.5625H12ZM12 25.8125C17.1643 25.8125 21.6589 23.0018 24 18.8516V24.9688C24 26.3662 22.8482 27.5 21.4286 27.5H2.57143C1.15179 27.5 0 26.3662 0 24.9688V18.8516C2.34107 23.0018 6.83571 25.8125 12 25.8125Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_308_55" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 27, fill: "currentColor", transform: "translate(0 0.5)" }))));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as C from "react";
2
- const t = (e) => /* @__PURE__ */ C.createElement("svg", { width: 24, height: 25, viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ C.createElement("g", { clipPath: "url(#clip0_62_34)" }, /* @__PURE__ */ C.createElement("path", { d: "M23.2453 8.30938C23.3953 8.71719 23.2687 9.17188 22.9453 9.4625L20.9156 11.3094C20.9672 11.6984 20.9953 12.0969 20.9953 12.5C20.9953 12.9031 20.9672 13.3016 20.9156 13.6906L22.9453 15.5375C23.2687 15.8281 23.3953 16.2828 23.2453 16.6906C23.039 17.2484 22.7906 17.7828 22.5047 18.2984L22.2843 18.6781C21.975 19.1937 21.6281 19.6812 21.2484 20.1406C20.9718 20.4781 20.5125 20.5906 20.1 20.4594L17.489 19.6297C16.8609 20.1125 16.1672 20.5156 15.4265 20.8203L14.8406 23.4969C14.7468 23.9234 14.4187 24.2609 13.9875 24.3312C13.3406 24.4391 12.675 24.4953 11.9953 24.4953C11.3156 24.4953 10.65 24.4391 10.0031 24.3312C9.57184 24.2609 9.24371 23.9234 9.14996 23.4969L8.56403 20.8203C7.8234 20.5156 7.12965 20.1125 6.50153 19.6297L3.89528 20.4641C3.48278 20.5953 3.0234 20.4781 2.74684 20.1453C2.36715 19.6859 2.02028 19.1984 1.7109 18.6828L1.49059 18.3031C1.20465 17.7875 0.956213 17.2531 0.749963 16.6953C0.599963 16.2875 0.726526 15.8328 1.04996 15.5422L3.07965 13.6953C3.02809 13.3016 2.99996 12.9031 2.99996 12.5C2.99996 12.0969 3.02809 11.6984 3.07965 11.3094L1.04996 9.4625C0.726526 9.17188 0.599963 8.71719 0.749963 8.30938C0.956213 7.75156 1.20465 7.21719 1.49059 6.70156L1.7109 6.32187C2.02028 5.80625 2.36715 5.31875 2.74684 4.85938C3.0234 4.52187 3.48278 4.40937 3.89528 4.54062L6.50621 5.37031C7.13434 4.8875 7.82809 4.48438 8.56871 4.17969L9.15465 1.50312C9.2484 1.07656 9.57653 0.739062 10.0078 0.66875C10.6547 0.55625 11.3203 0.5 12 0.5C12.6797 0.5 13.3453 0.55625 13.9922 0.664062C14.4234 0.734375 14.7515 1.07187 14.8453 1.49844L15.4312 4.175C16.1718 4.47969 16.8656 4.88281 17.4937 5.36563L20.1047 4.53594C20.5172 4.40469 20.9765 4.52187 21.2531 4.85469C21.6328 5.31406 21.9797 5.80156 22.289 6.31719L22.5093 6.69687C22.7953 7.2125 23.0437 7.74687 23.25 8.30469L23.2453 8.30938ZM12 16.25C12.9945 16.25 13.9484 15.8549 14.6516 15.1517C15.3549 14.4484 15.75 13.4946 15.75 12.5C15.75 11.5054 15.3549 10.5516 14.6516 9.84835C13.9484 9.14509 12.9945 8.75 12 8.75C11.0054 8.75 10.0516 9.14509 9.34831 9.84835C8.64505 10.5516 8.24996 11.5054 8.24996 12.5C8.24996 13.4946 8.64505 14.4484 9.34831 15.1517C10.0516 15.8549 11.0054 16.25 12 16.25Z", fill: "currentColor" })), /* @__PURE__ */ C.createElement("defs", null, /* @__PURE__ */ C.createElement("clipPath", { id: "clip0_62_34" }, /* @__PURE__ */ C.createElement("rect", { width: 24, height: 24, fill: "currentColor", transform: "translate(0 0.5)" }))));
3
- export {
4
- t as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as C from "react";
2
- const t = (e) => /* @__PURE__ */ C.createElement("svg", { width: 24, height: 25, viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ C.createElement("path", { d: "M10.5 4.25C10.5 3.00781 9.49219 2 8.25 2H3.75C2.50781 2 1.5 3.00781 1.5 4.25V8.75C1.5 9.99219 2.50781 11 3.75 11H8.25C9.49219 11 10.5 9.99219 10.5 8.75V4.25ZM10.5 16.25C10.5 15.0078 9.49219 14 8.25 14H3.75C2.50781 14 1.5 15.0078 1.5 16.25V20.75C1.5 21.9922 2.50781 23 3.75 23H8.25C9.49219 23 10.5 21.9922 10.5 20.75V16.25ZM13.5 4.25V8.75C13.5 9.99219 14.5078 11 15.75 11H20.25C21.4922 11 22.5 9.99219 22.5 8.75V4.25C22.5 3.00781 21.4922 2 20.25 2H15.75C14.5078 2 13.5 3.00781 13.5 4.25ZM22.5 16.25C22.5 15.0078 21.4922 14 20.25 14H15.75C14.5078 14 13.5 15.0078 13.5 16.25V20.75C13.5 21.9922 14.5078 23 15.75 23H20.25C21.4922 23 22.5 21.9922 22.5 20.75V16.25Z", fill: "currentColor" }));
3
- export {
4
- t as S
5
- };
@@ -1,22 +0,0 @@
1
- export { default as CalendarDaysSolid } from './calendar-days-solid.svg';
2
- export { default as CalendarLinesSolid } from './calendar-lines-solid.svg';
3
- export { default as CalendarWeekSolid } from './calendar-week-solid.svg';
4
- export { default as CalendarsSolid } from './calendars-solid.svg';
5
- export { default as GearSolid } from './gear-solid.svg';
6
- export { default as Grid2Solid } from './grid-2-solid.svg';
7
- export { default as PenToSquareSolid } from './pen-to-square-solid.svg';
8
- export { default as PlusSolid } from './plus-solid.svg';
9
- export { default as RotateRightSolid } from './rotate-right-solid.svg';
10
- export { default as XmarkSolid } from './xmark-solid.svg';
11
- export { default as CheckSolid } from './check-solid.svg';
12
- export { default as TrashSolid } from './trash-solid.svg';
13
- export { default as MinusSolid } from './minus-solid.svg';
14
- export { default as BriefcaseBlankSolid } from './briefcase-blank-solid.svg';
15
- export { default as ChartSimpleHorizontalSolid } from './chart-simple-horizontal-solid.svg';
16
- export { default as ClockDeskSolid } from './clock-desk-solid.svg';
17
- export { default as CircleCheckSolid } from './circle-check-solid.svg';
18
- export { default as ArrowLeftSolid } from './arrow-left-solid.svg';
19
- export { default as CircleInfoSolid } from './circle-info-solid.svg';
20
- export { default as CircleExclamationSolid } from './circle-exclamation-solid.svg';
21
- export { default as CirclePlusSolid } from './circle-plus-solid.svg';
22
- export { default as ChevronLeftSolid } from './chevron-left-solid.svg';
@@ -1,46 +0,0 @@
1
- import { S as e } from "./calendar-days-solid.svg-CIj8vf6t.js";
2
- import { S as a } from "./calendar-lines-solid.svg-D2qG_E7t.js";
3
- import { S as i } from "./calendar-week-solid.svg-CVmrJtif.js";
4
- import { S as t } from "./calendars-solid.svg-rClh_xBu.js";
5
- import { S as f } from "./gear-solid.svg-C6vEx0Wx.js";
6
- import { S as p } from "./grid-2-solid.svg-BRtzwK6Y.js";
7
- import { S as C } from "./pen-to-square-solid.svg-DUdNcuTM.js";
8
- import { S as c } from "./plus-solid.svg-piiaS3kO.js";
9
- import { S as h } from "./rotate-right-solid.svg-CYW200XH.js";
10
- import { S as L } from "./xmark-solid.svg-Ce8xHlZn.js";
11
- import { S as B } from "./check-solid.svg-C41sTTzR.js";
12
- import { S as G } from "./trash-solid.svg-iJSf_6Y3.js";
13
- import { S as T } from "./minus-solid.svg-BBiGvc-2.js";
14
- import { S as q } from "./briefcase-blank-solid.svg-6ppQL_Z4.js";
15
- import { S as w } from "./chart-simple-horizontal-solid.svg-znTJSeQj.js";
16
- import { S as z } from "./clock-desk-solid.svg-Dvm3Xip1.js";
17
- import { S as E } from "./circle-check-solid.svg-D2Pv_oiO.js";
18
- import { S as I } from "./arrow-left-solid.svg-C16XJbK9.js";
19
- import { S as W } from "./circle-info-solid.svg-eMJtJJRm.js";
20
- import { S as b } from "./circle-exclamation-solid.svg-CuZt_q4T.js";
21
- import { S as F } from "./circle-plus-solid.svg-wYCF_uVS.js";
22
- import { S as K } from "./chevron-left-solid.svg-CrKzZ71H.js";
23
- export {
24
- I as ArrowLeftSolid,
25
- q as BriefcaseBlankSolid,
26
- e as CalendarDaysSolid,
27
- a as CalendarLinesSolid,
28
- i as CalendarWeekSolid,
29
- t as CalendarsSolid,
30
- w as ChartSimpleHorizontalSolid,
31
- B as CheckSolid,
32
- K as ChevronLeftSolid,
33
- E as CircleCheckSolid,
34
- b as CircleExclamationSolid,
35
- W as CircleInfoSolid,
36
- F as CirclePlusSolid,
37
- z as ClockDeskSolid,
38
- f as GearSolid,
39
- p as Grid2Solid,
40
- T as MinusSolid,
41
- C as PenToSquareSolid,
42
- c as PlusSolid,
43
- h as RotateRightSolid,
44
- G as TrashSolid,
45
- L as XmarkSolid
46
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 28, viewBox: "0 0 24 28", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M23.1428 14C23.1428 14.9334 22.3768 15.6875 21.4285 15.6875H2.5714C1.62319 15.6875 0.857117 14.9334 0.857117 14C0.857117 13.0666 1.62319 12.3125 2.5714 12.3125H21.4285C22.3768 12.3125 23.1428 13.0666 23.1428 14Z", fill: "currentColor" }));
3
- export {
4
- o as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 25, viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_67_16)" }, /* @__PURE__ */ e.createElement("path", { d: "M22.1063 1.51718C21.0797 0.490613 19.4203 0.490613 18.3937 1.51718L16.9828 2.92343L21.5719 7.51249L22.9828 6.10155C24.0094 5.07499 24.0094 3.41561 22.9828 2.38905L22.1063 1.51718ZM8.08125 11.8297C7.79531 12.1156 7.575 12.4672 7.44844 12.8562L6.06094 17.0187C5.925 17.4219 6.03281 17.8672 6.33281 18.1719C6.63281 18.4766 7.07812 18.5797 7.48594 18.4437L11.6484 17.0562C12.0328 16.9297 12.3844 16.7094 12.675 16.4234L20.5172 8.57655L15.9234 3.9828L8.08125 11.8297ZM4.5 3.49999C2.01562 3.49999 0 5.51561 0 7.99999V20C0 22.4844 2.01562 24.5 4.5 24.5H16.5C18.9844 24.5 21 22.4844 21 20V15.5C21 14.6703 20.3297 14 19.5 14C18.6703 14 18 14.6703 18 15.5V20C18 20.8297 17.3297 21.5 16.5 21.5H4.5C3.67031 21.5 3 20.8297 3 20V7.99999C3 7.1703 3.67031 6.49999 4.5 6.49999H9C9.82969 6.49999 10.5 5.82968 10.5 4.99999C10.5 4.1703 9.82969 3.49999 9 3.49999H4.5Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_67_16" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 24, fill: "currentColor", transform: "translate(0 0.5)" }))));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 27, viewBox: "0 0 24 27", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M13.7143 4.21875C13.7143 3.28535 12.9482 2.53125 12 2.53125C11.0518 2.53125 10.2857 3.28535 10.2857 4.21875V11.8125H2.57146C1.62325 11.8125 0.857178 12.5666 0.857178 13.5C0.857178 14.4334 1.62325 15.1875 2.57146 15.1875H10.2857V22.7812C10.2857 23.7146 11.0518 24.4688 12 24.4688C12.9482 24.4688 13.7143 23.7146 13.7143 22.7812V15.1875H21.4286C22.3768 15.1875 23.1429 14.4334 23.1429 13.5C23.1429 12.5666 22.3768 11.8125 21.4286 11.8125H13.7143V4.21875Z", fill: "currentColor" }));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as t from "react";
2
- const C = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 25, viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M21.7265 11H22.125C22.7484 11 23.25 10.4984 23.25 9.87497V3.87497C23.25 3.42028 22.9781 3.00778 22.5562 2.83434C22.1343 2.66091 21.6515 2.75466 21.3281 3.07809L19.3781 5.02809C15.2718 0.973407 8.65776 0.98747 4.57495 5.07497C0.473389 9.17653 0.473389 15.8234 4.57495 19.925C8.67651 24.0265 15.3234 24.0265 19.425 19.925C20.0109 19.339 20.0109 18.3875 19.425 17.8015C18.839 17.2156 17.8875 17.2156 17.3015 17.8015C14.3718 20.7312 9.62339 20.7312 6.6937 17.8015C3.76401 14.8718 3.76401 10.1234 6.6937 7.19372C9.60933 4.27809 14.3203 4.26403 17.2546 7.14684L15.3281 9.07809C15.0046 9.40153 14.9109 9.88434 15.0843 10.3062C15.2578 10.7281 15.6703 11 16.125 11H21.7265Z", fill: "currentColor" }));
3
- export {
4
- C as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 28, viewBox: "0 0 24 28", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_297_45)" }, /* @__PURE__ */ e.createElement("path", { d: "M7.24286 1.4334L6.85714 2.1875H1.71429C0.766071 2.1875 0 2.9416 0 3.875C0 4.8084 0.766071 5.5625 1.71429 5.5625H22.2857C23.2339 5.5625 24 4.8084 24 3.875C24 2.9416 23.2339 2.1875 22.2857 2.1875H17.1429L16.7571 1.4334C16.4679 0.858594 15.8732 0.5 15.225 0.5H8.775C8.12679 0.5 7.53214 0.858594 7.24286 1.4334ZM22.2857 7.25H1.71429L2.85 25.127C2.93571 26.4611 4.06071 27.5 5.41607 27.5H18.5839C19.9393 27.5 21.0643 26.4611 21.15 25.127L22.2857 7.25Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_297_45" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 27, fill: "currentColor", transform: "translate(0 0.5)" }))));
3
- export {
4
- l as S
5
- };
@@ -1,5 +0,0 @@
1
- import * as e from "react";
2
- const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 32, viewBox: "0 0 24 32", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M21.4125 9.41249C22.1938 8.63124 22.1938 7.36249 21.4125 6.58124C20.6313 5.79999 19.3625 5.79999 18.5813 6.58124L12 13.1687L5.41255 6.58749C4.6313 5.80624 3.36255 5.80624 2.5813 6.58749C1.80005 7.36874 1.80005 8.63749 2.5813 9.41874L9.1688 16L2.58755 22.5875C1.8063 23.3687 1.8063 24.6375 2.58755 25.4187C3.3688 26.2 4.63755 26.2 5.4188 25.4187L12 18.8312L18.5875 25.4125C19.3688 26.1937 20.6376 26.1937 21.4188 25.4125C22.2001 24.6312 22.2001 23.3625 21.4188 22.5812L14.8313 16L21.4125 9.41249Z", fill: "currentColor" }));
3
- export {
4
- o as S
5
- };
@@ -1,3 +0,0 @@
1
- import { IconProps } from './Icon.typing';
2
- declare function Icon({ name, ...props }: IconProps): import("@emotion/react/jsx-runtime").JSX.Element;
3
- export default Icon;
@@ -1,18 +0,0 @@
1
- import { jsx as e } from "@emotion/react/jsx-runtime";
2
- import { S as i } from "../../assets/icons/index.ts-BhlTWUs_.js";
3
- import s from "@emotion/styled";
4
- import c from "../../utils/getValueByPath.mjs";
5
- const l = (o) => s(o)`
6
- transition: all 0.2s;
7
-
8
- width: ${({ width: t }) => `${t || 24}px`};
9
- height: ${({ height: t }) => `${t || 24}px`};
10
- color: ${({ theme: { palette: t }, color: r }) => c(t, r || "") || "inherit"};
11
- `;
12
- function h({ name: o, ...t }) {
13
- const r = i[o], n = l(r);
14
- return /* @__PURE__ */ e(n, { name: o, ...t });
15
- }
16
- export {
17
- h as default
18
- };
@@ -1,11 +0,0 @@
1
- import { ComponentPropsWithRef } from 'react';
2
- import { ShifloTheme } from '../../theme/typing';
3
- import { RecursionPath, UtilityProps } from '../../typings/utility';
4
- import type * as Svgs from "../../assets/icons";
5
- export interface BaseIconProps extends Pick<UtilityProps, "css"> {
6
- name: keyof typeof Svgs;
7
- color?: RecursionPath<ShifloTheme["palette"]> | "inherit";
8
- width?: number;
9
- height?: number;
10
- }
11
- export type IconProps = BaseIconProps & Omit<ComponentPropsWithRef<"svg">, "children" | "width" | "height">;
@@ -1,4 +0,0 @@
1
- import { default as Icon } from './Icon';
2
- import { BaseIconProps, IconProps } from './Icon.typing';
3
- export type { BaseIconProps, IconProps };
4
- export default Icon;
@@ -1,4 +0,0 @@
1
- import r from "./Icon.mjs";
2
- export {
3
- r as default
4
- };