@gbgr/icons 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +27 -0
  3. package/dist/components/CalendarDateIcon.d.ts +4 -0
  4. package/dist/components/CalendarDateIcon.d.ts.map +1 -0
  5. package/dist/components/CalendarDateIcon.js +3 -0
  6. package/dist/components/ClockIcon.d.ts +4 -0
  7. package/dist/components/ClockIcon.d.ts.map +1 -0
  8. package/dist/components/ClockIcon.js +3 -0
  9. package/dist/components/DashboardIcon.d.ts +4 -0
  10. package/dist/components/DashboardIcon.d.ts.map +1 -0
  11. package/dist/components/DashboardIcon.js +3 -0
  12. package/dist/components/FrameIcon.d.ts +4 -0
  13. package/dist/components/FrameIcon.d.ts.map +1 -0
  14. package/dist/components/FrameIcon.js +3 -0
  15. package/dist/components/HideIcon.d.ts +4 -0
  16. package/dist/components/HideIcon.d.ts.map +1 -0
  17. package/dist/components/HideIcon.js +3 -0
  18. package/dist/components/HourglassIcon.d.ts +4 -0
  19. package/dist/components/HourglassIcon.d.ts.map +1 -0
  20. package/dist/components/HourglassIcon.js +3 -0
  21. package/dist/components/InfoCircleIcon.d.ts +4 -0
  22. package/dist/components/InfoCircleIcon.d.ts.map +1 -0
  23. package/dist/components/InfoCircleIcon.js +3 -0
  24. package/dist/components/LayoutTopIcon.d.ts +4 -0
  25. package/dist/components/LayoutTopIcon.d.ts.map +1 -0
  26. package/dist/components/LayoutTopIcon.js +3 -0
  27. package/dist/components/MdiAppleIcon.d.ts +4 -0
  28. package/dist/components/MdiAppleIcon.d.ts.map +1 -0
  29. package/dist/components/MdiAppleIcon.js +3 -0
  30. package/dist/components/MdiMicrosoftWindowsIcon.d.ts +4 -0
  31. package/dist/components/MdiMicrosoftWindowsIcon.d.ts.map +1 -0
  32. package/dist/components/MdiMicrosoftWindowsIcon.js +3 -0
  33. package/dist/components/MinusIcon.d.ts +4 -0
  34. package/dist/components/MinusIcon.d.ts.map +1 -0
  35. package/dist/components/MinusIcon.js +5 -0
  36. package/dist/components/MoonIcon.d.ts +4 -0
  37. package/dist/components/MoonIcon.d.ts.map +1 -0
  38. package/dist/components/MoonIcon.js +3 -0
  39. package/dist/components/PlanIcon.d.ts +4 -0
  40. package/dist/components/PlanIcon.d.ts.map +1 -0
  41. package/dist/components/PlanIcon.js +3 -0
  42. package/dist/components/PlusIcon.d.ts +4 -0
  43. package/dist/components/PlusIcon.d.ts.map +1 -0
  44. package/dist/components/PlusIcon.js +5 -0
  45. package/dist/components/SettingIcon.d.ts +4 -0
  46. package/dist/components/SettingIcon.d.ts.map +1 -0
  47. package/dist/components/SettingIcon.js +3 -0
  48. package/dist/components/ShowIcon.d.ts +4 -0
  49. package/dist/components/ShowIcon.d.ts.map +1 -0
  50. package/dist/components/ShowIcon.js +3 -0
  51. package/dist/components/SunIcon.d.ts +4 -0
  52. package/dist/components/SunIcon.d.ts.map +1 -0
  53. package/dist/components/SunIcon.js +3 -0
  54. package/dist/components/ThumbsUpIcon.d.ts +4 -0
  55. package/dist/components/ThumbsUpIcon.d.ts.map +1 -0
  56. package/dist/components/ThumbsUpIcon.js +3 -0
  57. package/dist/components/WidgetIcon.d.ts +4 -0
  58. package/dist/components/WidgetIcon.d.ts.map +1 -0
  59. package/dist/components/WidgetIcon.js +3 -0
  60. package/dist/index.d.ts +20 -0
  61. package/dist/index.d.ts.map +1 -0
  62. package/dist/index.js +20 -0
  63. package/dist/types.d.ts +22 -0
  64. package/dist/types.d.ts.map +1 -0
  65. package/dist/types.js +1 -0
  66. package/package.json +32 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 gbgr
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @gbgr/icons
2
+
3
+ This package provides a set of SVG icons as React components for the GBGR Design System.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm add @gbgr/icons
9
+ # or
10
+ npm install @gbgr/icons
11
+ # or
12
+ yarn add @gbgr/icons
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ You can import and use any icon component directly:
18
+
19
+ ```jsx
20
+ import { HomeIcon } from '@gbgr/icons';
21
+
22
+ function MyComponent() {
23
+ return <HomeIcon width={24} height={24} />;
24
+ }
25
+ ```
26
+
27
+ Each icon is a standard React component that accepts `SVGProps<SVGSVGElement>` props, allowing you to customize its size, color, and other SVG attributes.
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const CalendarDateIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default CalendarDateIcon;
4
+ //# sourceMappingURL=CalendarDateIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CalendarDateIcon.d.ts","sourceRoot":"","sources":["../../src/components/CalendarDateIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,gBAAgB,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAAurB,CAAC;AAChvB,eAAe,gBAAgB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const CalendarDateIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z", stroke: "black", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }) });
3
+ export default CalendarDateIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const ClockIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default ClockIcon;
4
+ //# sourceMappingURL=ClockIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ClockIcon.d.ts","sourceRoot":"","sources":["../../src/components/ClockIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,SAAS,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA+U,CAAC;AACjY,eAAe,SAAS,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const ClockIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M12 6V12L16 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z", stroke: "black", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }) });
3
+ export default ClockIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const DashboardIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default DashboardIcon;
4
+ //# sourceMappingURL=DashboardIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DashboardIcon.d.ts","sourceRoot":"","sources":["../../src/components/DashboardIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,aAAa,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAAqiC,CAAC;AAC3lC,eAAe,aAAa,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const DashboardIcon = (props) => _jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { d: "M22 8.52V3.98C22 2.57 21.36 2 19.77 2H15.73C14.14 2 13.5 2.57 13.5 3.98V8.51C13.5 9.93 14.14 10.49 15.73 10.49H19.77C21.36 10.5 22 9.93 22 8.52Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M22 19.77V15.73C22 14.14 21.36 13.5 19.77 13.5H15.73C14.14 13.5 13.5 14.14 13.5 15.73V19.77C13.5 21.36 14.14 22 15.73 22H19.77C21.36 22 22 21.36 22 19.77Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M10.5 8.52V3.98C10.5 2.57 9.86 2 8.27 2H4.23C2.64 2 2 2.57 2 3.98V8.51C2 9.93 2.64 10.49 4.23 10.49H8.27C9.86 10.5 10.5 9.93 10.5 8.52Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M10.5 19.77V15.73C10.5 14.14 9.86 13.5 8.27 13.5H4.23C2.64 13.5 2 14.14 2 15.73V19.77C2 21.36 2.64 22 4.23 22H8.27C9.86 22 10.5 21.36 10.5 19.77Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })] });
3
+ export default DashboardIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const FrameIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default FrameIcon;
4
+ //# sourceMappingURL=FrameIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FrameIcon.d.ts","sourceRoot":"","sources":["../../src/components/FrameIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,SAAS,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAAsL,CAAC;AACxO,eAAe,SAAS,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const FrameIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("circle", { cx: 12, cy: 12, r: 8, stroke: "black", strokeWidth: 2 }) });
3
+ export default FrameIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const HideIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default HideIcon;
4
+ //# sourceMappingURL=HideIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HideIcon.d.ts","sourceRoot":"","sources":["../../src/components/HideIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,QAAQ,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA0pC,CAAC;AAC3sC,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const HideIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M5 5H5.41886C5.55228 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V18C22 19.0849 21.4241 20.0353 20.5613 20.5622M15.0641 15.0714C15.6482 14.3761 16 13.4791 16 12.5C16 10.2909 14.2091 8.5 12 8.5C11.0216 8.5 10.1252 8.8513 9.43012 9.43464M22 22L2 2M2 7.5V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H15.5M12 16.5C9.79086 16.5 8 14.7091 8 12.5", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }) });
3
+ export default HideIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const HourglassIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default HourglassIcon;
4
+ //# sourceMappingURL=HourglassIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HourglassIcon.d.ts","sourceRoot":"","sources":["../../src/components/HourglassIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,aAAa,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA4hD,CAAC;AACllD,eAAe,aAAa,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const HourglassIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M9 18.5H15M6.6 2H17.4C17.9601 2 18.2401 2 18.454 2.10899C18.6422 2.20487 18.7951 2.35785 18.891 2.54601C19 2.75992 19 3.03995 19 3.6V5.67452C19 6.1637 19 6.40829 18.9447 6.63846C18.8957 6.84254 18.8149 7.03763 18.7053 7.21657C18.5816 7.4184 18.4086 7.59135 18.0627 7.93726L15.1314 10.8686C14.7354 11.2646 14.5373 11.4627 14.4632 11.691C14.3979 11.8918 14.3979 12.1082 14.4632 12.309C14.5373 12.5373 14.7354 12.7354 15.1314 13.1314L18.0627 16.0627C18.4086 16.4086 18.5816 16.5816 18.7053 16.7834C18.8149 16.9624 18.8957 17.1575 18.9447 17.3615C19 17.5917 19 17.8363 19 18.3255V20.4C19 20.9601 19 21.2401 18.891 21.454C18.7951 21.6422 18.6422 21.7951 18.454 21.891C18.2401 22 17.9601 22 17.4 22H6.6C6.03995 22 5.75992 22 5.54601 21.891C5.35785 21.7951 5.20487 21.6422 5.10899 21.454C5 21.2401 5 20.9601 5 20.4V18.3255C5 17.8363 5 17.5917 5.05526 17.3615C5.10425 17.1575 5.18506 16.9624 5.29472 16.7834C5.4184 16.5816 5.59135 16.4086 5.93726 16.0627L8.86863 13.1314C9.26465 12.7354 9.46265 12.5373 9.53684 12.309C9.6021 12.1082 9.6021 11.8918 9.53684 11.691C9.46266 11.4627 9.26464 11.2646 8.86863 10.8686L5.93726 7.93726C5.59136 7.59136 5.4184 7.4184 5.29472 7.21657C5.18506 7.03763 5.10425 6.84254 5.05526 6.63846C5 6.40829 5 6.1637 5 5.67452V3.6C5 3.03995 5 2.75992 5.10899 2.54601C5.20487 2.35785 5.35785 2.20487 5.54601 2.10899C5.75992 2 6.03995 2 6.6 2Z", stroke: "black", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }) });
3
+ export default HourglassIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const InfoCircleIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default InfoCircleIcon;
4
+ //# sourceMappingURL=InfoCircleIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InfoCircleIcon.d.ts","sourceRoot":"","sources":["../../src/components/InfoCircleIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,cAAc,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAAqV,CAAC;AAC5Y,eAAe,cAAc,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const InfoCircleIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M12 16V12M12 8H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z", stroke: "black", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }) });
3
+ export default InfoCircleIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LayoutTopIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default LayoutTopIcon;
4
+ //# sourceMappingURL=LayoutTopIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LayoutTopIcon.d.ts","sourceRoot":"","sources":["../../src/components/LayoutTopIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,aAAa,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA+rB,CAAC;AACrvB,eAAe,aAAa,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const LayoutTopIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("g", { opacity: 0.2, children: _jsx("path", { d: "M3 9H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }) }) });
3
+ export default LayoutTopIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const MdiAppleIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default MdiAppleIcon;
4
+ //# sourceMappingURL=MdiAppleIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MdiAppleIcon.d.ts","sourceRoot":"","sources":["../../src/components/MdiAppleIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,YAAY,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAAiyB,CAAC;AACt1B,eAAe,YAAY,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const MdiAppleIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M18.8456 19.5C18.0156 20.74 17.1356 21.95 15.7956 21.97C14.4556 22 14.0256 21.18 12.5056 21.18C10.9756 21.18 10.5056 21.95 9.23559 22C7.92559 22.05 6.93559 20.68 6.09559 19.47C4.38559 17 3.07559 12.45 4.83559 9.39C5.70559 7.87 7.26559 6.91 8.95559 6.88C10.2356 6.86 11.4556 7.75 12.2456 7.75C13.0256 7.75 14.5056 6.68 16.0556 6.84C16.7056 6.87 18.5256 7.1 19.6956 8.82C19.6056 8.88 17.5256 10.1 17.5456 12.63C17.5756 15.65 20.1956 16.66 20.2256 16.67C20.1956 16.74 19.8056 18.11 18.8456 19.5ZM13.1356 3.5C13.8656 2.67 15.0756 2.04 16.0756 2C16.2056 3.17 15.7356 4.35 15.0356 5.19C14.3456 6.04 13.2056 6.7 12.0856 6.61C11.9356 5.46 12.4956 4.26 13.1356 3.5Z", fill: "black" }) });
3
+ export default MdiAppleIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const MdiMicrosoftWindowsIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default MdiMicrosoftWindowsIcon;
4
+ //# sourceMappingURL=MdiMicrosoftWindowsIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MdiMicrosoftWindowsIcon.d.ts","sourceRoot":"","sources":["../../src/components/MdiMicrosoftWindowsIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,uBAAuB,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA8Q,CAAC;AAC9U,eAAe,uBAAuB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const MdiMicrosoftWindowsIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M3 12V6.75L9 5.43V11.91L3 12ZM20 3V11.75L10 11.9V5.21L20 3ZM3 13L9 13.09V19.9L3 18.75V13ZM20 13.25V22L10 20.09V13.1L20 13.25Z", fill: "black" }) });
3
+ export default MdiMicrosoftWindowsIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const MinusIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default MinusIcon;
4
+ //# sourceMappingURL=MinusIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MinusIcon.d.ts","sourceRoot":"","sources":["../../src/components/MinusIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,SAAS,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAE0K,CAAC;AAC5N,eAAe,SAAS,CAAC"}
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const MinusIcon = (props) => _jsx("svg", { preserveAspectRatio: "none", width: "1em", height: "1em", overflow: "visible", style: {
3
+ display: "block"
4
+ }, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("g", { id: "minus", children: _jsx("path", { id: "Icon", d: "M5 12H19", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }) }) });
5
+ export default MinusIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const MoonIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default MoonIcon;
4
+ //# sourceMappingURL=MoonIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MoonIcon.d.ts","sourceRoot":"","sources":["../../src/components/MoonIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,QAAQ,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAAie,CAAC;AAClhB,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const MoonIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M2.03 12.42C2.39 17.57 6.76 21.76 11.99 21.99C15.68 22.15 18.98 20.43 20.96 17.72C21.78 16.61 21.34 15.87 19.97 16.12C19.3 16.24 18.61 16.29 17.89 16.26C13 16.06 9 11.97 8.98 7.14C8.97 5.84 9.24 4.61 9.73 3.49C10.27 2.25 9.62 1.66 8.37 2.19C4.41 3.86 1.7 7.85 2.03 12.42Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }) });
3
+ export default MoonIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const PlanIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default PlanIcon;
4
+ //# sourceMappingURL=PlanIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlanIcon.d.ts","sourceRoot":"","sources":["../../src/components/PlanIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,QAAQ,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAAuhB,CAAC;AACxkB,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const PlanIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("g", { opacity: 0.2, children: _jsx("path", { d: "M20.0156 14.7C19.0856 19.33 14.6456 22.69 9.59562 21.87C5.80562 21.26 2.75562 18.21 2.13562 14.42C1.32562 9.39 4.66563 4.95 9.27563 4.01M18.3356 12C20.9356 12 22.0156 11 21.0556 7.72C20.4056 5.51 18.5056 3.61 16.2956 2.96C13.0156 2 12.0156 3.08 12.0156 5.68V8.56C12.0156 11 13.0156 12 15.0156 12H18.3356Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }) }) });
3
+ export default PlanIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const PlusIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default PlusIcon;
4
+ //# sourceMappingURL=PlusIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlusIcon.d.ts","sourceRoot":"","sources":["../../src/components/PlusIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,QAAQ,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAEkL,CAAC;AACnO,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const PlusIcon = (props) => _jsx("svg", { preserveAspectRatio: "none", width: "1em", height: "1em", overflow: "visible", style: {
3
+ display: "block"
4
+ }, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("g", { id: "plus", children: _jsx("path", { id: "Icon", d: "M12 5V19M5 12H19", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }) }) });
5
+ export default PlusIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SettingIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SettingIcon;
4
+ //# sourceMappingURL=SettingIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SettingIcon.d.ts","sourceRoot":"","sources":["../../src/components/SettingIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,WAAW,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA6uE,CAAC;AACjyE,eAAe,WAAW,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SettingIcon = (props) => _jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { d: "M9.39512 19.3711L9.97956 20.6856C10.1533 21.0768 10.4368 21.4093 10.7958 21.6426C11.1547 21.8759 11.5737 22.0001 12.0018 22C12.4299 22.0001 12.8488 21.8759 13.2078 21.6426C13.5667 21.4093 13.8503 21.0768 14.024 20.6856L14.6085 19.3711C14.8165 18.9047 15.1665 18.5159 15.6085 18.26C16.0532 18.0034 16.5678 17.8941 17.0785 17.9478L18.5085 18.1C18.9341 18.145 19.3637 18.0656 19.7451 17.8713C20.1266 17.6771 20.4434 17.3763 20.6573 17.0056C20.8715 16.635 20.9736 16.2103 20.9511 15.7829C20.9286 15.3555 20.7825 14.9438 20.5307 14.5978L19.684 13.4344C19.3825 13.0171 19.2214 12.5148 19.224 12C19.2239 11.4866 19.3865 10.9864 19.6885 10.5711L20.5351 9.40778C20.787 9.06175 20.933 8.65007 20.9555 8.22267C20.978 7.79528 20.876 7.37054 20.6618 7C20.4479 6.62923 20.131 6.32849 19.7496 6.13423C19.3682 5.93997 18.9386 5.86053 18.5129 5.90556L17.0829 6.05778C16.5722 6.11141 16.0577 6.00212 15.6129 5.74556C15.17 5.48825 14.82 5.09736 14.6129 4.62889L14.024 3.31444C13.8503 2.92317 13.5667 2.59072 13.2078 2.3574C12.8488 2.12408 12.4299 1.99993 12.0018 2C11.5737 1.99993 11.1547 2.12408 10.7958 2.3574C10.4368 2.59072 10.1533 2.92317 9.97956 3.31444L9.39512 4.62889C9.18805 5.09736 8.83799 5.48825 8.39512 5.74556C7.95033 6.00212 7.43579 6.11141 6.92512 6.05778L5.49067 5.90556C5.065 5.86053 4.63541 5.93997 4.25399 6.13423C3.87256 6.32849 3.55569 6.62923 3.34178 7C3.12761 7.37054 3.02557 7.79528 3.04805 8.22267C3.07054 8.65007 3.21658 9.06175 3.46845 9.40778L4.31512 10.5711C4.61706 10.9864 4.77966 11.4866 4.77956 12C4.77966 12.5134 4.61706 13.0137 4.31512 13.4289L3.46845 14.5922C3.21658 14.9382 3.07054 15.3499 3.04805 15.7773C3.02557 16.2047 3.12761 16.6295 3.34178 17C3.5559 17.3706 3.87281 17.6712 4.25418 17.8654C4.63555 18.0596 5.06504 18.1392 5.49067 18.0944L6.92067 17.9422C7.43134 17.8886 7.94589 17.9979 8.39067 18.2544C8.8352 18.511 9.18688 18.902 9.39512 19.3711Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })] });
3
+ export default SettingIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const ShowIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default ShowIcon;
4
+ //# sourceMappingURL=ShowIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ShowIcon.d.ts","sourceRoot":"","sources":["../../src/components/ShowIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,QAAQ,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA63C,CAAC;AAC96C,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const ShowIcon = (props) => _jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { d: "M2 8.37722C2 8.0269 2 7.85174 2.01462 7.70421C2.1556 6.28127 3.28127 5.1556 4.70421 5.01462C4.85174 5 5.03636 5 5.40558 5C5.54785 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.37722Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M12 16.5C14.2091 16.5 16 14.7091 16 12.5C16 10.2909 14.2091 8.5 12 8.5C9.79086 8.5 8 10.2909 8 12.5C8 14.7091 9.79086 16.5 12 16.5Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })] });
3
+ export default ShowIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const SunIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SunIcon;
4
+ //# sourceMappingURL=SunIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SunIcon.d.ts","sourceRoot":"","sources":["../../src/components/SunIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,OAAO,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA6c,CAAC;AAC7f,eAAe,OAAO,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const SunIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M18.5 5.5L19.14 4.86M4.86 19.14L5.5 18.5M12 3V2M12 22V21M3 12H2M22 12H21M5.5 5.5L4.86 4.86M19.14 19.14L18.5 18.5M18.5 12C18.5 15.5899 15.5899 18.5 12 18.5C8.41015 18.5 5.5 15.5899 5.5 12C5.5 8.41015 8.41015 5.5 12 5.5C15.5899 5.5 18.5 8.41015 18.5 12Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }) });
3
+ export default SunIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const ThumbsUpIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default ThumbsUpIcon;
4
+ //# sourceMappingURL=ThumbsUpIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ThumbsUpIcon.d.ts","sourceRoot":"","sources":["../../src/components/ThumbsUpIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,YAAY,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA8hB,CAAC;AACnlB,eAAe,YAAY,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const ThumbsUpIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M7 22V11M2 13V20C2 21.1046 2.89543 22 4 22H17.4262C18.907 22 20.1662 20.9197 20.3914 19.4562L21.4683 12.4562C21.7479 10.6389 20.3418 9 18.5032 9H15C14.4477 9 14 8.55228 14 8V4.46584C14 3.10399 12.896 2 11.5342 2C11.2093 2 10.915 2.1913 10.7831 2.48812L7.26394 10.4061C7.10344 10.7673 6.74532 11 6.35013 11H4C2.89543 11 2 11.8954 2 13Z", stroke: "black", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }) });
3
+ export default ThumbsUpIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ declare const WidgetIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default WidgetIcon;
4
+ //# sourceMappingURL=WidgetIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WidgetIcon.d.ts","sourceRoot":"","sources":["../../src/components/WidgetIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACtC,QAAA,MAAM,UAAU,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAA8b,CAAC;AACjf,eAAe,UAAU,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const WidgetIcon = (props) => _jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M10 19H5C3.89543 19 3 18.1046 3 17V7C3 5.89543 3.89543 5 5 5H19C20.1046 5 21 5.89543 21 7V10.25M12.75 14V18C12.75 18.5523 13.1977 19 13.75 19H19.75C20.3023 19 20.75 18.5523 20.75 18V14C20.75 13.4477 20.3023 13 19.75 13H13.75C13.1977 13 12.75 13.4477 12.75 14Z", stroke: "black", strokeWidth: 1.5, strokeLinecap: "round" }) });
3
+ export default WidgetIcon;
@@ -0,0 +1,20 @@
1
+ export { default as CalendarDateIcon } from "./components/CalendarDateIcon";
2
+ export { default as ClockIcon } from "./components/ClockIcon";
3
+ export { default as DashboardIcon } from "./components/DashboardIcon";
4
+ export { default as FrameIcon } from "./components/FrameIcon";
5
+ export { default as HideIcon } from "./components/HideIcon";
6
+ export { default as HourglassIcon } from "./components/HourglassIcon";
7
+ export { default as InfoCircleIcon } from "./components/InfoCircleIcon";
8
+ export { default as LayoutTopIcon } from "./components/LayoutTopIcon";
9
+ export { default as MdiAppleIcon } from "./components/MdiAppleIcon";
10
+ export { default as MdiMicrosoftWindowsIcon } from "./components/MdiMicrosoftWindowsIcon";
11
+ export { default as MinusIcon } from "./components/MinusIcon";
12
+ export { default as MoonIcon } from "./components/MoonIcon";
13
+ export { default as PlanIcon } from "./components/PlanIcon";
14
+ export { default as PlusIcon } from "./components/PlusIcon";
15
+ export { default as SettingIcon } from "./components/SettingIcon";
16
+ export { default as ShowIcon } from "./components/ShowIcon";
17
+ export { default as SunIcon } from "./components/SunIcon";
18
+ export { default as ThumbsUpIcon } from "./components/ThumbsUpIcon";
19
+ export { default as WidgetIcon } from "./components/WidgetIcon";
20
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,+BAA+B,CAAA;AAC3E,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,6BAA6B,CAAA;AACvE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACnE,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,sCAAsC,CAAA;AACzF,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACnE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,yBAAyB,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1,20 @@
1
+ /* This file is auto-generated by packages/icons/build/build.mjs */
2
+ export { default as CalendarDateIcon } from "./components/CalendarDateIcon";
3
+ export { default as ClockIcon } from "./components/ClockIcon";
4
+ export { default as DashboardIcon } from "./components/DashboardIcon";
5
+ export { default as FrameIcon } from "./components/FrameIcon";
6
+ export { default as HideIcon } from "./components/HideIcon";
7
+ export { default as HourglassIcon } from "./components/HourglassIcon";
8
+ export { default as InfoCircleIcon } from "./components/InfoCircleIcon";
9
+ export { default as LayoutTopIcon } from "./components/LayoutTopIcon";
10
+ export { default as MdiAppleIcon } from "./components/MdiAppleIcon";
11
+ export { default as MdiMicrosoftWindowsIcon } from "./components/MdiMicrosoftWindowsIcon";
12
+ export { default as MinusIcon } from "./components/MinusIcon";
13
+ export { default as MoonIcon } from "./components/MoonIcon";
14
+ export { default as PlanIcon } from "./components/PlanIcon";
15
+ export { default as PlusIcon } from "./components/PlusIcon";
16
+ export { default as SettingIcon } from "./components/SettingIcon";
17
+ export { default as ShowIcon } from "./components/ShowIcon";
18
+ export { default as SunIcon } from "./components/SunIcon";
19
+ export { default as ThumbsUpIcon } from "./components/ThumbsUpIcon";
20
+ export { default as WidgetIcon } from "./components/WidgetIcon";
@@ -0,0 +1,22 @@
1
+ import type * as React from "react";
2
+ export type IconProps = React.SVGProps<SVGSVGElement>;
3
+ export declare const CalendarDateIcon: (props: IconProps) => React.JSX.Element;
4
+ export declare const ClockIcon: (props: IconProps) => React.JSX.Element;
5
+ export declare const DashboardIcon: (props: IconProps) => React.JSX.Element;
6
+ export declare const FrameIcon: (props: IconProps) => React.JSX.Element;
7
+ export declare const HideIcon: (props: IconProps) => React.JSX.Element;
8
+ export declare const HourglassIcon: (props: IconProps) => React.JSX.Element;
9
+ export declare const InfoCircleIcon: (props: IconProps) => React.JSX.Element;
10
+ export declare const LayoutTopIcon: (props: IconProps) => React.JSX.Element;
11
+ export declare const MdiAppleIcon: (props: IconProps) => React.JSX.Element;
12
+ export declare const MdiMicrosoftWindowsIcon: (props: IconProps) => React.JSX.Element;
13
+ export declare const MinusIcon: (props: IconProps) => React.JSX.Element;
14
+ export declare const MoonIcon: (props: IconProps) => React.JSX.Element;
15
+ export declare const PlanIcon: (props: IconProps) => React.JSX.Element;
16
+ export declare const PlusIcon: (props: IconProps) => React.JSX.Element;
17
+ export declare const SettingIcon: (props: IconProps) => React.JSX.Element;
18
+ export declare const ShowIcon: (props: IconProps) => React.JSX.Element;
19
+ export declare const SunIcon: (props: IconProps) => React.JSX.Element;
20
+ export declare const ThumbsUpIcon: (props: IconProps) => React.JSX.Element;
21
+ export declare const WidgetIcon: (props: IconProps) => React.JSX.Element;
22
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AACnC,MAAM,MAAM,SAAS,GAAG,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;AACtD,MAAM,CAAC,OAAO,CAAC,MAAM,gBAAgB,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC/E,MAAM,CAAC,OAAO,CAAC,MAAM,SAAS,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACxE,MAAM,CAAC,OAAO,CAAC,MAAM,aAAa,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC5E,MAAM,CAAC,OAAO,CAAC,MAAM,SAAS,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACxE,MAAM,CAAC,OAAO,CAAC,MAAM,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACvE,MAAM,CAAC,OAAO,CAAC,MAAM,aAAa,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC5E,MAAM,CAAC,OAAO,CAAC,MAAM,cAAc,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC7E,MAAM,CAAC,OAAO,CAAC,MAAM,aAAa,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC5E,MAAM,CAAC,OAAO,CAAC,MAAM,YAAY,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC3E,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACtF,MAAM,CAAC,OAAO,CAAC,MAAM,SAAS,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACxE,MAAM,CAAC,OAAO,CAAC,MAAM,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACvE,MAAM,CAAC,OAAO,CAAC,MAAM,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACvE,MAAM,CAAC,OAAO,CAAC,MAAM,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACvE,MAAM,CAAC,OAAO,CAAC,MAAM,WAAW,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC1E,MAAM,CAAC,OAAO,CAAC,MAAM,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACvE,MAAM,CAAC,OAAO,CAAC,MAAM,OAAO,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AACtE,MAAM,CAAC,OAAO,CAAC,MAAM,YAAY,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC3E,MAAM,CAAC,OAAO,CAAC,MAAM,UAAU,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC"}
package/dist/types.js ADDED
@@ -0,0 +1 @@
1
+ export {};
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@gbgr/icons",
3
+ "version": "0.1.0",
4
+ "main": "./dist/index.js",
5
+ "types": "./dist/index.d.ts",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.js",
13
+ "default": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./*": "./dist/*"
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "devDependencies": {
22
+ "@svgr/cli": "latest",
23
+ "@svgr/core": "^8.0.7",
24
+ "@svgr/plugin-jsx": "^8.0.7",
25
+ "react": "latest"
26
+ },
27
+ "scripts": {
28
+ "build": "rm -rf dist tsconfig.tsbuildinfo && node build/build.mjs && tsc -b tsconfig.json --force",
29
+ "typecheck": "tsc -p tsconfig.json --noEmit",
30
+ "clean": "rm -rf dist tsconfig.tsbuildinfo && find src -type f \\( -name '*.js' -o -name '*.js.map' -o -name '*.d.ts' -o -name '*.d.ts.map' \\) -delete"
31
+ }
32
+ }