@tinfoilsh/tinfoil-icons 1.0.3 → 1.0.4
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/IconBase.d.ts.map +1 -1
- package/dist/index.esm.js +2 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/IconBase.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconBase.d.ts","sourceRoot":"","sources":["../src/IconBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExC,wBAAgB,QAAQ,CAAC,EACvB,IAAY,EACZ,KAAsB,EACtB,KAAK,EACL,QAAQ,EACR,OAAO,EACP,GAAG,KAAK,EACT,EAAE,aAAa,GAAG;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,
|
|
1
|
+
{"version":3,"file":"IconBase.d.ts","sourceRoot":"","sources":["../src/IconBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExC,wBAAgB,QAAQ,CAAC,EACvB,IAAY,EACZ,KAAsB,EACtB,KAAK,EACL,QAAQ,EACR,OAAO,EACP,GAAG,KAAK,EACT,EAAE,aAAa,GAAG;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,qBAejE"}
|
package/dist/index.esm.js
CHANGED
|
@@ -36,7 +36,7 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
36
36
|
|
|
37
37
|
function IconBase(_a) {
|
|
38
38
|
var { size = '1em', color = 'currentColor', title, children, viewBox } = _a, props = __rest(_a, ["size", "color", "title", "children", "viewBox"]);
|
|
39
|
-
return (React.createElement("svg", Object.assign({ color: color, fill: "currentColor", stroke: "currentColor" }, props, { height: size,
|
|
39
|
+
return (React.createElement("svg", Object.assign({ color: color, fill: "currentColor", stroke: "currentColor" }, props, { height: size, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg" }),
|
|
40
40
|
title && React.createElement("title", null, title),
|
|
41
41
|
children));
|
|
42
42
|
}
|
|
@@ -150,9 +150,7 @@ function TfGithub(props) {
|
|
|
150
150
|
return (React.createElement(IconBase, Object.assign({ viewBox: "0 0 48 48" }, props),
|
|
151
151
|
React.createElement("title", null, "github"),
|
|
152
152
|
React.createElement("g", null,
|
|
153
|
-
React.createElement("g", null,
|
|
154
|
-
React.createElement("rect", { width: "48", height: "48", fill: "none" }),
|
|
155
|
-
React.createElement("rect", { width: "48", height: "48", fill: "none" })),
|
|
153
|
+
React.createElement("g", null),
|
|
156
154
|
React.createElement("g", null,
|
|
157
155
|
React.createElement("path", { d: "M24,1.9a21.6,21.6,0,0,0-6.8,42.2c1,.2,1.8-.9,1.8-1.8V39.4c-6,1.3-7.9-2.9-7.9-2.9a6.5,6.5,0,0,0-2.2-3.2C6.9,31.9,9,32,9,32a4.3,4.3,0,0,1,3.3,2c1.7,2.9,5.5,2.6,6.7,2.1a5.4,5.4,0,0,1,.5-2.9C12.7,32,9,28,9,22.6A10.7,10.7,0,0,1,11.9,15a6.2,6.2,0,0,1,.3-6.4,8.9,8.9,0,0,1,6.4,2.9,15.1,15.1,0,0,1,5.4-.8,17.1,17.1,0,0,1,5.4.7,9,9,0,0,1,6.4-2.8,6.5,6.5,0,0,1,.4,6.4A10.7,10.7,0,0,1,39,22.6C39,28,35.3,32,28.5,33.2a5.4,5.4,0,0,1,.5,2.9v6.2a1.8,1.8,0,0,0,1.9,1.8A21.7,21.7,0,0,0,24,1.9Z" })))));
|
|
158
156
|
}
|