@central-icons-react-native/round-outlined-radius-1-stroke-1 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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBandage: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconBandage;
@@ -0,0 +1,3 @@
1
+ var I=Object.create;var{getPrototypeOf:w,defineProperty:m,getOwnPropertyNames:f,getOwnPropertyDescriptor:P}=Object,x=Object.prototype.hasOwnProperty;function g(r){return this[r]}var v,M,h=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var p=o?v??=new WeakMap:M??=new WeakMap,C=p.get(r);if(C)return C}e=r!=null?I(w(r)):{};let a=o||!r||!r.__esModule?m(e,"default",{value:r,enumerable:!0}):e;if(r&&typeof r==="object"||typeof r==="function"){for(let c of f(r))if(!x.call(a,c))m(a,c,{get:g.bind(r,c),enumerable:!0})}if(n)p.set(r,a);return a},k=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=m({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of f(r))if(!x.call(o,n))m(o,n,{get:g.bind(r,n),enumerable:!(e=P(r,n))||e.enumerable})}return d.set(r,o),o},d;var S=(r)=>r;function L(r,o){this[r]=S.bind(null,o)}var B=(r,o)=>{for(var e in o)m(r,e,{get:o[e],enumerable:!0,configurable:!0,set:L.bind(o,e)})};var b={};B(b,{CentralIconBase:()=>u});module.exports=k(b);var i=h(require("react")),l=require("react-native-svg"),u=({children:r,size:o=24,mode:e="masked",maskId:n,...p})=>{let C=e!=="raw"&&!!n;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:n,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(#${n})`})):r)};var F={};B(F,{IconBandage:()=>y,default:()=>G});module.exports=k(F);var t=h(require("react"));var s=require("react-native-svg"),y=t.default.memo((r)=>t.default.createElement(u,{...r,maskId:"round-outlined-radius-1-stroke-1-IconBandage"},t.default.createElement(s.Path,{d:"M4.25 13.25L13.25 4.25C15.0449 2.45507 17.9551 2.45508 19.75 4.25C21.5449 6.04492 21.5449 8.95508 19.75 10.75L10.75 19.75C8.95507 21.5449 6.04492 21.5449 4.25 19.75C2.45508 17.9551 2.45508 15.0449 4.25 13.25Z",stroke:"currentColor"}),t.default.createElement(s.Path,{d:"M6 12L12 18",stroke:"currentColor"}),t.default.createElement(s.Path,{d:"M12 6L18 12",stroke:"currentColor"}),t.default.createElement(s.Circle,{cx:"11.9992",cy:"9.8",r:"0.8",fill:"currentColor"}),t.default.createElement(s.Circle,{cx:"14.2004",cy:"12.0002",r:"0.8",fill:"currentColor"}),t.default.createElement(s.Circle,{cx:"11.9992",cy:"14.1999",r:"0.8",fill:"currentColor"}),t.default.createElement(s.Circle,{cx:"9.8",cy:"12.0002",r:"0.8",fill:"currentColor"}))),G=y;
2
+
3
+ //# debugId=AC7D2B79C710506764756E2164756E21
@@ -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-1-IconBandage\"><Path d=\"M4.25 13.25L13.25 4.25C15.0449 2.45507 17.9551 2.45508 19.75 4.25C21.5449 6.04492 21.5449 8.95508 19.75 10.75L10.75 19.75C8.95507 21.5449 6.04492 21.5449 4.25 19.75C2.45508 17.9551 2.45508 15.0449 4.25 13.25Z\" stroke=\"currentColor\"/><Path d=\"M6 12L12 18\" stroke=\"currentColor\"/><Path d=\"M12 6L18 12\" stroke=\"currentColor\"/><Circle cx=\"11.9992\" cy=\"9.8\" r=\"0.8\" fill=\"currentColor\"/><Circle cx=\"14.2004\" cy=\"12.0002\" r=\"0.8\" fill=\"currentColor\"/><Circle cx=\"11.9992\" cy=\"14.1999\" r=\"0.8\" fill=\"currentColor\"/><Circle cx=\"9.8\" cy=\"12.0002\" r=\"0.8\" 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,wBAAopB,EAAppB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,MAAM,EAAE,MAAM,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,MAAM,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,CAC5pB,EAEc",
9
+ "debugId": "AC7D2B79C710506764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as c,Mask as u,Rect as i,G as d}from"react-native-svg";var m=({children:n,size:e=24,mode:p="masked",maskId:l,...C})=>{let a=p!=="raw"&&!!l;return o.createElement(c,{...C,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},a?o.createElement(o.Fragment,null,o.createElement(u,{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},n)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):n)};import r from"react";import{Circle as t,Path as s}from"react-native-svg";var f=r.memo((n)=>r.createElement(m,{...n,maskId:"round-outlined-radius-1-stroke-1-IconBandage"},r.createElement(s,{d:"M4.25 13.25L13.25 4.25C15.0449 2.45507 17.9551 2.45508 19.75 4.25C21.5449 6.04492 21.5449 8.95508 19.75 10.75L10.75 19.75C8.95507 21.5449 6.04492 21.5449 4.25 19.75C2.45508 17.9551 2.45508 15.0449 4.25 13.25Z",stroke:"currentColor"}),r.createElement(s,{d:"M6 12L12 18",stroke:"currentColor"}),r.createElement(s,{d:"M12 6L18 12",stroke:"currentColor"}),r.createElement(t,{cx:"11.9992",cy:"9.8",r:"0.8",fill:"currentColor"}),r.createElement(t,{cx:"14.2004",cy:"12.0002",r:"0.8",fill:"currentColor"}),r.createElement(t,{cx:"11.9992",cy:"14.1999",r:"0.8",fill:"currentColor"}),r.createElement(t,{cx:"9.8",cy:"12.0002",r:"0.8",fill:"currentColor"}))),v=f;export{f as IconBandage,v as default};
2
+
3
+ //# debugId=EEB57E1C14DAC23C64756E2164756E21
@@ -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-1-IconBandage\"><Path d=\"M4.25 13.25L13.25 4.25C15.0449 2.45507 17.9551 2.45508 19.75 4.25C21.5449 6.04492 21.5449 8.95508 19.75 10.75L10.75 19.75C8.95507 21.5449 6.04492 21.5449 4.25 19.75C2.45508 17.9551 2.45508 15.0449 4.25 13.25Z\" stroke=\"currentColor\"/><Path d=\"M6 12L12 18\" stroke=\"currentColor\"/><Path d=\"M12 6L18 12\" stroke=\"currentColor\"/><Circle cx=\"11.9992\" cy=\"9.8\" r=\"0.8\" fill=\"currentColor\"/><Circle cx=\"14.2004\" cy=\"12.0002\" r=\"0.8\" fill=\"currentColor\"/><Circle cx=\"11.9992\" cy=\"14.1999\" r=\"0.8\" fill=\"currentColor\"/><Circle cx=\"9.8\" cy=\"12.0002\" r=\"0.8\" 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,gBAAopB,EAAppB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,mNAAmN,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,UAAU,GAAG,MAAM,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,MAAM,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,CAC5pB,EAEc",
9
+ "debugId": "EEB57E1C14DAC23C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconTextHighlight;
@@ -0,0 +1,3 @@
1
+ var w=Object.create;var{getPrototypeOf:P,defineProperty:C,getOwnPropertyNames:h,getOwnPropertyDescriptor:y}=Object,g=Object.prototype.hasOwnProperty;function c(o){return this[o]}var v,M,k=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var l=r?v??=new WeakMap:M??=new WeakMap,p=l.get(o);if(p)return p}t=o!=null?w(P(o)):{};let m=r||!o||!o.__esModule?C(t,"default",{value:o,enumerable:!0}):t;if(o&&typeof o==="object"||typeof o==="function"){for(let d of h(o))if(!g.call(m,d))C(m,d,{get:c.bind(o,d),enumerable:!0})}if(e)l.set(o,m);return m},x=(o)=>{var r=(f??=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 h(o))if(!g.call(r,e))C(r,e,{get:c.bind(o,e),enumerable:!(t=y(o,e))||t.enumerable})}return f.set(o,r),r},f;var S=(o)=>o;function L(o,r){this[o]=S.bind(null,r)}var I=(o,r)=>{for(var t in r)C(o,t,{get:r[t],enumerable:!0,configurable:!0,set:L.bind(r,t)})};var b={};I(b,{CentralIconBase:()=>u});module.exports=x(b);var s=k(require("react")),n=require("react-native-svg"),u=({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=k(require("react"));var a=require("react-native-svg"),B=i.default.memo((o)=>i.default.createElement(u,{...o,maskId:"round-outlined-radius-1-stroke-1-IconTextHighlight"},i.default.createElement(a.Path,{d:"M7.37695 4.62368C12.2198 4.01728 18.6814 2.8376 18.6816 6.98696C18.6815 8.06765 18.2462 8.76798 17.5176 9.20668C20.324 9.47045 22.4998 10.2637 22.5 12.4752C22.4999 14.0805 21.3532 14.9378 19.6514 15.3883C20.2141 15.7325 20.5907 16.3513 20.5908 17.0592C20.5907 18.1012 19.7761 18.9616 18.7363 19.0299C17.4381 19.1152 15.7068 19.2433 14.3867 19.3952C13.3669 19.5125 12.1128 19.6995 11 19.8766C9.98949 20.0374 9.037 19.5551 8.54004 18.7545C5.72665 18.6258 3.40934 18.0103 3.40918 15.8161C3.40938 14.6197 4.09892 13.893 5.18164 13.4577C3.03049 13.0303 1.50014 12.1962 1.5 10.5661C1.50016 8.87206 3.15298 8.03916 5.4375 7.62758C5.36126 7.40136 5.31838 7.1602 5.31836 6.90981C5.31855 5.74305 6.2192 4.76866 7.37695 4.62368Z",fill:"currentColor","fill-opacity":"0.15"}),i.default.createElement(a.Path,{d:"M10 12.5H13.9973",stroke:"currentColor"}),i.default.createElement(a.Path,{d:"M8.5 15.5L12 7.5L15.5 15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))),F=B;
2
+
3
+ //# debugId=28C21DE68888C5EF64756E2164756E21
@@ -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-1-IconTextHighlight\"><Path d=\"M7.37695 4.62368C12.2198 4.01728 18.6814 2.8376 18.6816 6.98696C18.6815 8.06765 18.2462 8.76798 17.5176 9.20668C20.324 9.47045 22.4998 10.2637 22.5 12.4752C22.4999 14.0805 21.3532 14.9378 19.6514 15.3883C20.2141 15.7325 20.5907 16.3513 20.5908 17.0592C20.5907 18.1012 19.7761 18.9616 18.7363 19.0299C17.4381 19.1152 15.7068 19.2433 14.3867 19.3952C13.3669 19.5125 12.1128 19.6995 11 19.8766C9.98949 20.0374 9.037 19.5551 8.54004 18.7545C5.72665 18.6258 3.40934 18.0103 3.40918 15.8161C3.40938 14.6197 4.09892 13.893 5.18164 13.4577C3.03049 13.0303 1.50014 12.1962 1.5 10.5661C1.50016 8.87206 3.15298 8.03916 5.4375 7.62758C5.36126 7.40136 5.31838 7.1602 5.31836 6.90981C5.31855 5.74305 6.2192 4.76866 7.37695 4.62368Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><Path d=\"M10 12.5H13.9973\" stroke=\"currentColor\"/><Path d=\"M8.5 15.5L12 7.5L15.5 15.5\" stroke=\"currentColor\" 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,wBAAs/B,EAAt/B,IAAqB,EAAO,OAAO,sDAAqD,wBAAC,OAAD,CAAM,EAAE,gtBAAgtB,KAAK,eAAe,eAAa,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,CAC9/B,EAEc",
9
+ "debugId": "28C21DE68888C5EF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as d,Rect as i,G as u}from"react-native-svg";var C=({children:e,size:r=24,mode:l="masked",maskId:n,...p})=>{let m=l!=="raw"&&!!n;return o.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?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(u,{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 f=t.memo((e)=>t.createElement(C,{...e,maskId:"round-outlined-radius-1-stroke-1-IconTextHighlight"},t.createElement(s,{d:"M7.37695 4.62368C12.2198 4.01728 18.6814 2.8376 18.6816 6.98696C18.6815 8.06765 18.2462 8.76798 17.5176 9.20668C20.324 9.47045 22.4998 10.2637 22.5 12.4752C22.4999 14.0805 21.3532 14.9378 19.6514 15.3883C20.2141 15.7325 20.5907 16.3513 20.5908 17.0592C20.5907 18.1012 19.7761 18.9616 18.7363 19.0299C17.4381 19.1152 15.7068 19.2433 14.3867 19.3952C13.3669 19.5125 12.1128 19.6995 11 19.8766C9.98949 20.0374 9.037 19.5551 8.54004 18.7545C5.72665 18.6258 3.40934 18.0103 3.40918 15.8161C3.40938 14.6197 4.09892 13.893 5.18164 13.4577C3.03049 13.0303 1.50014 12.1962 1.5 10.5661C1.50016 8.87206 3.15298 8.03916 5.4375 7.62758C5.36126 7.40136 5.31838 7.1602 5.31836 6.90981C5.31855 5.74305 6.2192 4.76866 7.37695 4.62368Z",fill:"currentColor","fill-opacity":"0.15"}),t.createElement(s,{d:"M10 12.5H13.9973",stroke:"currentColor"}),t.createElement(s,{d:"M8.5 15.5L12 7.5L15.5 15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))),y=f;export{f as IconTextHighlight,y as default};
2
+
3
+ //# debugId=99A5D24D77F0EA7364756E2164756E21
@@ -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-1-IconTextHighlight\"><Path d=\"M7.37695 4.62368C12.2198 4.01728 18.6814 2.8376 18.6816 6.98696C18.6815 8.06765 18.2462 8.76798 17.5176 9.20668C20.324 9.47045 22.4998 10.2637 22.5 12.4752C22.4999 14.0805 21.3532 14.9378 19.6514 15.3883C20.2141 15.7325 20.5907 16.3513 20.5908 17.0592C20.5907 18.1012 19.7761 18.9616 18.7363 19.0299C17.4381 19.1152 15.7068 19.2433 14.3867 19.3952C13.3669 19.5125 12.1128 19.6995 11 19.8766C9.98949 20.0374 9.037 19.5551 8.54004 18.7545C5.72665 18.6258 3.40934 18.0103 3.40918 15.8161C3.40938 14.6197 4.09892 13.893 5.18164 13.4577C3.03049 13.0303 1.50014 12.1962 1.5 10.5661C1.50016 8.87206 3.15298 8.03916 5.4375 7.62758C5.36126 7.40136 5.31838 7.1602 5.31836 6.90981C5.31855 5.74305 6.2192 4.76866 7.37695 4.62368Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><Path d=\"M10 12.5H13.9973\" stroke=\"currentColor\"/><Path d=\"M8.5 15.5L12 7.5L15.5 15.5\" stroke=\"currentColor\" 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,gBAAs/B,EAAt/B,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,gtBAAgtB,KAAK,eAAe,eAAa,OAAM,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,CAC9/B,EAEc",
9
+ "debugId": "99A5D24D77F0EA7364756E2164756E21",
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