pmg-ui-kit 0.0.42 → 0.0.43
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 SquareCheckIconProps = {
|
|
2
|
+
onClick?: () => void;
|
|
3
|
+
width?: number;
|
|
4
|
+
height?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare const SquareCheckIcon: ({ onClick, width, height, color }: SquareCheckIconProps) => 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 SquareCheckIcon = ({ 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-square-check", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }), _jsx("path", { d: "M9 12l2 2l4 -4" })] }));
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type SquareEmptyIconProps = {
|
|
2
|
+
onClick?: () => void;
|
|
3
|
+
width?: number;
|
|
4
|
+
height?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare const SquareEmptyIcon: ({ onClick, width, height, color }: SquareEmptyIconProps) => 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 SquareEmptyIcon = ({ 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-square", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" })] }));
|
package/dist/index.d.ts
CHANGED
|
@@ -59,5 +59,7 @@ export * from './icons/PlusIcon';
|
|
|
59
59
|
export * from './icons/RefreshIcon';
|
|
60
60
|
export * from './icons/SaveDiscIcon';
|
|
61
61
|
export * from './icons/SaveIcon';
|
|
62
|
+
export * from './icons/SquareCheckIcon';
|
|
63
|
+
export * from './icons/SquareEmptyIcon';
|
|
62
64
|
export * from './icons/TrashIcon';
|
|
63
65
|
export * from './icons/UserPlusIcon';
|
package/dist/index.js
CHANGED
|
@@ -59,5 +59,7 @@ export * from './icons/PlusIcon';
|
|
|
59
59
|
export * from './icons/RefreshIcon';
|
|
60
60
|
export * from './icons/SaveDiscIcon';
|
|
61
61
|
export * from './icons/SaveIcon';
|
|
62
|
+
export * from './icons/SquareCheckIcon';
|
|
63
|
+
export * from './icons/SquareEmptyIcon';
|
|
62
64
|
export * from './icons/TrashIcon';
|
|
63
65
|
export * from './icons/UserPlusIcon';
|