pmg-ui-kit 0.0.72 → 0.0.73

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" })] }));
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';
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';
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.73",
4
4
  "description": "Components library for PMG projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",