pmg-ui-kit 0.0.71 → 0.0.72

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 HistoryIconProps = {
2
+ onClick?: () => void;
3
+ width?: number;
4
+ height?: number;
5
+ color?: string;
6
+ };
7
+ export declare const HistoryIcon: ({ onClick, width, height, color }: HistoryIconProps) => 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 HistoryIcon = ({ 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-history", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M12 8l0 4l2 2" }), _jsx("path", { d: "M3.05 11a9 9 0 1 1 .5 4m-.5 5v-5h5" })] }));
package/dist/index.d.ts CHANGED
@@ -57,6 +57,7 @@ export * from './icons/EyeIcon';
57
57
  export * from './icons/Eye2Icon';
58
58
  export * from './icons/GbFlagIcon';
59
59
  export * from './icons/GripVerticalIcon';
60
+ export * from './icons/HistoryIcon';
60
61
  export * from './icons/InfoIcon';
61
62
  export * from './icons/InformationCircleIcon';
62
63
  export * from './icons/InformationTriangleIcon';
package/dist/index.js CHANGED
@@ -57,6 +57,7 @@ export * from './icons/EyeIcon';
57
57
  export * from './icons/Eye2Icon';
58
58
  export * from './icons/GbFlagIcon';
59
59
  export * from './icons/GripVerticalIcon';
60
+ export * from './icons/HistoryIcon';
60
61
  export * from './icons/InfoIcon';
61
62
  export * from './icons/InformationCircleIcon';
62
63
  export * from './icons/InformationTriangleIcon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmg-ui-kit",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "description": "Components library for PMG projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",