@konstructio/ui 0.1.2-alpha.3 → 0.1.2-alpha.31

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 (163) hide show
  1. package/dist/DatePicker.css +1 -1
  2. package/dist/Modal-5xSxFoaD.js +99 -0
  3. package/dist/_commonjsHelpers-DaMA6jEr.js +8 -0
  4. package/dist/chevron-down-DgT-uSF9.js +5 -0
  5. package/dist/chevron-right-DYvXLeql.js +7 -0
  6. package/dist/chevron-up-DrQr2Fwd.js +5 -0
  7. package/dist/components/Alert/Alert.js +2 -2
  8. package/dist/components/AlertDialog/AlertDialog.js +1 -1
  9. package/dist/components/AlertDialog/components/AlertDialogTrigger.js +1 -1
  10. package/dist/components/AlertDialog/components/index.js +1 -1
  11. package/dist/components/Badge/Badge.js +30 -33
  12. package/dist/components/Badge/Badge.variants.js +8 -6
  13. package/dist/components/Breadcrumb/Breadcrumb.js +1 -1
  14. package/dist/components/Breadcrumb/components/Item/Item.js +24 -23
  15. package/dist/components/Breadcrumb/hooks/useBreadcrumb.js +1 -1
  16. package/dist/components/Button/Button.js +1 -1
  17. package/dist/components/Button/Button.variants.js +1 -1
  18. package/dist/components/Card/Card.variants.js +5 -9
  19. package/dist/components/Checkbox/Checkbox.js +6 -6
  20. package/dist/components/Command/Command.js +2 -2
  21. package/dist/components/Command/components/Command.js +1 -1
  22. package/dist/components/Command/components/CommandEmpty.js +1 -1
  23. package/dist/components/Command/components/CommandGroup.js +1 -1
  24. package/dist/components/Command/components/CommandInput.js +2 -2
  25. package/dist/components/Command/components/CommandItem.js +1 -1
  26. package/dist/components/Command/components/CommandList.js +1 -1
  27. package/dist/components/Command/components/CommandSeparator.js +1 -1
  28. package/dist/components/Command/components/DialogContent.js +2 -2
  29. package/dist/components/Command/components/DialogOverlay.js +1 -1
  30. package/dist/components/Datepicker/DatePicker.js +1209 -1147
  31. package/dist/components/Divider/Divider.variants.js +1 -1
  32. package/dist/components/Dropdown/Dropdown.js +46 -28
  33. package/dist/components/Dropdown/Dropdown.variants.js +32 -9
  34. package/dist/components/Dropdown/components/List/List.js +133 -54
  35. package/dist/components/Dropdown/components/List/List.variants.js +9 -7
  36. package/dist/components/Dropdown/components/ListItem/ListItem.js +74 -24
  37. package/dist/components/Dropdown/components/ListItem/ListItem.variants.js +9 -7
  38. package/dist/components/Dropdown/components/Wrapper.js +144 -109
  39. package/dist/components/Dropdown/constants/index.js +4 -0
  40. package/dist/components/Dropdown/constants/pagination.js +4 -0
  41. package/dist/components/Dropdown/contexts/dropdown.context.js +26 -8
  42. package/dist/components/Dropdown/contexts/dropdown.provider.js +48 -19
  43. package/dist/components/Dropdown/hooks/useDropdown.js +83 -39
  44. package/dist/components/Dropdown/hooks/useNavigationList.js +28 -36
  45. package/dist/components/DropdownButton/DropdownButton.js +1 -1
  46. package/dist/components/Filter/Filter.variants.js +2 -2
  47. package/dist/components/Filter/components/BadgeDropdown/BadgeMultiSelect.js +1 -1
  48. package/dist/components/Filter/components/DateFilterDropdown/DateFilterDropdown.js +1 -1
  49. package/dist/components/Input/Input.js +1 -1
  50. package/dist/components/Input/Input.variants.js +1 -1
  51. package/dist/components/Loading/Loading.js +1 -7
  52. package/dist/components/Modal/Modal.js +2 -2
  53. package/dist/components/Modal/components/Body/Body.js +1 -1
  54. package/dist/components/Modal/components/Footer/Footer.js +1 -1
  55. package/dist/components/Modal/components/Header/Header.js +1 -1
  56. package/dist/components/Modal/components/Wrapper/Wrapper.js +3 -3
  57. package/dist/components/Modal/components/index.js +1 -1
  58. package/dist/components/NumberInput/NumberInput.js +2 -2
  59. package/dist/components/PhoneNumberInput/PhoneNumberInput.js +8 -0
  60. package/dist/components/PhoneNumberInput/PhoneNumberInput.variants.js +45 -0
  61. package/dist/components/PhoneNumberInput/components/FlagContent/FlagContent.js +27 -0
  62. package/dist/components/PhoneNumberInput/components/FlagSelectorList/FlagSelectorList.js +629 -0
  63. package/dist/components/PhoneNumberInput/components/FlagSelectorWrapper/FlagSelectorWrapper.js +36 -0
  64. package/dist/components/PhoneNumberInput/components/TruncateText/TruncateText.js +45 -0
  65. package/dist/components/PhoneNumberInput/components/Wrapper.js +625 -0
  66. package/dist/components/PhoneNumberInput/components/index.js +6 -0
  67. package/dist/components/PhoneNumberInput/contexts/index.js +8 -0
  68. package/dist/components/PhoneNumberInput/contexts/phone-number.context.js +28 -0
  69. package/dist/components/PhoneNumberInput/contexts/phone-number.hook.js +13 -0
  70. package/dist/components/PhoneNumberInput/contexts/phone-number.provider.js +6139 -0
  71. package/dist/components/PhoneNumberInput/utils/index.js +11 -0
  72. package/dist/components/PieChart/PieChart.js +647 -664
  73. package/dist/components/RadioCard/RadioCard.variants.js +1 -6
  74. package/dist/components/RadioGroup/RadioGroup.js +1 -1
  75. package/dist/components/Range/Range.js +1 -1
  76. package/dist/components/Sidebar/Sidebar.variants.js +2 -2
  77. package/dist/components/Sidebar/components/Wrapper/Wrapper.js +29 -28
  78. package/dist/components/Slider/Slider.js +1 -1
  79. package/dist/components/Switch/Switch.js +8 -8
  80. package/dist/components/Switch/Switch.variants.js +4 -4
  81. package/dist/components/Tabs/Tabs.js +1 -1
  82. package/dist/components/Tabs/Tabs.variants.js +45 -24
  83. package/dist/components/Tabs/components/Content.js +1 -1
  84. package/dist/components/Tabs/components/List.js +1 -1
  85. package/dist/components/Tabs/components/Trigger.js +9 -8
  86. package/dist/components/Tag/Tag.js +1 -1
  87. package/dist/components/TagSelect/components/Wrapper/Wrapper.js +98 -49
  88. package/dist/components/TimePicker/TimePicker.variants.js +2 -2
  89. package/dist/components/TimePicker/components/Wrapper/Wrapper.js +2 -2
  90. package/dist/components/Toast/Toast.js +206 -181
  91. package/dist/components/Tooltip/Tooltip.js +1 -1
  92. package/dist/components/Typography/Typography.variants.js +18 -23
  93. package/dist/components/VirtualizedTable/VirtualizedTable.js +119 -0
  94. package/dist/components/VirtualizedTable/VirtualizedTable.variants.js +5 -0
  95. package/dist/components/VirtualizedTable/assets/chevron-down.js +25 -0
  96. package/dist/components/VirtualizedTable/assets/chevron-up.js +25 -0
  97. package/dist/components/VirtualizedTable/assets/index.js +6 -0
  98. package/dist/components/VirtualizedTable/components/Actions/Actions.js +72 -0
  99. package/dist/components/VirtualizedTable/components/Body/Body.js +51 -0
  100. package/dist/components/VirtualizedTable/components/DotPaginate/DotPaginate.js +165 -0
  101. package/dist/components/VirtualizedTable/components/DropdownPaginate/DropdownPaginate.js +34 -0
  102. package/dist/components/VirtualizedTable/components/Filter/Filter.js +88 -0
  103. package/dist/components/VirtualizedTable/components/FormPaginate/FormPaginate.js +48 -0
  104. package/dist/components/VirtualizedTable/components/Header/Header.js +84 -0
  105. package/dist/components/VirtualizedTable/components/Pagination/Pagination.js +53 -0
  106. package/dist/components/VirtualizedTable/components/Skeleton/Skeleton.js +67 -0
  107. package/dist/components/VirtualizedTable/components/TruncateText/TruncateText.js +34 -0
  108. package/dist/components/VirtualizedTable/components/WrapperBody/WrapperBody.js +27 -0
  109. package/dist/components/VirtualizedTable/components/index.js +16 -0
  110. package/dist/components/VirtualizedTable/constants/index.js +5 -0
  111. package/dist/components/VirtualizedTable/constants/pagination.js +5 -0
  112. package/dist/components/VirtualizedTable/contexts/index.js +8 -0
  113. package/dist/components/VirtualizedTable/contexts/table.context.js +32 -0
  114. package/dist/components/VirtualizedTable/contexts/table.hook.js +11 -0
  115. package/dist/components/VirtualizedTable/contexts/table.provider.js +85 -0
  116. package/dist/components/index.js +79 -73
  117. package/dist/contexts/theme.provider.js +0 -1
  118. package/dist/{createLucideIcon-DbC6TvM5.js → createLucideIcon-D4r5Phnh.js} +0 -24
  119. package/dist/debounce-BFejQm9P.js +200 -0
  120. package/dist/ellipsis-vertical-BVPtjl5f.js +9 -0
  121. package/dist/{index-h-Ul0anl.js → index--V_ZsiQe.js} +1 -22
  122. package/dist/index-2hB40Iuc.js +1873 -0
  123. package/dist/index-BZPx6jYI.js +8 -0
  124. package/dist/{index-bwWKd82e.js → index-BbQkJE5L.js} +1 -1
  125. package/dist/index-BtQfgaSF.js +60 -0
  126. package/dist/index-C3tHPg8y.js +662 -0
  127. package/dist/index-CIAmiWcw.js +200 -0
  128. package/dist/index-CSFe9uC5.js +14 -0
  129. package/dist/index-CSWGJT-v.js +1722 -0
  130. package/dist/index-CigKKiZS.js +91 -0
  131. package/dist/index-DDByhzds.js +137 -0
  132. package/dist/{index-BAraV3ai.js → index-DH2Fnov1.js} +11 -12
  133. package/dist/index-DLcqcWxM.js +29 -0
  134. package/dist/index-Dbt2vBmS.js +136 -0
  135. package/dist/{index-DB2XhXHn.js → index-DpW9ExsS.js} +7 -7
  136. package/dist/index-DrWQH0QF.js +55 -0
  137. package/dist/{index-D3xzCzcO.js → index-X4k_cU8k.js} +4 -4
  138. package/dist/index-kyuBfLcN.js +479 -0
  139. package/dist/{index-C1g_chDT.js → index-mPY_8Y5v.js} +2 -2
  140. package/dist/index-ohdbKsws.js +27 -0
  141. package/dist/index.d.ts +184 -18
  142. package/dist/index.js +106 -98
  143. package/dist/libphonenumber-_7ZyKWA7.js +11549 -0
  144. package/dist/package.json +46 -32
  145. package/dist/styles.css +1 -1
  146. package/dist/ui/civo-theme.css +191 -167
  147. package/dist/{useBreadcrumb-B8DnuqkR.js → useBreadcrumb-BAHbGQ_O.js} +0 -10
  148. package/dist/utils/index.js +534 -501
  149. package/dist/{x-BPcqkRZd.js → x-DPU9OdYH.js} +1 -1
  150. package/package.json +46 -32
  151. package/dist/Modal-V67Uz78z.js +0 -98
  152. package/dist/_commonjsHelpers-C6fGbg64.js +0 -6
  153. package/dist/chevron-down-BLZPftpV.js +0 -11
  154. package/dist/chevron-up-RLP4nX7V.js +0 -54
  155. package/dist/index-BXuxPoz7.js +0 -435
  156. package/dist/index-BfXxHr_2.js +0 -125
  157. package/dist/index-C9T9HQaa.js +0 -423
  158. package/dist/index-CZnD2QxM.js +0 -32
  159. package/dist/index-CrBonFvu.js +0 -144
  160. package/dist/index-Cvx4lqTq.js +0 -47
  161. package/dist/index-DQH6odE9.js +0 -82
  162. package/dist/index-Oq5GlCHP.js +0 -131
  163. package/dist/index-iXyXtdgP.js +0 -31
@@ -1,5 +1,5 @@
1
1
  import l, { forwardRef as c } from "react";
2
- import { P as a } from "./index-h-Ul0anl.js";
2
+ import { P as a } from "./index--V_ZsiQe.js";
3
3
  function f() {
4
4
  return f = Object.assign || function(e) {
5
5
  for (var o = 1; o < arguments.length; o++) {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@konstructio/ui",
3
3
  "description": "A set of reusable and customizable React components built for konstruct.io",
4
4
  "private": false,
5
- "version": "0.1.2-alpha.3",
5
+ "version": "0.1.2-alpha.31",
6
6
  "type": "module",
7
7
  "license": "MIT",
8
8
  "main": "dist/index.js",
@@ -59,26 +59,34 @@
59
59
  "@radix-ui/react-checkbox": "^1.3.3",
60
60
  "@radix-ui/react-dialog": "^1.1.15",
61
61
  "@radix-ui/react-slider": "^1.3.6",
62
- "@radix-ui/react-slot": "^1.2.3",
62
+ "@radix-ui/react-slot": "^1.2.4",
63
63
  "@radix-ui/react-switch": "^1.2.6",
64
64
  "@radix-ui/react-tabs": "^1.1.13",
65
65
  "@radix-ui/react-toast": "^1.2.15",
66
- "@radix-ui/react-visually-hidden": "^1.2.3",
67
- "chart.js": "^4.5.0",
66
+ "@radix-ui/react-tooltip": "^1.2.8",
67
+ "@radix-ui/react-visually-hidden": "^1.2.4",
68
+ "@react-input/mask": "^2.0.4",
69
+ "@tanstack/react-table": "^8.21.3",
70
+ "@tanstack/react-virtual": "^3.13.12",
71
+ "chart.js": "^4.5.1",
68
72
  "class-variance-authority": "^0.7.1",
69
73
  "clsx": "^2.1.1",
70
74
  "cmdk": "^1.1.1",
71
75
  "countries-and-timezones": "^3.8.0",
76
+ "country-flag-icons": "^1.6.4",
77
+ "google-libphonenumber": "^3.2.43",
78
+ "i18n-iso-countries": "^7.14.0",
72
79
  "js-cookie": "^3.0.5",
73
- "lucide-react": "^0.544.0",
74
- "react-chartjs-2": "^5.3.0",
75
- "react-day-picker": "^9.11.0",
80
+ "lucide-react": "^0.554.0",
81
+ "react-chartjs-2": "^5.3.1",
82
+ "react-day-picker": "^9.11.2",
76
83
  "react-feather": "^2.0.10",
77
84
  "react-focus-lock": "^2.13.6",
78
85
  "react-remove-scroll": "^2.7.1",
79
- "tailwind-merge": "^3.3.1"
86
+ "tailwind-merge": "^3.4.0"
80
87
  },
81
88
  "peerDependencies": {
89
+ "@tanstack/react-query": "^5.90",
82
90
  "@types/react": "*",
83
91
  "@types/react-dom": "*",
84
92
  "react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
@@ -104,46 +112,52 @@
104
112
  },
105
113
  "@types/react-router-dom": {
106
114
  "optional": true
115
+ },
116
+ "@tanstack/react-query": {
117
+ "optional": false
107
118
  }
108
119
  },
109
120
  "devDependencies": {
110
- "@rollup/plugin-alias": "^5.1.1",
111
- "@storybook/addon-docs": "^9.1.7",
112
- "@storybook/addon-links": "^9.1.7",
113
- "@storybook/react-vite": "^9.1.7",
114
- "@tailwindcss/vite": "^4.1.13",
115
- "@testing-library/jest-dom": "^6.8.0",
121
+ "@faker-js/faker": "^10.1.0",
122
+ "@rollup/plugin-alias": "^6.0.0",
123
+ "@storybook/addon-docs": "^10.0.8",
124
+ "@storybook/addon-links": "^10.0.8",
125
+ "@storybook/react-vite": "^10.0.8",
126
+ "@tailwindcss/vite": "^4.1.17",
127
+ "@tanstack/react-query": "^5.90.10",
128
+ "@testing-library/jest-dom": "^6.9.1",
116
129
  "@testing-library/react": "^16.3.0",
117
130
  "@testing-library/user-event": "^14.6.1",
131
+ "@types/google-libphonenumber": "^7.4.30",
118
132
  "@types/jest-axe": "^3.5.9",
119
133
  "@types/js-cookie": "^3.0.6",
120
- "@types/lodash": "^4.17.20",
121
- "@types/react": "^19.1.13",
122
- "@types/react-dom": "^19.1.9",
123
- "@typescript-eslint/eslint-plugin": "^8.44.0",
124
- "@typescript-eslint/parser": "^8.44.0",
125
- "@vitejs/plugin-react": "^5.0.3",
134
+ "@types/lodash": "^4.17.21",
135
+ "@types/react": "^19.2.7",
136
+ "@types/react-dom": "^19.2.3",
137
+ "@typescript-eslint/eslint-plugin": "^8.48.0",
138
+ "@typescript-eslint/parser": "^8.48.0",
139
+ "@vitejs/plugin-react": "^5.1.1",
126
140
  "@vitest/coverage-v8": "^3.2.4",
127
- "autoprefixer": "^10.4.21",
128
- "eslint": "^9.36.0",
141
+ "autoprefixer": "^10.4.22",
142
+ "eslint": "^9.39.1",
129
143
  "eslint-plugin-react": "^7.37.5",
130
- "eslint-plugin-react-hooks": "^5.2.0",
131
- "eslint-plugin-react-refresh": "^0.4.20",
132
- "eslint-plugin-storybook": "^9.1.7",
144
+ "eslint-plugin-react-hooks": "^6.1.1",
145
+ "eslint-plugin-react-refresh": "^0.4.23",
146
+ "eslint-plugin-storybook": "^9.1.13",
133
147
  "eslint-plugin-vitest": "^0.5.4",
134
- "glob": "^11.0.3",
148
+ "glob": "^13.0.0",
135
149
  "husky": "^9.1.7",
136
150
  "jest-axe": "^10.0.0",
137
- "jsdom": "^27.0.0",
151
+ "jsdom": "^27.2.0",
138
152
  "lodash": "^4.17.21",
139
153
  "postcss": "^8.5.6",
140
154
  "prettier": "^3.6.2",
141
- "rimraf": "^6.0.1",
142
- "storybook": "^9.1.7",
143
- "tailwindcss": "^4.1.13",
155
+ "rimraf": "^6.1.2",
156
+ "storybook": "^10.0.8",
157
+ "tailwindcss": "^4.1.17",
144
158
  "ts-node": "^10.9.2",
145
- "typescript": "^5.9.2",
146
- "vite": "^7.1.7",
159
+ "typescript": "^5.9.3",
160
+ "vite": "^7.2.4",
147
161
  "vite-plugin-dts": "^4.5.4",
148
162
  "vite-plugin-lib-inject-css": "^2.2.2",
149
163
  "vite-plugin-svgr": "^4.5.0",
@@ -1,98 +0,0 @@
1
- import { Body as b } from "./components/Modal/components/Body/Body.js";
2
- import { Footer as g } from "./components/Modal/components/Footer/Footer.js";
3
- import { Header as v } from "./components/Modal/components/Header/Header.js";
4
- import { jsx as n, jsxs as p } from "react/jsx-runtime";
5
- import { Children as i, isValidElement as s, useEffect as w } from "react";
6
- import { r as x } from "./index-C9T9HQaa.js";
7
- import { R as A } from "./index-iXyXtdgP.js";
8
- import { R as E } from "./Combination-VYaRRJBZ.js";
9
- import { cn as f } from "./utils/index.js";
10
- import { buttonCloseVariants as N, modalVariants as R } from "./components/Modal/components/Wrapper/Wrapper.variants.js";
11
- import { X as k } from "./x-BPcqkRZd.js";
12
- const B = ({
13
- children: e,
14
- theme: t,
15
- className: m,
16
- buttonCloseClassName: d,
17
- onClose: a
18
- }) => {
19
- const l = i.toArray(e).find(
20
- (o) => s(o) && o.type === r.Header
21
- ), c = i.toArray(e).find(
22
- (o) => s(o) && o.type === r.Body
23
- ), y = i.toArray(e).find(
24
- (o) => s(o) && o.type === r.Footer
25
- ), u = i.toArray(e).filter(
26
- (o) => !s(o) || ![r.Header, r.Body, r.Footer].includes(
27
- o.type
28
- )
29
- );
30
- return /* @__PURE__ */ n(E, { children: /* @__PURE__ */ p(
31
- "div",
32
- {
33
- className: "fixed inset-0 grid place-content-center",
34
- "data-theme": t,
35
- children: [
36
- /* @__PURE__ */ n(
37
- "div",
38
- {
39
- className: "absolute inset-0 bg-black opacity-75 animate-in fade-in-0",
40
- onClick: a,
41
- role: "presentation"
42
- }
43
- ),
44
- /* @__PURE__ */ p(
45
- "div",
46
- {
47
- className: f(
48
- R({
49
- className: m
50
- })
51
- ),
52
- role: "dialog",
53
- "aria-modal": "true",
54
- children: [
55
- l,
56
- /* @__PURE__ */ p(
57
- "button",
58
- {
59
- className: f(
60
- N({
61
- className: d
62
- })
63
- ),
64
- onClick: a,
65
- children: [
66
- /* @__PURE__ */ n(k, {}),
67
- /* @__PURE__ */ n(A, { children: "Dismiss modal" })
68
- ]
69
- }
70
- ),
71
- c ?? u,
72
- y
73
- ]
74
- }
75
- )
76
- ]
77
- }
78
- ) });
79
- }, r = ({ isOpen: e, onClose: t, container: m, ...d }) => (w(() => {
80
- const a = new AbortController(), l = (c) => {
81
- c.code === "Escape" && t?.();
82
- };
83
- return window.addEventListener("keydown", l, {
84
- signal: a.signal
85
- }), () => {
86
- a.abort();
87
- };
88
- }, [t]), e ? x.createPortal(
89
- /* @__PURE__ */ n(B, { ...d, onClose: t }),
90
- m || document.body
91
- ) : null);
92
- r.Header = v;
93
- r.Body = b;
94
- r.Footer = g;
95
- export {
96
- r as M,
97
- B as W
98
- };
@@ -1,6 +0,0 @@
1
- function e(t) {
2
- return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
3
- }
4
- export {
5
- e as g
6
- };
@@ -1,11 +0,0 @@
1
- import { c as o } from "./createLucideIcon-DbC6TvM5.js";
2
- /**
3
- * @license lucide-react v0.544.0 - ISC
4
- *
5
- * This source code is licensed under the ISC license.
6
- * See the LICENSE file in the root directory of this source tree.
7
- */
8
- const n = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]], e = o("chevron-down", n);
9
- export {
10
- e as C
11
- };
@@ -1,54 +0,0 @@
1
- import l, { forwardRef as c } from "react";
2
- import { P as a } from "./index-h-Ul0anl.js";
3
- function p() {
4
- return p = Object.assign || function(e) {
5
- for (var o = 1; o < arguments.length; o++) {
6
- var t = arguments[o];
7
- for (var r in t)
8
- Object.prototype.hasOwnProperty.call(t, r) && (e[r] = t[r]);
9
- }
10
- return e;
11
- }, p.apply(this, arguments);
12
- }
13
- function u(e, o) {
14
- if (e == null) return {};
15
- var t = v(e, o), r, n;
16
- if (Object.getOwnPropertySymbols) {
17
- var i = Object.getOwnPropertySymbols(e);
18
- for (n = 0; n < i.length; n++)
19
- r = i[n], !(o.indexOf(r) >= 0) && Object.prototype.propertyIsEnumerable.call(e, r) && (t[r] = e[r]);
20
- }
21
- return t;
22
- }
23
- function v(e, o) {
24
- if (e == null) return {};
25
- var t = {}, r = Object.keys(e), n, i;
26
- for (i = 0; i < r.length; i++)
27
- n = r[i], !(o.indexOf(n) >= 0) && (t[n] = e[n]);
28
- return t;
29
- }
30
- var s = c(function(e, o) {
31
- var t = e.color, r = t === void 0 ? "currentColor" : t, n = e.size, i = n === void 0 ? 24 : n, f = u(e, ["color", "size"]);
32
- return /* @__PURE__ */ l.createElement("svg", p({
33
- ref: o,
34
- xmlns: "http://www.w3.org/2000/svg",
35
- width: i,
36
- height: i,
37
- viewBox: "0 0 24 24",
38
- fill: "none",
39
- stroke: r,
40
- strokeWidth: "2",
41
- strokeLinecap: "round",
42
- strokeLinejoin: "round"
43
- }, f), /* @__PURE__ */ l.createElement("polyline", {
44
- points: "18 15 12 9 6 15"
45
- }));
46
- });
47
- s.propTypes = {
48
- color: a.string,
49
- size: a.oneOfType([a.string, a.number])
50
- };
51
- s.displayName = "ChevronUp";
52
- export {
53
- s as C
54
- };