pmg-ui-kit 0.0.83 → 0.0.84

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 ArrowRightToIconProps = {
2
+ onClick?: () => void;
3
+ width?: number;
4
+ height?: number;
5
+ color?: string;
6
+ };
7
+ export declare const ArrowRightToIcon: ({ onClick, width, height, color }: ArrowRightToIconProps) => 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 ArrowRightToIcon = ({ 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-arrow-right-to-arc", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M3 12h12" }), _jsx("path", { d: "M11 8l4 4l-4 4" }), _jsx("path", { d: "M12 21a9 9 0 0 0 0 -18" })] }));
package/dist/index.d.ts CHANGED
@@ -33,6 +33,7 @@ export * from './icons/AnimatedLoaderIcon';
33
33
  export * from './icons/ArchiveBoxIcon';
34
34
  export * from './icons/ArrowIcon';
35
35
  export * from './icons/ArrowTopRightIcon';
36
+ export * from './icons/ArrowRightToIcon';
36
37
  export * from './icons/ArrowUpCircleIcon';
37
38
  export * from './icons/BackIcon';
38
39
  export * from './icons/BellIcon';
package/dist/index.js CHANGED
@@ -33,6 +33,7 @@ export * from './icons/AnimatedLoaderIcon';
33
33
  export * from './icons/ArchiveBoxIcon';
34
34
  export * from './icons/ArrowIcon';
35
35
  export * from './icons/ArrowTopRightIcon';
36
+ export * from './icons/ArrowRightToIcon';
36
37
  export * from './icons/ArrowUpCircleIcon';
37
38
  export * from './icons/BackIcon';
38
39
  export * from './icons/BellIcon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmg-ui-kit",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "description": "Components library for PMG projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",