@pzh-ui/icons 0.0.68 → 0.0.69
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.
|
@@ -12,11 +12,11 @@ const SVGIcon = /* @__PURE__ */ forwardRef(({
|
|
|
12
12
|
return jsx("svg", {
|
|
13
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14
14
|
fill: "currentColor",
|
|
15
|
-
viewBox: "0 0
|
|
15
|
+
viewBox: "0 0 512 512",
|
|
16
16
|
ref: svgRef,
|
|
17
17
|
...props,
|
|
18
18
|
children: jsx("path", {
|
|
19
|
-
d: "
|
|
19
|
+
d: "M64 480h32v32H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0h156.1C232.8 0 245 5.1 254 14.1l115.9 115.8c9 9 14.1 21.2 14.1 33.9V288h-32v-96H240c-26.5 0-48-21.5-48-48V32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32zm287.5-320c-.7-2.8-2.1-5.4-4.2-7.4L231.4 36.7c-2.1-2.1-4.6-3.5-7.4-4.2V144c0 8.8 7.2 16 16 16h111.5zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56h-16v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-16v48h16zm96-80h32c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-32c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16h-16v96h16zm80-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V368z"
|
|
20
20
|
})
|
|
21
21
|
});
|
|
22
22
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FilePdf.js","sources":["../../src/components/FilePdf.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
|
|
1
|
+
{"version":3,"file":"FilePdf.js","sources":["../../src/components/FilePdf.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 >\n <path d=\"M64 480h32v32H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0h156.1C232.8 0 245 5.1 254 14.1l115.9 115.8c9 9 14.1 21.2 14.1 33.9V288h-32v-96H240c-26.5 0-48-21.5-48-48V32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32zm287.5-320c-.7-2.8-2.1-5.4-4.2-7.4L231.4 36.7c-2.1-2.1-4.6-3.5-7.4-4.2V144c0 8.8 7.2 16 16 16h111.5zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56h-16v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-16v48h16zm96-80h32c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-32c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16h-16v96h16zm80-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V368z\" />\n </svg>\n );\n }\n);\nconst FilePdfIcon = SVGIcon;\nFilePdfIcon.displayName = \"FilePdf\";\nexport default FilePdfIcon;\n"],"names":["SVGIcon","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","FilePdfIcon","displayName"],"mappings":";;;AAIA,MAAMA,OAAAA,8BACJ,CAAC;AAAA,EAAEC,IAAO,GAAA,EAAA;AAAA,EAAOC,GAAAA,KAAAA;AAAAA,CAAAA,EAASC,MAAU,KAAA;AAClC,EAAA,IAAIF,IAAM,EAAA;AACRC,IAAAA,KAAAA,CAAME,KAAQH,GAAAA,IAAAA,CAAAA;AACdC,IAAAA,KAAAA,CAAMG,MAASJ,GAAAA,IAAAA,CAAAA;AAAAA,GAChB;AAECK,EAAAA,OAAAA,IACE,KAAA,EAAA;AAAA,IAAAC,KAAM,EAAA,4BAAA;AAAA,IACNC,IAAK,EAAA,cAAA;AAAA,IACLC,OAAQ,EAAA,aAAA;AAAA,IACRC,GAAKP,EAAAA,MAAAA;AAAAA,IACDD,GAAAA,KAAAA;AAAAA,IAEJS,QAAAA,EAAAL,IAAA,MAAA,EAAA;AAAA,MAAMM,CAAE,EAAA,6xBAAA;AAAA,KAAR,CAAA;AAAA,GANA,CAAA,CAAA;AASL,CAjBuB,CAAA,CAAA;AAmB1B,MAAMC,WAAcb,GAAAA,QAAAA;AACpBa,WAAAA,CAAYC,WAAc,GAAA,SAAA;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.69",
|
|
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",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"typescript": "^4.6.2",
|
|
48
48
|
"vite": "^2.8.6"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "5d6e17f4f7e1f51855596ee25c1a2926c03d3130"
|
|
51
51
|
}
|