@central-icons-react/round-outlined-radius-3-stroke-1 0.0.46 → 0.0.48
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/IconRetouch/index.d.ts +4 -0
- package/IconRetouch/index.js +2 -0
- package/IconRetouch/index.js.map +1 -0
- package/IconRetouch/index.mjs +2 -0
- package/IconRetouch/index.mjs.map +1 -0
- package/README.md +1 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +5 -3
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of h(o))!k.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(p=d(o,t))||p.enumerable});return r};var l=(r,o,e)=>(e=r!=null?m(f(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>i(s({},"__esModule",{value:!0}),r);var I={};g(I,{IconRetouch:()=>C,default:()=>B});module.exports=x(I);var n=l(require("react"));var a=l(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:p,ariaHidden:t=!0,style:c,...L})=>a.default.createElement("svg",{...L,"aria-hidden":t,role:t?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...c}},e&&!t&&a.default.createElement("title",null,e),r);var C=r=>n.default.createElement(u,{...r,ariaLabel:"retouch, face, hair"},n.default.createElement("path",{d:"M18 2L18.9334 4.06662L21 5L18.9334 5.93338L18 8L17.0666 5.93338L15 5L17.0666 4.06662L18 2Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M17.5 12.5C17.5 11.3954 16.6046 10.5 15.5 10.5H8.5C7.39543 10.5 6.5 11.3954 6.5 12.5V15C6.5 18.0376 8.96243 20.5 12 20.5C15.0376 20.5 17.5 18.0376 17.5 15V12.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M2.5 20.5V12C2.5 6.75329 6.75329 2.5 12 2.5C12.3377 2.5 12.6714 2.51762 13 2.552M21.5 20.5V12C21.5 10.9333 21.3242 9.90772 21 8.95056",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=C;0&&(module.exports={IconRetouch});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRetouch/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRetouch: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"retouch, face, hair\">\n <path\n d=\"M18 2L18.9334 4.06662L21 5L18.9334 5.93338L18 8L17.0666 5.93338L15 5L17.0666 4.06662L18 2Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M17.5 12.5C17.5 11.3954 16.6046 10.5 15.5 10.5H8.5C7.39543 10.5 6.5 11.3954 6.5 12.5V15C6.5 18.0376 8.96243 20.5 12 20.5C15.0376 20.5 17.5 18.0376 17.5 15V12.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M2.5 20.5V12C2.5 6.75329 6.75329 2.5 12 2.5C12.3377 2.5 12.6714 2.51762 13 2.552M21.5 20.5V12C21.5 10.9333 21.3242 9.90772 21 8.95056\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRetouch;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,6FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wIACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconRetouch_exports","__export","IconRetouch","IconRetouch_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRetouch","props","React","CentralIconBase","IconRetouch_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";var s=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:i,...l})=>p.createElement("svg",{...l,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...i}},n&&!t&&p.createElement("title",null,n),e);var u=e=>o.createElement(s,{...e,ariaLabel:"retouch, face, hair"},o.createElement("path",{d:"M18 2L18.9334 4.06662L21 5L18.9334 5.93338L18 8L17.0666 5.93338L15 5L17.0666 4.06662L18 2Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M17.5 12.5C17.5 11.3954 16.6046 10.5 15.5 10.5H8.5C7.39543 10.5 6.5 11.3954 6.5 12.5V15C6.5 18.0376 8.96243 20.5 12 20.5C15.0376 20.5 17.5 18.0376 17.5 15V12.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M2.5 20.5V12C2.5 6.75329 6.75329 2.5 12 2.5C12.3377 2.5 12.6714 2.51762 13 2.552M21.5 20.5V12C21.5 10.9333 21.3242 9.90772 21 8.95056",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),d=u;export{u as IconRetouch,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRetouch/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRetouch: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"retouch, face, hair\">\n <path\n d=\"M18 2L18.9334 4.06662L21 5L18.9334 5.93338L18 8L17.0666 5.93338L15 5L17.0666 4.06662L18 2Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M17.5 12.5C17.5 11.3954 16.6046 10.5 15.5 10.5H8.5C7.39543 10.5 6.5 11.3954 6.5 12.5V15C6.5 18.0376 8.96243 20.5 12 20.5C15.0376 20.5 17.5 18.0376 17.5 15V12.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M2.5 20.5V12C2.5 6.75329 6.75329 2.5 12 2.5C12.3377 2.5 12.6714 2.51762 13 2.552M21.5 20.5V12C21.5 10.9333 21.3242 9.90772 21 8.95056\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRetouch;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpCC,EAAA,cAAC,QACC,EAAE,6FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,mKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,wIACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRetouch","props","React","CentralIconBase","IconRetouch_default"]}
|
package/README.md
CHANGED