pmg-ui-kit 0.0.72 → 0.0.74

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 BellIconProps = {
2
+ onClick?: () => void;
3
+ width?: number;
4
+ height?: number;
5
+ color?: string;
6
+ };
7
+ export declare const BellIcon: ({ onClick, width, height, color }: BellIconProps) => 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 BellIcon = ({ 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-bell", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" }), _jsx("path", { d: "M9 17v1a3 3 0 0 0 6 0v-1" })] }));
@@ -0,0 +1,8 @@
1
+ type FileIconProps = {
2
+ onClick?: () => void;
3
+ width?: number;
4
+ height?: number;
5
+ color?: string;
6
+ };
7
+ export declare const FileIcon: ({ onClick, width, height, color }: FileIconProps) => 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 FileIcon = ({ 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-file", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M14 3v4a1 1 0 0 0 1 1h4" }), _jsx("path", { d: "M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" })] }));
package/dist/index.d.ts CHANGED
@@ -35,6 +35,7 @@ export * from './icons/ArrowIcon';
35
35
  export * from './icons/ArrowTopRightIcon';
36
36
  export * from './icons/ArrowUpCircleIcon';
37
37
  export * from './icons/BackIcon';
38
+ export * from './icons/BellIcon';
38
39
  export * from './icons/CalculateIcon';
39
40
  export * from './icons/CheckboxIcon';
40
41
  export * from './icons/CheckCircleIcon';
@@ -55,6 +56,7 @@ export * from './icons/EditIcon';
55
56
  export * from './icons/ExternalLinkIcon';
56
57
  export * from './icons/EyeIcon';
57
58
  export * from './icons/Eye2Icon';
59
+ export * from './icons/FileIcon';
58
60
  export * from './icons/GbFlagIcon';
59
61
  export * from './icons/GripVerticalIcon';
60
62
  export * from './icons/HistoryIcon';
package/dist/index.js CHANGED
@@ -35,6 +35,7 @@ export * from './icons/ArrowIcon';
35
35
  export * from './icons/ArrowTopRightIcon';
36
36
  export * from './icons/ArrowUpCircleIcon';
37
37
  export * from './icons/BackIcon';
38
+ export * from './icons/BellIcon';
38
39
  export * from './icons/CalculateIcon';
39
40
  export * from './icons/CheckboxIcon';
40
41
  export * from './icons/CheckCircleIcon';
@@ -55,6 +56,7 @@ export * from './icons/EditIcon';
55
56
  export * from './icons/ExternalLinkIcon';
56
57
  export * from './icons/EyeIcon';
57
58
  export * from './icons/Eye2Icon';
59
+ export * from './icons/FileIcon';
58
60
  export * from './icons/GbFlagIcon';
59
61
  export * from './icons/GripVerticalIcon';
60
62
  export * from './icons/HistoryIcon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmg-ui-kit",
3
- "version": "0.0.72",
3
+ "version": "0.0.74",
4
4
  "description": "Components library for PMG projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",