pmg-ui-kit 0.0.76 → 0.0.77

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.
@@ -0,0 +1,8 @@
1
+ type HourglassIconProps = {
2
+ onClick?: () => void;
3
+ width?: number;
4
+ height?: number;
5
+ color?: string;
6
+ };
7
+ export declare const HourglassIcon: ({ onClick, width, height, color }: HourglassIconProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const HourglassIcon = ({ onClick, width = 24, height = 24, color = "currentColor" }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: width, height: height, viewBox: "0 0 24 24", fill: "none", stroke: color, strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", onClick: onClick, className: "icon icon-tabler icons-tabler-outline icon-tabler-hourglass-empty", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z" }), _jsx("path", { d: "M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" })] }));
package/dist/index.d.ts CHANGED
@@ -60,6 +60,7 @@ export * from './icons/FileIcon';
60
60
  export * from './icons/GbFlagIcon';
61
61
  export * from './icons/GripVerticalIcon';
62
62
  export * from './icons/HistoryIcon';
63
+ export * from './icons/HourglassIcon';
63
64
  export * from './icons/InfoIcon';
64
65
  export * from './icons/InformationCircleIcon';
65
66
  export * from './icons/InformationTriangleIcon';
package/dist/index.js CHANGED
@@ -60,6 +60,7 @@ export * from './icons/FileIcon';
60
60
  export * from './icons/GbFlagIcon';
61
61
  export * from './icons/GripVerticalIcon';
62
62
  export * from './icons/HistoryIcon';
63
+ export * from './icons/HourglassIcon';
63
64
  export * from './icons/InfoIcon';
64
65
  export * from './icons/InformationCircleIcon';
65
66
  export * from './icons/InformationTriangleIcon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmg-ui-kit",
3
- "version": "0.0.76",
3
+ "version": "0.0.77",
4
4
  "description": "Components library for PMG projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",