meticulous-ui 1.0.23 → 1.0.25

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 (71) hide show
  1. package/dist/components/Icons/Add/Add.js +47 -0
  2. package/dist/components/Icons/AddCircle/AddCircle.js +35 -0
  3. package/dist/components/Icons/AddCircleFilled/AddCircleFilled.js +26 -0
  4. package/dist/components/Icons/ArrowDown/ArrowDown.js +26 -0
  5. package/dist/components/Icons/ArrowLeft/ArrowLeft.js +27 -0
  6. package/dist/components/Icons/ArrowRight/ArrowRight.js +27 -0
  7. package/dist/components/Icons/ArrowUp/ArrowUp.js +26 -0
  8. package/dist/components/Icons/BellFilled/BellFilled.js +26 -0
  9. package/dist/components/Icons/BellOffFilled/BellOffFilled.js +37 -0
  10. package/dist/components/Icons/BellOffOutline/BellOffOutline.js +38 -0
  11. package/dist/components/Icons/BellOutline/BellOutline.js +39 -0
  12. package/dist/components/Icons/BookmarkFilled/BookmarkFilled.js +18 -0
  13. package/dist/components/Icons/BookmarkOutline/BookmarkOutline.js +26 -0
  14. package/dist/components/Icons/ChevronDown/ChevronDown.js +27 -0
  15. package/dist/components/Icons/ChevronLeft/ChevronLeft.js +25 -22
  16. package/dist/components/Icons/ChevronRight/ChevronRight.js +25 -22
  17. package/dist/components/Icons/ChevronUp/ChevronUp.js +27 -0
  18. package/dist/components/Icons/ClockCircleOutline/ClockCircleOutline.js +30 -0
  19. package/dist/components/Icons/ClockSquareOutline/ClockSquareOutline.js +37 -0
  20. package/dist/components/Icons/Close/Close.js +24 -0
  21. package/dist/components/Icons/CloseCircleFilled/CloseCircleFilled.js +26 -0
  22. package/dist/components/Icons/CloseCircleOutline/CloseCircleOutline.js +27 -0
  23. package/dist/components/Icons/CommentBubbleFilled/CommentBubbleFilled.js +18 -0
  24. package/dist/components/Icons/CommentBubbleOutline/CommentBubbleOutline.js +18 -0
  25. package/dist/components/Icons/CommentFilled/CommentFilled.js +18 -0
  26. package/dist/components/Icons/CommentLineFilled/CommentLineFilled.js +18 -0
  27. package/dist/components/Icons/CommentLineOutline/CommentLineOutline.js +18 -0
  28. package/dist/components/Icons/CommentOutline/CommentOutline.js +18 -0
  29. package/dist/components/Icons/DotsHorizontalFilled/DotsHorizontalFilled.js +24 -0
  30. package/dist/components/Icons/DotsHorizontalOutline/DotsHorizontalOutline.js +27 -0
  31. package/dist/components/Icons/DotsVerticalFilled/DotsVerticalFilled.js +24 -0
  32. package/dist/components/Icons/DotsVerticalOutline/DotsVerticalOutline.js +27 -0
  33. package/dist/components/Icons/HamburgerMenu/HamburgerMenu.js +26 -0
  34. package/dist/components/Icons/HamburgerSpaced/HamburgerSpaced.js +18 -0
  35. package/dist/components/Icons/HeartFilled/HeartFilled.js +24 -0
  36. package/dist/components/Icons/HeartOutline/HeartOutline.js +29 -0
  37. package/dist/components/Icons/HomeFilled/HomeFilled.js +26 -0
  38. package/dist/components/Icons/HomeOutline/HomeOutline.js +26 -0
  39. package/dist/components/Icons/Link/Link.js +37 -0
  40. package/dist/components/Icons/Minus/Minus.js +27 -0
  41. package/dist/components/Icons/MinusCircle/MinusCircle.js +18 -0
  42. package/dist/components/Icons/MinusCircleFilled/MinusCircleFilled.js +18 -0
  43. package/dist/components/Icons/Search/Search.js +18 -0
  44. package/dist/components/Icons/SettingFilled/SettingFilled.js +24 -0
  45. package/dist/components/Icons/SettingOutline/SettingOutline.js +24 -0
  46. package/dist/components/Icons/ShareAllFilled/ShareAllFilled.js +26 -0
  47. package/dist/components/Icons/ShareAllOutline/ShareAllOutline.js +29 -0
  48. package/dist/components/Icons/ShareBoxOutline/ShareBoxOutline.js +24 -0
  49. package/dist/components/Icons/ShareFilled/ShareFilled.js +35 -0
  50. package/dist/components/Icons/ShareOutline/ShareOutline.js +38 -0
  51. package/dist/components/Icons/ShareThickFilled/ShareThickFilled.js +24 -0
  52. package/dist/components/Icons/StarFilled/StarFilled.js +24 -0
  53. package/dist/components/Icons/StarOutline/StarOutline.js +24 -0
  54. package/dist/components/Icons/ThumbsDownFilled/ThumbsDownFilled.js +24 -0
  55. package/dist/components/Icons/ThumbsDownOutline/ThumbsDownOutline.js +24 -0
  56. package/dist/components/Icons/ThumbsUpFilled/ThumbsUpFilled.js +24 -0
  57. package/dist/components/Icons/ThumbsUpOutline/ThumbsUpOutline.js +24 -0
  58. package/dist/components/Icons/Upload/Upload.js +33 -0
  59. package/dist/components/Icons/UploadBoxFilled/UploadBoxFilled.js +26 -0
  60. package/dist/components/Icons/UploadBoxOutline/UploadBoxOutline.js +35 -0
  61. package/dist/components/Icons/index.js +125 -0
  62. package/dist/components/Pagination/styles.js +6 -6
  63. package/dist/index.js +10 -8
  64. package/dist/utils/capFirstLetter.js +4 -0
  65. package/dist/utils/compose.js +4 -0
  66. package/dist/utils/hasEqualProps.js +7 -0
  67. package/dist/utils/index.js +13 -0
  68. package/dist/utils/isNonEmptyArray.js +4 -0
  69. package/package.json +6 -2
  70. package/dist/components/Icons/ChevronLeft/index.js +0 -4
  71. package/dist/components/Icons/ChevronRight/index.js +0 -4
@@ -0,0 +1,47 @@
1
+ import { j as e } from "../../../_virtual/jsx-runtime.js";
2
+ import t from "../../../colors/grey.js";
3
+ const o = ({ color: i = t.m500, size: r = 24, ...s }) => /* @__PURE__ */ e.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: r,
8
+ height: r,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Add",
12
+ ...s,
13
+ children: /* @__PURE__ */ e.jsx("g", { children: /* @__PURE__ */ e.jsx("g", { dataName: "add", children: /* @__PURE__ */ e.jsxs("g", { children: [
14
+ /* @__PURE__ */ e.jsx(
15
+ "line",
16
+ {
17
+ fill: i,
18
+ stroke: i,
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round",
21
+ strokeWidth: "2",
22
+ x1: "12",
23
+ x2: "12",
24
+ y1: "19",
25
+ y2: "5"
26
+ }
27
+ ),
28
+ /* @__PURE__ */ e.jsx(
29
+ "line",
30
+ {
31
+ fill: i,
32
+ stroke: i,
33
+ strokeLinecap: "round",
34
+ strokeLinejoin: "round",
35
+ strokeWidth: "2",
36
+ x1: "5",
37
+ x2: "19",
38
+ y1: "12",
39
+ y2: "12"
40
+ }
41
+ )
42
+ ] }) }) })
43
+ }
44
+ );
45
+ export {
46
+ o as default
47
+ };
@@ -0,0 +1,35 @@
1
+ import { j as l } from "../../../_virtual/jsx-runtime.js";
2
+ import d from "../../../colors/grey.js";
3
+ const r = ({ color: e = d.m500, size: i = 24, ...a }) => /* @__PURE__ */ l.jsxs(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: i,
8
+ height: i,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Add Circle",
12
+ ...a,
13
+ children: [
14
+ /* @__PURE__ */ l.jsx(
15
+ "path",
16
+ {
17
+ d: "M11 8a1 1 0 1 1 2 0v3h3a1 1 0 1 1 0 2h-3v3a1 1 0 1 1-2 0v-3H8a1 1 0 1 1 0-2h3z",
18
+ fill: e
19
+ }
20
+ ),
21
+ /* @__PURE__ */ l.jsx(
22
+ "path",
23
+ {
24
+ fillRule: "evenodd",
25
+ clipRule: "evenodd",
26
+ d: "M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1s11 4.925 11 11M3.007 12a8.993 8.993 0 1 0 17.986 0 8.993 8.993 0 0 0-17.986 0",
27
+ fill: e
28
+ }
29
+ )
30
+ ]
31
+ }
32
+ );
33
+ export {
34
+ r as default
35
+ };
@@ -0,0 +1,26 @@
1
+ import { j as e } from "../../../_virtual/jsx-runtime.js";
2
+ import o from "../../../colors/grey.js";
3
+ const a = ({ color: i = o.m500, size: l = 24, ...d }) => /* @__PURE__ */ e.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: l,
8
+ height: l,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Add Circle Filled",
12
+ ...d,
13
+ children: /* @__PURE__ */ e.jsx(
14
+ "path",
15
+ {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m.75-13a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25V15a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25z",
19
+ fill: i
20
+ }
21
+ )
22
+ }
23
+ );
24
+ export {
25
+ a as default
26
+ };
@@ -0,0 +1,26 @@
1
+ import { j as o } from "../../../_virtual/jsx-runtime.js";
2
+ import a from "../../../colors/grey.js";
3
+ const n = ({ color: e = a.m500, size: l = 24, ...r }) => /* @__PURE__ */ o.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: l,
8
+ height: l,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Arrow Down",
12
+ ...r,
13
+ children: /* @__PURE__ */ o.jsx(
14
+ "path",
15
+ {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M12 3a1 1 0 0 1 1 1v13.586l5.293-5.293a1 1 0 0 1 1.414 1.414l-7 7a1 1 0 0 1-1.414 0l-7-7a1 1 0 1 1 1.414-1.414L11 17.586V4a1 1 0 0 1 1-1",
19
+ fill: e
20
+ }
21
+ )
22
+ }
23
+ );
24
+ export {
25
+ n as default
26
+ };
@@ -0,0 +1,27 @@
1
+ import { j as o } from "../../../_virtual/jsx-runtime.js";
2
+ import s from "../../../colors/grey.js";
3
+ const a = ({ color: t = s.m500, size: r = 24, ...e }) => /* @__PURE__ */ o.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: r,
8
+ height: r,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Arrow Left",
12
+ ...e,
13
+ children: /* @__PURE__ */ o.jsx(
14
+ "path",
15
+ {
16
+ d: "M5 12h14M5 12l6-6m-6 6 6 6",
17
+ stroke: t,
18
+ strokeWidth: "2",
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round"
21
+ }
22
+ )
23
+ }
24
+ );
25
+ export {
26
+ a as default
27
+ };
@@ -0,0 +1,27 @@
1
+ import { j as o } from "../../../_virtual/jsx-runtime.js";
2
+ import i from "../../../colors/grey.js";
3
+ const h = ({ color: t = i.m500, size: r = 24, ...e }) => /* @__PURE__ */ o.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: r,
8
+ height: r,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Arrow Right",
12
+ ...e,
13
+ children: /* @__PURE__ */ o.jsx(
14
+ "path",
15
+ {
16
+ d: "M5 12h14m0 0-6-6m6 6-6 6",
17
+ stroke: t,
18
+ strokeWidth: "2",
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round"
21
+ }
22
+ )
23
+ }
24
+ );
25
+ export {
26
+ h as default
27
+ };
@@ -0,0 +1,26 @@
1
+ import { j as e } from "../../../_virtual/jsx-runtime.js";
2
+ import t from "../../../colors/grey.js";
3
+ const p = ({ color: o = t.m500, size: l = 24, ...r }) => /* @__PURE__ */ e.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: l,
8
+ height: l,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Arrow Up",
12
+ ...r,
13
+ children: /* @__PURE__ */ e.jsx(
14
+ "path",
15
+ {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M12 3a1 1 0 0 1 .707.293l7 7a1 1 0 0 1-1.414 1.414L13 6.414V20a1 1 0 1 1-2 0V6.414l-5.293 5.293a1 1 0 0 1-1.414-1.414l7-7A1 1 0 0 1 12 3",
19
+ fill: o
20
+ }
21
+ )
22
+ }
23
+ );
24
+ export {
25
+ p as default
26
+ };
@@ -0,0 +1,26 @@
1
+ import { j as e } from "../../../_virtual/jsx-runtime.js";
2
+ import t from "../../../colors/grey.js";
3
+ const r = ({ color: i = t.m500, size: l = 24, ...o }) => /* @__PURE__ */ e.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: l,
8
+ height: l,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Bell Filled",
12
+ ...o,
13
+ children: /* @__PURE__ */ e.jsx(
14
+ "path",
15
+ {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M12 2c-2.03 0-3.651.726-4.752 1.98C6.164 5.218 5.667 6.87 5.667 8.6v1.733c0 .244-.11.538-.395.917-.274.363-.63.703-1.022 1.08l-.066.063A3.78 3.78 0 0 0 3 15.133C3 16.67 4.198 18 5.778 18h12.444C19.802 18 21 16.67 21 15.133c0-1.133-.5-2.084-1.184-2.74l-.066-.063c-.393-.377-.748-.717-1.022-1.08-.285-.38-.395-.673-.395-.917V8.6c0-1.73-.497-3.383-1.581-4.62C15.65 2.727 14.03 2 12 2M9.443 19.17a1 1 0 0 1 1.388.273c.099.148.253.288.46.391.209.104.453.162.709.162s.5-.058.708-.162c.208-.103.362-.243.461-.391a1 1 0 1 1 1.662 1.114 3.2 3.2 0 0 1-1.231 1.068 3.6 3.6 0 0 1-1.6.371 3.6 3.6 0 0 1-1.6-.371 3.2 3.2 0 0 1-1.23-1.068 1 1 0 0 1 .273-1.388",
19
+ fill: i
20
+ }
21
+ )
22
+ }
23
+ );
24
+ export {
25
+ r as default
26
+ };
@@ -0,0 +1,37 @@
1
+ import { j as l } from "../../../_virtual/jsx-runtime.js";
2
+ import a from "../../../colors/grey.js";
3
+ const o = ({ color: e = a.m500, size: i = 24, ...d }) => /* @__PURE__ */ l.jsxs(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: i,
8
+ height: i,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Bell Off Filled",
12
+ ...d,
13
+ children: [
14
+ /* @__PURE__ */ l.jsx(
15
+ "path",
16
+ {
17
+ fillRule: "evenodd",
18
+ clipRule: "evenodd",
19
+ d: "M9.443 19.17a1 1 0 0 1 1.388.273c.099.148.253.288.46.391.209.104.453.162.709.162s.5-.058.708-.162c.208-.103.362-.243.461-.391a1 1 0 1 1 1.662 1.114 3.2 3.2 0 0 1-1.231 1.068 3.6 3.6 0 0 1-1.6.371 3.6 3.6 0 0 1-1.6-.371 3.2 3.2 0 0 1-1.23-1.068 1 1 0 0 1 .273-1.388M2.293 2.293a1 1 0 0 1 1.414 0l18 18a1 1 0 0 1-1.414 1.414l-18-18a1 1 0 0 1 0-1.414",
20
+ fill: e
21
+ }
22
+ ),
23
+ /* @__PURE__ */ l.jsx(
24
+ "path",
25
+ {
26
+ fillRule: "evenodd",
27
+ clipRule: "evenodd",
28
+ d: "M6.225 5.639c-.379.91-.558 1.922-.558 2.961v1.733c0 .244-.11.538-.395.917-.274.363-.63.703-1.022 1.08l-.066.063A3.78 3.78 0 0 0 3 15.133C3 16.67 4.198 18 5.778 18h12.444q.174 0 .343-.021zM19.97 16.557c.211.211.563.192.7-.074.211-.406.329-.868.329-1.35 0-1.133-.5-2.084-1.184-2.74l-.066-.063c-.393-.377-.748-.717-1.022-1.08-.285-.38-.395-.673-.395-.917V8.6c0-1.73-.497-3.383-1.581-4.62C15.65 2.727 14.03 2 12 2c-1.794 0-3.268.567-4.347 1.565a.47.47 0 0 0 .002.676z",
29
+ fill: e
30
+ }
31
+ )
32
+ ]
33
+ }
34
+ );
35
+ export {
36
+ o as default
37
+ };
@@ -0,0 +1,38 @@
1
+ import { j as t } from "../../../_virtual/jsx-runtime.js";
2
+ import s from "../../../colors/grey.js";
3
+ const l = ({ color: e = s.m500, size: o = 24, ...r }) => /* @__PURE__ */ t.jsxs(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: o,
8
+ height: o,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Bell Off Outline",
12
+ ...r,
13
+ children: [
14
+ /* @__PURE__ */ t.jsx(
15
+ "path",
16
+ {
17
+ d: "M20 15.133c0-.826-.362-1.525-.876-2.018-.797-.765-1.79-1.677-1.79-2.782V8.6C17.333 5.507 15.555 3 12 3c-1.204 0-2.204.287-3 .788M6.746 7.5a7.5 7.5 0 0 0-.08 1.1v1.733c0 1.105-.993 2.017-1.79 2.782A2.78 2.78 0 0 0 4 15.133C4 16.164 4.796 17 5.778 17H16.5",
18
+ stroke: e,
19
+ strokeWidth: "2",
20
+ strokeLinecap: "round"
21
+ }
22
+ ),
23
+ /* @__PURE__ */ t.jsx(
24
+ "path",
25
+ {
26
+ d: "M14 20a2.2 2.2 0 0 1-.846.73 2.6 2.6 0 0 1-1.154.267c-.405 0-.803-.093-1.154-.267A2.2 2.2 0 0 1 10 20M3 3l18 18",
27
+ stroke: e,
28
+ strokeWidth: "2",
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ }
32
+ )
33
+ ]
34
+ }
35
+ );
36
+ export {
37
+ l as default
38
+ };
@@ -0,0 +1,39 @@
1
+ import { j as e } from "../../../_virtual/jsx-runtime.js";
2
+ import l from "../../../colors/grey.js";
3
+ const n = ({ color: t = l.m500, size: o = 24, ...i }) => /* @__PURE__ */ e.jsxs(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: o,
8
+ height: o,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Bell Outline",
12
+ ...i,
13
+ children: [
14
+ /* @__PURE__ */ e.jsx(
15
+ "path",
16
+ {
17
+ fillRule: "evenodd",
18
+ clipRule: "evenodd",
19
+ d: "M12 3C8.444 3 6.667 5.507 6.667 8.6v1.733c0 1.105-.994 2.017-1.791 2.782A2.78 2.78 0 0 0 4 15.133C4 16.164 4.796 17 5.778 17h12.444c.982 0 1.778-.836 1.778-1.867 0-.826-.362-1.525-.876-2.018-.797-.765-1.79-1.677-1.79-2.782V8.6C17.333 5.507 15.555 3 12 3Z",
20
+ stroke: t,
21
+ strokeWidth: "2"
22
+ }
23
+ ),
24
+ /* @__PURE__ */ e.jsx(
25
+ "path",
26
+ {
27
+ d: "M14 20a2.2 2.2 0 0 1-.846.73 2.6 2.6 0 0 1-1.154.267c-.405 0-.803-.093-1.154-.267A2.2 2.2 0 0 1 10 20",
28
+ stroke: t,
29
+ strokeWidth: "2",
30
+ strokeLinecap: "round",
31
+ strokeLinejoin: "round"
32
+ }
33
+ )
34
+ ]
35
+ }
36
+ );
37
+ export {
38
+ n as default
39
+ };
@@ -0,0 +1,18 @@
1
+ import { j as l } from "../../../_virtual/jsx-runtime.js";
2
+ import a from "../../../colors/grey.js";
3
+ const o = ({ color: e = a.m500, size: t = 24, ...r }) => /* @__PURE__ */ l.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "-4 0 30 30",
7
+ width: t,
8
+ height: t,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Bookmark Filled",
12
+ ...r,
13
+ children: /* @__PURE__ */ l.jsx("g", { stroke: e, strokeWidth: "1", fill: e, fillRule: "evenodd", children: /* @__PURE__ */ l.jsx("g", { transform: "translate(-419 -153)", fill: e, children: /* @__PURE__ */ l.jsx("path", { d: "M437 153h-14a4 4 0 0 0-4 4v22a4 4 0 0 0 4 4l7-7 7 7a4 4 0 0 0 4-4v-22a4 4 0 0 0-4-4" }) }) })
14
+ }
15
+ );
16
+ export {
17
+ o as default
18
+ };
@@ -0,0 +1,26 @@
1
+ import { j as e } from "../../../_virtual/jsx-runtime.js";
2
+ import a from "../../../colors/grey.js";
3
+ const m = ({ color: o = a.m500, size: l = 24, ...t }) => /* @__PURE__ */ e.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: l,
8
+ height: l,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Bookmark Outline",
12
+ ...t,
13
+ children: /* @__PURE__ */ e.jsx(
14
+ "path",
15
+ {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M4 4a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v16.943c0 1.668-1.923 2.603-3.236 1.572L12 18.772l-4.764 3.743C5.923 23.546 4 22.611 4 20.942zm3-1a1 1 0 0 0-1 1v16.943l6-4.715 6 4.714V4a1 1 0 0 0-1-1z",
19
+ fill: o
20
+ }
21
+ )
22
+ }
23
+ );
24
+ export {
25
+ m as default
26
+ };
@@ -0,0 +1,27 @@
1
+ import { j as r } from "../../../_virtual/jsx-runtime.js";
2
+ import n from "../../../colors/grey.js";
3
+ const h = ({ color: t = n.m500, size: o = 24, ...e }) => /* @__PURE__ */ r.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: o,
8
+ height: o,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Chevron Down",
12
+ ...e,
13
+ children: /* @__PURE__ */ r.jsx(
14
+ "path",
15
+ {
16
+ d: "m6 9 6 6 6-6",
17
+ stroke: t,
18
+ strokeWidth: "2",
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round"
21
+ }
22
+ )
23
+ }
24
+ );
25
+ export {
26
+ h as default
27
+ };
@@ -1,24 +1,27 @@
1
- import { j as r } from "../../../_virtual/jsx-runtime.js";
2
- import i from "../../../node_modules/styled-components/dist/styled-components.browser.esm.js";
3
- import s from "../../../colors/grey.js";
4
- const l = i.img`
5
- display: inline-block;
6
- vertical-align: middle;
7
- fill: ${({ color: o }) => o};
8
- `, a = (o) => {
9
- const { color: e, size: t } = o;
10
- return /* @__PURE__ */ r.jsx(
11
- l,
12
- {
13
- ...o,
14
- color: e || s.m500,
15
- src: "https://www.svgrepo.com/show/533659/chevron-left.svg",
16
- alt: "Chevron Left",
17
- width: t,
18
- height: t
19
- }
20
- );
21
- };
1
+ import { j as t } from "../../../_virtual/jsx-runtime.js";
2
+ import n from "../../../colors/grey.js";
3
+ const h = ({ color: e = n.m500, size: o = 24, ...r }) => /* @__PURE__ */ t.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: o,
8
+ height: o,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Chevron Left",
12
+ ...r,
13
+ children: /* @__PURE__ */ t.jsx(
14
+ "path",
15
+ {
16
+ d: "m15 6-6 6 6 6",
17
+ stroke: e,
18
+ strokeWidth: "2",
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round"
21
+ }
22
+ )
23
+ }
24
+ );
22
25
  export {
23
- a as default
26
+ h as default
24
27
  };
@@ -1,24 +1,27 @@
1
- import { j as i } from "../../../_virtual/jsx-runtime.js";
2
- import e from "../../../node_modules/styled-components/dist/styled-components.browser.esm.js";
3
- import s from "../../../colors/grey.js";
4
- const l = e.img`
5
- display: inline-block;
6
- vertical-align: middle;
7
- fill: ${({ color: o }) => o};
8
- `, c = (o) => {
9
- const { color: r, size: t } = o;
10
- return /* @__PURE__ */ i.jsx(
11
- l,
12
- {
13
- ...o,
14
- color: r || s.m500,
15
- src: "https://www.svgrepo.com/show/533661/chevron-right.svg",
16
- alt: "Chevron Right",
17
- width: t,
18
- height: t
19
- }
20
- );
21
- };
1
+ import { j as t } from "../../../_virtual/jsx-runtime.js";
2
+ import i from "../../../colors/grey.js";
3
+ const h = ({ color: r = i.m500, size: o = 24, ...e }) => /* @__PURE__ */ t.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: o,
8
+ height: o,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Chevron Right",
12
+ ...e,
13
+ children: /* @__PURE__ */ t.jsx(
14
+ "path",
15
+ {
16
+ d: "m9 6 6 6-6 6",
17
+ stroke: r,
18
+ strokeWidth: "2",
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round"
21
+ }
22
+ )
23
+ }
24
+ );
22
25
  export {
23
- c as default
26
+ h as default
24
27
  };
@@ -0,0 +1,27 @@
1
+ import { j as r } from "../../../_virtual/jsx-runtime.js";
2
+ import n from "../../../colors/grey.js";
3
+ const h = ({ color: t = n.m500, size: o = 24, ...e }) => /* @__PURE__ */ r.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: o,
8
+ height: o,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Chevron Up",
12
+ ...e,
13
+ children: /* @__PURE__ */ r.jsx(
14
+ "path",
15
+ {
16
+ d: "m6 15 6-6 6 6",
17
+ stroke: t,
18
+ strokeWidth: "2",
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round"
21
+ }
22
+ )
23
+ }
24
+ );
25
+ export {
26
+ h as default
27
+ };
@@ -0,0 +1,30 @@
1
+ import { j as t } from "../../../_virtual/jsx-runtime.js";
2
+ import i from "../../../colors/grey.js";
3
+ const n = ({ color: e = i.m500, size: r = 24, ...o }) => /* @__PURE__ */ t.jsxs(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: r,
8
+ height: r,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Clock Circle Outline",
12
+ ...o,
13
+ children: [
14
+ /* @__PURE__ */ t.jsx("circle", { cx: "12", cy: "12", r: "10", stroke: e, strokeWidth: "1.5" }),
15
+ /* @__PURE__ */ t.jsx(
16
+ "path",
17
+ {
18
+ d: "M12 8v4l2.5 2.5",
19
+ stroke: e,
20
+ strokeWidth: "1.5",
21
+ strokeLinecap: "round",
22
+ strokeLinejoin: "round"
23
+ }
24
+ )
25
+ ]
26
+ }
27
+ );
28
+ export {
29
+ n as default
30
+ };
@@ -0,0 +1,37 @@
1
+ import { j as t } from "../../../_virtual/jsx-runtime.js";
2
+ import r from "../../../colors/grey.js";
3
+ const a = ({ color: e = r.m500, size: s = 24, ...o }) => /* @__PURE__ */ t.jsxs(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: s,
8
+ height: s,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Clock Square Outline",
12
+ ...o,
13
+ children: [
14
+ /* @__PURE__ */ t.jsx(
15
+ "path",
16
+ {
17
+ d: "M12 8v4l2.5 2.5",
18
+ stroke: e,
19
+ strokeWidth: "1.5",
20
+ strokeLinecap: "round",
21
+ strokeLinejoin: "round"
22
+ }
23
+ ),
24
+ /* @__PURE__ */ t.jsx(
25
+ "path",
26
+ {
27
+ d: "M2 12c0-4.714 0-7.071 1.464-8.536C4.93 2 7.286 2 12 2s7.071 0 8.535 1.464C22 4.93 22 7.286 22 12s0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12Z",
28
+ stroke: e,
29
+ strokeWidth: "1.5"
30
+ }
31
+ )
32
+ ]
33
+ }
34
+ );
35
+ export {
36
+ a as default
37
+ };
@@ -0,0 +1,24 @@
1
+ import { j as a } from "../../../_virtual/jsx-runtime.js";
2
+ import s from "../../../colors/grey.js";
3
+ const i = ({ color: o = s.m500, size: l = 24, ...t }) => /* @__PURE__ */ a.jsx(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ width: l,
8
+ height: l,
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ "aria-label": "Close",
12
+ ...t,
13
+ children: /* @__PURE__ */ a.jsx(
14
+ "path",
15
+ {
16
+ d: "M20.746 3.329a1 1 0 0 0-1.415 0l-7.294 7.294-7.294-7.294a1 1 0 1 0-1.414 1.414l7.294 7.294-7.294 7.294a1 1 0 0 0 1.414 1.415l7.294-7.295 7.294 7.295a1 1 0 0 0 1.415-1.415l-7.295-7.294 7.295-7.294a1 1 0 0 0 0-1.414",
17
+ fill: o
18
+ }
19
+ )
20
+ }
21
+ );
22
+ export {
23
+ i as default
24
+ };