@central-icons-react-native/round-outlined-radius-1-stroke-2 1.1.317 → 1.1.318
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/IconBandage/index.d.ts +4 -0
- package/IconBandage/index.js +3 -0
- package/IconBandage/index.js.map +11 -0
- package/IconBandage/index.mjs +3 -0
- package/IconBandage/index.mjs.map +11 -0
- package/IconTextHighlight/index.d.ts +4 -0
- package/IconTextHighlight/index.js +3 -0
- package/IconTextHighlight/index.js.map +11 -0
- package/IconTextHighlight/index.mjs +3 -0
- package/IconTextHighlight/index.mjs.map +11 -0
- package/README.md +2 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var I=Object.create;var{getPrototypeOf:w,defineProperty:m,getOwnPropertyNames:f,getOwnPropertyDescriptor:P}=Object,h=Object.prototype.hasOwnProperty;function k(r){return this[r]}var v,M,x=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var p=o?v??=new WeakMap:M??=new WeakMap,C=p.get(r);if(C)return C}t=r!=null?I(w(r)):{};let d=o||!r||!r.__esModule?m(t,"default",{value:r,enumerable:!0}):t;if(r&&typeof r==="object"||typeof r==="function"){for(let a of f(r))if(!h.call(d,a))m(d,a,{get:k.bind(r,a),enumerable:!0})}if(e)p.set(r,d);return d},g=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=m({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!h.call(o,e))m(o,e,{get:k.bind(r,e),enumerable:!(t=P(r,e))||t.enumerable})}return u.set(r,o),o},u;var S=(r)=>r;function L(r,o){this[r]=S.bind(null,o)}var B=(r,o)=>{for(var t in o)m(r,t,{get:o[t],enumerable:!0,configurable:!0,set:L.bind(o,t)})};var b={};B(b,{CentralIconBase:()=>c});module.exports=g(b);var i=x(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,mode:t="masked",maskId:e,...p})=>{let C=t!=="raw"&&!!e;return i.default.createElement(l.Svg,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C?i.default.createElement(i.default.Fragment,null,i.default.createElement(l.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},i.default.createElement(l.Rect,{width:"24",height:"24",fill:"#000"}),i.default.createElement(l.G,{color:"#fff"},r)),i.default.createElement(l.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):r)};var W={};B(W,{IconBandage:()=>y,default:()=>F});module.exports=g(W);var n=x(require("react"));var s=require("react-native-svg"),y=n.default.memo((r)=>n.default.createElement(c,{...r,maskId:"round-outlined-radius-1-stroke-2-IconBandage"},n.default.createElement(s.Path,{d:"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M6 12L12 18",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M12 6L18 12",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Circle,{cx:"12",cy:"10",r:"1",fill:"currentColor"}),n.default.createElement(s.Circle,{cx:"14",cy:"12",r:"1",fill:"currentColor"}),n.default.createElement(s.Circle,{cx:"12",cy:"14",r:"1",fill:"currentColor"}),n.default.createElement(s.Circle,{cx:"10",cy:"12",r:"1",fill:"currentColor"}))),F=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=2B97A69D9F8667FE64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBandage/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <Svg\n {...props}\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 >\n {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconBandage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconBandage\"><Path d=\"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M6 12L12 18\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 6L18 12\" stroke=\"currentColor\" strokeWidth=\"2\"/><Circle cx=\"12\" cy=\"10\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"14\" cy=\"12\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"12\" cy=\"14\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"10\" cy=\"12\" r=\"1\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBandage;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "0+BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,uEChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAAgE,UAAM,KAAK,CAAC,IAChF,wBAA4pB,EAA5pB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,CAAI,CACpqB,EAEc",
|
|
9
|
+
"debugId": "2B97A69D9F8667FE64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as a,Mask as c,Rect as i,G as u}from"react-native-svg";var m=({children:e,size:t=24,mode:p="masked",maskId:l,...C})=>{let d=p!=="raw"&&!!l;return o.createElement(a,{...C,width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none"},d?o.createElement(o.Fragment,null,o.createElement(c,{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},e)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):e)};import r from"react";import{Circle as n,Path as s}from"react-native-svg";var f=r.memo((e)=>r.createElement(m,{...e,maskId:"round-outlined-radius-1-stroke-2-IconBandage"},r.createElement(s,{d:"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement(s,{d:"M6 12L12 18",stroke:"currentColor",strokeWidth:"2"}),r.createElement(s,{d:"M12 6L18 12",stroke:"currentColor",strokeWidth:"2"}),r.createElement(n,{cx:"12",cy:"10",r:"1",fill:"currentColor"}),r.createElement(n,{cx:"14",cy:"12",r:"1",fill:"currentColor"}),r.createElement(n,{cx:"12",cy:"14",r:"1",fill:"currentColor"}),r.createElement(n,{cx:"10",cy:"12",r:"1",fill:"currentColor"}))),v=f;export{f as IconBandage,v as default};
|
|
2
|
+
|
|
3
|
+
//# debugId=14E41FCEE69B0A7964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBandage/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <Svg\n {...props}\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 >\n {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconBandage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconBandage\"><Path d=\"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M6 12L12 18\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12 6L18 12\" stroke=\"currentColor\" strokeWidth=\"2\"/><Circle cx=\"12\" cy=\"10\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"14\" cy=\"12\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"12\" cy=\"14\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"10\" cy=\"12\" r=\"1\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBandage;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,iBAAS,UAAQ,yBAEV,IAAM,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA4pB,EAA5pB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,CAAI,CACpqB,EAEc",
|
|
9
|
+
"debugId": "14E41FCEE69B0A7964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var w=Object.create;var{getPrototypeOf:P,defineProperty:C,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,k=Object.prototype.hasOwnProperty;function c(o){return this[o]}var v,L,g=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var l=r?v??=new WeakMap:L??=new WeakMap,p=l.get(o);if(p)return p}t=o!=null?w(P(o)):{};let a=r||!o||!o.__esModule?C(t,"default",{value:o,enumerable:!0}):t;if(o&&typeof o==="object"||typeof o==="function"){for(let d of f(o))if(!k.call(a,d))C(a,d,{get:c.bind(o,d),enumerable:!0})}if(e)l.set(o,a);return a},x=(o)=>{var r=(u??=new WeakMap).get(o),t;if(r)return r;if(r=C({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of f(o))if(!k.call(r,e))C(r,e,{get:c.bind(o,e),enumerable:!(t=y(o,e))||t.enumerable})}return u.set(o,r),r},u;var M=(o)=>o;function S(o,r){this[o]=M.bind(null,r)}var I=(o,r)=>{for(var t in r)C(o,t,{get:r[t],enumerable:!0,configurable:!0,set:S.bind(r,t)})};var b={};I(b,{CentralIconBase:()=>h});module.exports=x(b);var s=g(require("react")),n=require("react-native-svg"),h=({children:o,size:r=24,mode:t="masked",maskId:e,...l})=>{let p=t!=="raw"&&!!e;return s.default.createElement(n.Svg,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},o)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):o)};var H={};I(H,{IconTextHighlight:()=>B,default:()=>F});module.exports=x(H);var i=g(require("react"));var m=require("react-native-svg"),B=i.default.memo((o)=>i.default.createElement(h,{...o,maskId:"round-outlined-radius-1-stroke-2-IconTextHighlight"},i.default.createElement(m.Path,{d:"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z",fill:"currentColor","fill-opacity":"0.15"}),i.default.createElement(m.Path,{d:"M10 13.5H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),i.default.createElement(m.Path,{d:"M9 15L12 8L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))),F=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=1D2D675470C3FF5E64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTextHighlight/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <Svg\n {...props}\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 >\n {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconTextHighlight\"><Path d=\"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><Path d=\"M10 13.5H14\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M9 15L12 8L15 15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconTextHighlight;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "0+BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,6EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAsE,UAAM,KAAK,CAAC,IACtF,wBAAq+B,EAAr+B,IAAqB,EAAO,OAAO,sDAAqD,wBAAC,OAAD,CAAM,EAAE,wpBAAwpB,KAAK,eAAe,eAAa,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,CAC7+B,EAEc",
|
|
9
|
+
"debugId": "1D2D675470C3FF5E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as m,Mask as d,Rect as i,G as h}from"react-native-svg";var C=({children:e,size:r=24,mode:l="masked",maskId:n,...p})=>{let a=l!=="raw"&&!!n;return o.createElement(m,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?o.createElement(o.Fragment,null,o.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(h,{color:"#fff"},e)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as s}from"react-native-svg";var u=t.memo((e)=>t.createElement(C,{...e,maskId:"round-outlined-radius-1-stroke-2-IconTextHighlight"},t.createElement(s,{d:"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z",fill:"currentColor","fill-opacity":"0.15"}),t.createElement(s,{d:"M10 13.5H14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.createElement(s,{d:"M9 15L12 8L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))),y=u;export{u as IconTextHighlight,y as default};
|
|
2
|
+
|
|
3
|
+
//# debugId=F7E01E006FFA17FE64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTextHighlight/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <Svg\n {...props}\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 >\n {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-1-stroke-2-IconTextHighlight\"><Path d=\"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><Path d=\"M10 13.5H14\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M9 15L12 8L15 15\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconTextHighlight;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAAq+B,EAAr+B,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,wpBAAwpB,KAAK,eAAe,eAAa,OAAM,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,CAC7+B,EAEc",
|
|
9
|
+
"debugId": "F7E01E006FFA17FE64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -821,6 +821,7 @@ Below is a complete list of available icons:
|
|
|
821
821
|
- IconColorPalette2
|
|
822
822
|
- IconEyedropper
|
|
823
823
|
- IconExtendImage
|
|
824
|
+
- IconBandage
|
|
824
825
|
|
|
825
826
|
### Emoji
|
|
826
827
|
|
|
@@ -2307,6 +2308,7 @@ Below is a complete list of available icons:
|
|
|
2307
2308
|
- IconLetterZCircle
|
|
2308
2309
|
- IconLetterASquare
|
|
2309
2310
|
- IconLetterZSquare
|
|
2311
|
+
- IconTextHighlight
|
|
2310
2312
|
|
|
2311
2313
|
### Vehicles
|
|
2312
2314
|
|