@pzh-ui/icons 0.0.19 → 0.0.21
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.
- package/dist/components/CircleCheck.cjs.js +1 -1
- package/dist/components/CircleCheck.cjs.js.map +1 -1
- package/dist/components/CircleCheck.es.js +1 -1
- package/dist/components/CircleCheck.es.js.map +1 -1
- package/dist/components/CircleInfo.cjs.js +1 -1
- package/dist/components/CircleInfo.cjs.js.map +1 -1
- package/dist/components/CircleInfo.es.js +1 -1
- package/dist/components/CircleInfo.es.js.map +1 -1
- package/dist/components/PenToSquare.cjs.js +1 -1
- package/dist/components/PenToSquare.cjs.js.map +1 -1
- package/dist/components/PenToSquare.es.js +1 -1
- package/dist/components/PenToSquare.es.js.map +1 -1
- package/dist/components/TriangleExclamation.cjs.js +1 -1
- package/dist/components/TriangleExclamation.cjs.js.map +1 -1
- package/dist/components/TriangleExclamation.es.js +1 -1
- package/dist/components/TriangleExclamation.es.js.map +1 -1
- package/package.json +4 -3
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var s=require("react/jsx-runtime"),c=require("react");const l=c.forwardRef(({size:e=14,...r},i)=>(e&&(r.width=e,r.height=e),s.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:i,...r,children:s.jsx("path",{d:"M243.8 339.8c-10.9 10.9-28.7 10.9-39.6 0l-64-64c-10.9-10.9-10.9-28.7 0-39.6 10.9-10.9 28.7-10.9 39.6 0l44.2 44.2 108.2-108.2c10.9-10.9 28.7-10.9 39.6 0 10.9 10.9 10.9 28.7 0 39.6l-128 128zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256 114.6 0 256 0s256 114.6 256 256zM256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48z"})}))),t=l;t.displayName="CircleCheck";module.exports=t;
|
|
2
2
|
//# sourceMappingURL=CircleCheck.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CircleCheck.cjs.js","sources":["../../src/components/CircleCheck.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"
|
|
1
|
+
{"version":3,"file":"CircleCheck.cjs.js","sources":["../../src/components/CircleCheck.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M243.8 339.8c-10.9 10.9-28.7 10.9-39.6 0l-64-64c-10.9-10.9-10.9-28.7 0-39.6 10.9-10.9 28.7-10.9 39.6 0l44.2 44.2 108.2-108.2c10.9-10.9 28.7-10.9 39.6 0 10.9 10.9 10.9 28.7 0 39.6l-128 128zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256 114.6 0 256 0s256 114.6 256 256zM256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48z\" />\n </svg>\n )\n }\n)\nconst CircleCheckIcon = SVGIcon\nCircleCheckIcon.displayName = 'CircleCheck'\nexport default CircleCheckIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","CircleCheckIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,QAEZC,GAAAA,MAAQH,EACdC,EAAMG,OAASJ,GAGfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNC,KAAK,eACLC,QAAQ,cACRC,IAAKP,KACDD,EACJS,SAAAL,EAAAA,IAAA,OAAA,CAAMM,EAAE,kWAAR,CAAA,CALA,CAAA,EARU,EAkBpBC,EAAkBd,EACxBc,EAAgBC,YAAc"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
|
|
4
|
-
const i=forwardRef(({size:r=14,...c},l)=>(r&&(c.width=r,c.height=r),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:l,...c,children:jsx("path",{d:"
|
|
4
|
+
const i=forwardRef(({size:r=14,...c},l)=>(r&&(c.width=r,c.height=r),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:l,...c,children:jsx("path",{d:"M243.8 339.8c-10.9 10.9-28.7 10.9-39.6 0l-64-64c-10.9-10.9-10.9-28.7 0-39.6 10.9-10.9 28.7-10.9 39.6 0l44.2 44.2 108.2-108.2c10.9-10.9 28.7-10.9 39.6 0 10.9 10.9 10.9 28.7 0 39.6l-128 128zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256 114.6 0 256 0s256 114.6 256 256zM256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48z"})}))),e=i;e.displayName="CircleCheck";
|
|
5
5
|
|
|
6
6
|
export { e as default };
|
|
7
7
|
//# sourceMappingURL=CircleCheck.es.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CircleCheck.es.js","sources":["../../src/components/CircleCheck.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"
|
|
1
|
+
{"version":3,"file":"CircleCheck.es.js","sources":["../../src/components/CircleCheck.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M243.8 339.8c-10.9 10.9-28.7 10.9-39.6 0l-64-64c-10.9-10.9-10.9-28.7 0-39.6 10.9-10.9 28.7-10.9 39.6 0l44.2 44.2 108.2-108.2c10.9-10.9 28.7-10.9 39.6 0 10.9 10.9 10.9 28.7 0 39.6l-128 128zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256 114.6 0 256 0s256 114.6 256 256zM256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48z\" />\n </svg>\n )\n }\n)\nconst CircleCheckIcon = SVGIcon\nCircleCheckIcon.displayName = 'CircleCheck'\nexport default CircleCheckIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","CircleCheckIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,MAAOC,CAASC,CAAAA,CAAAA,CAAAA,QAEZC,CAAAA,CAAAA,KAAAA,CAAQH,EACdC,CAAMG,CAAAA,MAAAA,CAASJ,GAGfK,GACI,CAAA,KAAA,CAAA,CAAAC,KAAM,CAAA,4BAAA,CACNC,KAAK,cACLC,CAAAA,OAAAA,CAAQ,cACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,EACJS,QAAAL,CAAAA,GAAAA,CAAA,OAAA,CAAMM,CAAAA,CAAE,kWAAR,CAAA,CALA,CAAA,CARU,CAAA,CAAA,CAkBpBC,EAAkBd,EACxBc,CAAAA,CAAgBC,WAAc,CAAA,aAAA;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var s=require("react/jsx-runtime"),
|
|
1
|
+
"use strict";var s=require("react/jsx-runtime"),c=require("react");const h=c.forwardRef(({size:e=14,...r},i)=>(e&&(r.width=e,r.height=e),s.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:i,...r,children:s.jsx("path",{d:"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208-93.3 208-208 208zm40-128h-16v-88c0-13.2-10.7-24-24-24h-32c-13.2 0-24 10.8-24 24s10.8 24 24 24h8v64h-16c-13.2 0-24 10.8-24 24s10.8 24 24 24h80c13.25 0 24-10.75 24-24s-10.7-24-24-24zm-40-144c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.3-32 32 14.3 32 32 32z"})}))),t=h;t.displayName="CircleInfo";module.exports=t;
|
|
2
2
|
//# sourceMappingURL=CircleInfo.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CircleInfo.cjs.js","sources":["../../src/components/CircleInfo.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0
|
|
1
|
+
{"version":3,"file":"CircleInfo.cjs.js","sources":["../../src/components/CircleInfo.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208-93.3 208-208 208zm40-128h-16v-88c0-13.2-10.7-24-24-24h-32c-13.2 0-24 10.8-24 24s10.8 24 24 24h8v64h-16c-13.2 0-24 10.8-24 24s10.8 24 24 24h80c13.25 0 24-10.75 24-24s-10.7-24-24-24zm-40-144c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.3-32 32 14.3 32 32 32z\" />\n </svg>\n )\n }\n)\nconst CircleInfoIcon = SVGIcon\nCircleInfoIcon.displayName = 'CircleInfo'\nexport default CircleInfoIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","CircleInfoIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,QAEZC,GAAAA,MAAQH,EACdC,EAAMG,OAASJ,GAGfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNC,KAAK,eACLC,QAAQ,cACRC,IAAKP,KACDD,EACJS,SAAAL,EAAAA,IAAA,OAAA,CAAMM,EAAE,qZAAR,CAAA,CALA,CAAA,EARU,EAkBpBC,EAAiBd,EACvBc,EAAeC,YAAc"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const e=forwardRef(({size:r=14,...c},h)=>(r&&(c.width=r,c.height=r),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:h,...c,children:jsx("path",{d:"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208-93.3 208-208 208zm40-128h-16v-88c0-13.2-10.7-24-24-24h-32c-13.2 0-24 10.8-24 24s10.8 24 24 24h8v64h-16c-13.2 0-24 10.8-24 24s10.8 24 24 24h80c13.25 0 24-10.75 24-24s-10.7-24-24-24zm-40-144c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.3-32 32 14.3 32 32 32z"})}))),t=e;t.displayName="CircleInfo";
|
|
5
5
|
|
|
6
6
|
export { t as default };
|
|
7
7
|
//# sourceMappingURL=CircleInfo.es.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CircleInfo.es.js","sources":["../../src/components/CircleInfo.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0
|
|
1
|
+
{"version":3,"file":"CircleInfo.es.js","sources":["../../src/components/CircleInfo.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208-93.3 208-208 208zm40-128h-16v-88c0-13.2-10.7-24-24-24h-32c-13.2 0-24 10.8-24 24s10.8 24 24 24h8v64h-16c-13.2 0-24 10.8-24 24s10.8 24 24 24h80c13.25 0 24-10.75 24-24s-10.7-24-24-24zm-40-144c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.3-32 32 14.3 32 32 32z\" />\n </svg>\n )\n }\n)\nconst CircleInfoIcon = SVGIcon\nCircleInfoIcon.displayName = 'CircleInfo'\nexport default CircleInfoIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","CircleInfoIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,MAAOC,CAASC,CAAAA,CAAAA,CAAAA,QAEZC,CAAAA,CAAAA,KAAAA,CAAQH,EACdC,CAAMG,CAAAA,MAAAA,CAASJ,GAGfK,GACI,CAAA,KAAA,CAAA,CAAAC,KAAM,CAAA,4BAAA,CACNC,KAAK,cACLC,CAAAA,OAAAA,CAAQ,cACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,EACJS,QAAAL,CAAAA,GAAAA,CAAA,OAAA,CAAMM,CAAAA,CAAE,qZAAR,CAAA,CALA,CAAA,CARU,CAAA,CAAA,CAkBpBC,EAAiBd,EACvBc,CAAAA,CAAeC,WAAc,CAAA,YAAA;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var r=require("react/jsx-runtime"),i=require("react");const l=i.forwardRef(({size:c=14,...e},s)=>(c&&(e.width=c,e.height=c),r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:s,...e,children:r.jsx("path",{d:"M373.1 24.97c28.1-28.117 73.7-28.117 101.8 0L487 37.09c28.1 28.12 28.1 73.71 0 101.81L289.8 336.2c-8.7 8.6-19.4 14.9-31.2 18.3l-100 28.6c-8.4 2.4-17.4 0-23.6-7-6.1-5.3-8.5-14.3-6.1-22.7l28.6-100c3.4-11.8 9.7-22.5 18.3-31.2L373.1 24.97zm67 33.94c-8.5-9.37-23.7-9.37-33.1 0L377.9 88l46.1 46.1 29.1-30c9.4-8.5 9.4-23.7 0-33.07l-13-12.12zM203.7 266.6l-16.8 58.5 58.5-16.8c4-1.1 7.5-3.2 10.4-6.1L390.1 168 344 121.9 209.8 256.2c-2.9 2.9-5 6.4-6.1 10.4zM200 64c13.3 0 24 10.75 24 24 0 13.3-10.7 24-24 24H88c-22.09 0-40 17.9-40 40v272c0 22.1 17.91 40 40 40h272c22.1 0 40-17.9 40-40V312c0-13.3 10.7-24 24-24s24 10.7 24 24v112c0 48.6-39.4 88-88 88H88c-48.6 0-88-39.4-88-88V152c0-48.6 39.4-88 88-88h112z"})}))),t=l;t.displayName="PenToSquare";module.exports=t;
|
|
2
2
|
//# sourceMappingURL=PenToSquare.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PenToSquare.cjs.js","sources":["../../src/components/PenToSquare.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"
|
|
1
|
+
{"version":3,"file":"PenToSquare.cjs.js","sources":["../../src/components/PenToSquare.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M373.1 24.97c28.1-28.117 73.7-28.117 101.8 0L487 37.09c28.1 28.12 28.1 73.71 0 101.81L289.8 336.2c-8.7 8.6-19.4 14.9-31.2 18.3l-100 28.6c-8.4 2.4-17.4 0-23.6-7-6.1-5.3-8.5-14.3-6.1-22.7l28.6-100c3.4-11.8 9.7-22.5 18.3-31.2L373.1 24.97zm67 33.94c-8.5-9.37-23.7-9.37-33.1 0L377.9 88l46.1 46.1 29.1-30c9.4-8.5 9.4-23.7 0-33.07l-13-12.12zM203.7 266.6l-16.8 58.5 58.5-16.8c4-1.1 7.5-3.2 10.4-6.1L390.1 168 344 121.9 209.8 256.2c-2.9 2.9-5 6.4-6.1 10.4zM200 64c13.3 0 24 10.75 24 24 0 13.3-10.7 24-24 24H88c-22.09 0-40 17.9-40 40v272c0 22.1 17.91 40 40 40h272c22.1 0 40-17.9 40-40V312c0-13.3 10.7-24 24-24s24 10.7 24 24v112c0 48.6-39.4 88-88 88H88c-48.6 0-88-39.4-88-88V152c0-48.6 39.4-88 88-88h112z\" />\n </svg>\n )\n }\n)\nconst PenToSquareIcon = SVGIcon\nPenToSquareIcon.displayName = 'PenToSquare'\nexport default PenToSquareIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","PenToSquareIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,QAEZC,GAAAA,MAAQH,EACdC,EAAMG,OAASJ,GAGfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNC,KAAK,eACLC,QAAQ,cACRC,IAAKP,KACDD,EACJS,SAAAL,EAAAA,IAAA,OAAA,CAAMM,EAAE,urBAAR,CAAA,CALA,CAAA,EARU,EAkBpBC,EAAkBd,EACxBc,EAAgBC,YAAc"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
|
|
4
|
-
const n=forwardRef(({size:c=14,...r},e)=>(c&&(r.width=c,r.height=c),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:e,...r,children:jsx("path",{d:"
|
|
4
|
+
const n=forwardRef(({size:c=14,...r},e)=>(c&&(r.width=c,r.height=c),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:e,...r,children:jsx("path",{d:"M373.1 24.97c28.1-28.117 73.7-28.117 101.8 0L487 37.09c28.1 28.12 28.1 73.71 0 101.81L289.8 336.2c-8.7 8.6-19.4 14.9-31.2 18.3l-100 28.6c-8.4 2.4-17.4 0-23.6-7-6.1-5.3-8.5-14.3-6.1-22.7l28.6-100c3.4-11.8 9.7-22.5 18.3-31.2L373.1 24.97zm67 33.94c-8.5-9.37-23.7-9.37-33.1 0L377.9 88l46.1 46.1 29.1-30c9.4-8.5 9.4-23.7 0-33.07l-13-12.12zM203.7 266.6l-16.8 58.5 58.5-16.8c4-1.1 7.5-3.2 10.4-6.1L390.1 168 344 121.9 209.8 256.2c-2.9 2.9-5 6.4-6.1 10.4zM200 64c13.3 0 24 10.75 24 24 0 13.3-10.7 24-24 24H88c-22.09 0-40 17.9-40 40v272c0 22.1 17.91 40 40 40h272c22.1 0 40-17.9 40-40V312c0-13.3 10.7-24 24-24s24 10.7 24 24v112c0 48.6-39.4 88-88 88H88c-48.6 0-88-39.4-88-88V152c0-48.6 39.4-88 88-88h112z"})}))),t=n;t.displayName="PenToSquare";
|
|
5
5
|
|
|
6
6
|
export { t as default };
|
|
7
7
|
//# sourceMappingURL=PenToSquare.es.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PenToSquare.es.js","sources":["../../src/components/PenToSquare.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"
|
|
1
|
+
{"version":3,"file":"PenToSquare.es.js","sources":["../../src/components/PenToSquare.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M373.1 24.97c28.1-28.117 73.7-28.117 101.8 0L487 37.09c28.1 28.12 28.1 73.71 0 101.81L289.8 336.2c-8.7 8.6-19.4 14.9-31.2 18.3l-100 28.6c-8.4 2.4-17.4 0-23.6-7-6.1-5.3-8.5-14.3-6.1-22.7l28.6-100c3.4-11.8 9.7-22.5 18.3-31.2L373.1 24.97zm67 33.94c-8.5-9.37-23.7-9.37-33.1 0L377.9 88l46.1 46.1 29.1-30c9.4-8.5 9.4-23.7 0-33.07l-13-12.12zM203.7 266.6l-16.8 58.5 58.5-16.8c4-1.1 7.5-3.2 10.4-6.1L390.1 168 344 121.9 209.8 256.2c-2.9 2.9-5 6.4-6.1 10.4zM200 64c13.3 0 24 10.75 24 24 0 13.3-10.7 24-24 24H88c-22.09 0-40 17.9-40 40v272c0 22.1 17.91 40 40 40h272c22.1 0 40-17.9 40-40V312c0-13.3 10.7-24 24-24s24 10.7 24 24v112c0 48.6-39.4 88-88 88H88c-48.6 0-88-39.4-88-88V152c0-48.6 39.4-88 88-88h112z\" />\n </svg>\n )\n }\n)\nconst PenToSquareIcon = SVGIcon\nPenToSquareIcon.displayName = 'PenToSquare'\nexport default PenToSquareIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","PenToSquareIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,MAAOC,CAASC,CAAAA,CAAAA,CAAAA,QAEZC,CAAAA,CAAAA,KAAAA,CAAQH,EACdC,CAAMG,CAAAA,MAAAA,CAASJ,GAGfK,GACI,CAAA,KAAA,CAAA,CAAAC,KAAM,CAAA,4BAAA,CACNC,KAAK,cACLC,CAAAA,OAAAA,CAAQ,cACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,EACJS,QAAAL,CAAAA,GAAAA,CAAA,OAAA,CAAMM,CAAAA,CAAE,urBAAR,CAAA,CALA,CAAA,CARU,CAAA,CAAA,CAkBpBC,EAAkBd,EACxBc,CAAAA,CAAgBC,WAAc,CAAA,aAAA;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var s=require("react/jsx-runtime"),t=require("react");const a=t.forwardRef(({size:e=14,...r},c)=>(e&&(r.width=e,r.height=e),s.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:c,...r,children:s.jsx("path",{d:"M506.3 417L293 53c-8.2-14-22.6-21-37-21-14.4 0-28.8 7-37.9 21L4.9 417c-15.49 27.9 4.951 63 37.84 63h426.6c32.76 0 53.26-35 36.96-63zM52.58 432L255.1 84.8 459.4 432H52.58zM256 337.1c-17.36 0-31.44 14.08-31.44 31.44s14.11 31.44 31.48 31.44 31.4-14.08 31.4-31.44C287.4 351.2 273.4 337.1 256 337.1zM232 184v96c0 13.3 10.8 24 24 24s24-10.75 24-24v-96c0-13.2-10.7-24-24-24s-24 10.8-24 24z"})}))),i=a;i.displayName="TriangleExclamation";module.exports=i;
|
|
2
2
|
//# sourceMappingURL=TriangleExclamation.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TriangleExclamation.cjs.js","sources":["../../src/components/TriangleExclamation.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M506.3 417L293 53c-
|
|
1
|
+
{"version":3,"file":"TriangleExclamation.cjs.js","sources":["../../src/components/TriangleExclamation.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M506.3 417L293 53c-8.2-14-22.6-21-37-21-14.4 0-28.8 7-37.9 21L4.9 417c-15.49 27.9 4.951 63 37.84 63h426.6c32.76 0 53.26-35 36.96-63zM52.58 432L255.1 84.8 459.4 432H52.58zM256 337.1c-17.36 0-31.44 14.08-31.44 31.44s14.11 31.44 31.48 31.44 31.4-14.08 31.4-31.44C287.4 351.2 273.4 337.1 256 337.1zM232 184v96c0 13.3 10.8 24 24 24s24-10.75 24-24v-96c0-13.2-10.7-24-24-24s-24 10.8-24 24z\" />\n </svg>\n )\n }\n)\nconst TriangleExclamationIcon = SVGIcon\nTriangleExclamationIcon.displayName = 'TriangleExclamation'\nexport default TriangleExclamationIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","TriangleExclamationIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,QAEZC,GAAAA,MAAQH,EACdC,EAAMG,OAASJ,GAGfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNC,KAAK,eACLC,QAAQ,cACRC,IAAKP,KACDD,EACJS,SAAAL,EAAAA,IAAA,OAAA,CAAMM,EAAE,gYAAR,CAAA,CALA,CAAA,EARU,EAkBpBC,EAA0Bd,EAChCc,EAAwBC,YAAc"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
|
|
4
|
-
const i=forwardRef(({size:r=14,...t},a)=>(r&&(t.width=r,t.height=r),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:a,...t,children:jsx("path",{d:"M506.3 417L293 53c-
|
|
4
|
+
const i=forwardRef(({size:r=14,...t},a)=>(r&&(t.width=r,t.height=r),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:a,...t,children:jsx("path",{d:"M506.3 417L293 53c-8.2-14-22.6-21-37-21-14.4 0-28.8 7-37.9 21L4.9 417c-15.49 27.9 4.951 63 37.84 63h426.6c32.76 0 53.26-35 36.96-63zM52.58 432L255.1 84.8 459.4 432H52.58zM256 337.1c-17.36 0-31.44 14.08-31.44 31.44s14.11 31.44 31.48 31.44 31.4-14.08 31.4-31.44C287.4 351.2 273.4 337.1 256 337.1zM232 184v96c0 13.3 10.8 24 24 24s24-10.75 24-24v-96c0-13.2-10.7-24-24-24s-24 10.8-24 24z"})}))),o=i;o.displayName="TriangleExclamation";
|
|
5
5
|
|
|
6
6
|
export { o as default };
|
|
7
7
|
//# sourceMappingURL=TriangleExclamation.es.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TriangleExclamation.es.js","sources":["../../src/components/TriangleExclamation.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M506.3 417L293 53c-
|
|
1
|
+
{"version":3,"file":"TriangleExclamation.es.js","sources":["../../src/components/TriangleExclamation.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M506.3 417L293 53c-8.2-14-22.6-21-37-21-14.4 0-28.8 7-37.9 21L4.9 417c-15.49 27.9 4.951 63 37.84 63h426.6c32.76 0 53.26-35 36.96-63zM52.58 432L255.1 84.8 459.4 432H52.58zM256 337.1c-17.36 0-31.44 14.08-31.44 31.44s14.11 31.44 31.48 31.44 31.4-14.08 31.4-31.44C287.4 351.2 273.4 337.1 256 337.1zM232 184v96c0 13.3 10.8 24 24 24s24-10.75 24-24v-96c0-13.2-10.7-24-24-24s-24 10.8-24 24z\" />\n </svg>\n )\n }\n)\nconst TriangleExclamationIcon = SVGIcon\nTriangleExclamationIcon.displayName = 'TriangleExclamation'\nexport default TriangleExclamationIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","TriangleExclamationIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,MAAOC,CAASC,CAAAA,CAAAA,CAAAA,QAEZC,CAAAA,CAAAA,KAAAA,CAAQH,EACdC,CAAMG,CAAAA,MAAAA,CAASJ,GAGfK,GACI,CAAA,KAAA,CAAA,CAAAC,KAAM,CAAA,4BAAA,CACNC,KAAK,cACLC,CAAAA,OAAAA,CAAQ,cACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,EACJS,QAAAL,CAAAA,GAAAA,CAAA,OAAA,CAAMM,CAAAA,CAAE,gYAAR,CAAA,CALA,CAAA,CARU,CAAA,CAAA,CAkBpBC,EAA0Bd,EAChCc,CAAAA,CAAwBC,WAAc,CAAA,qBAAA;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"description": "Contains icons to use in Provincie Zuid-Holland projects.",
|
|
5
5
|
"homepage": "https://github.com/Provincie-Zuid-Holland/pzh-ui#readme",
|
|
6
6
|
"license": "ISC",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"url": "https://github.com/Provincie-Zuid-Holland/pzh-ui/issues"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"react": "^18.0.0"
|
|
36
|
+
"react": "^18.0.0",
|
|
37
|
+
"react-toastify": "^9.1.2"
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
40
|
"@babel/preset-env": "^7.16.11",
|
|
@@ -47,5 +48,5 @@
|
|
|
47
48
|
"typescript": "^4.6.2",
|
|
48
49
|
"vite": "^2.8.6"
|
|
49
50
|
},
|
|
50
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "4455bde77beb2a0a6d664a090de2b798c3eaed8c"
|
|
51
52
|
}
|