@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.300 → 1.1.301
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/IconChevronGrabberHorizontalToward/index.d.ts +4 -0
- package/IconChevronGrabberHorizontalToward/index.js +3 -0
- package/IconChevronGrabberHorizontalToward/index.js.map +11 -0
- package/IconChevronGrabberHorizontalToward/index.mjs +3 -0
- package/IconChevronGrabberHorizontalToward/index.mjs.map +11 -0
- package/IconChevronGrabberVerticalToward/index.d.ts +4 -0
- package/IconChevronGrabberVerticalToward/index.js +3 -0
- package/IconChevronGrabberVerticalToward/index.js.map +11 -0
- package/IconChevronGrabberVerticalToward/index.mjs +3 -0
- package/IconChevronGrabberVerticalToward/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 B=Object.create;var{getPrototypeOf:$,defineProperty:t,getOwnPropertyNames:k,getOwnPropertyDescriptor:F}=Object,w=Object.prototype.hasOwnProperty;function x(r){return this[r]}var M,P,S=(r,o,n)=>{var s=r!=null&&typeof r==="object";if(s){var f=o?M??=new WeakMap:P??=new WeakMap,g=f.get(r);if(g)return g}n=r!=null?B($(r)):{};let p=o||!r||!r.__esModule?t(n,"default",{value:r,enumerable:!0}):n;for(let l of k(r))if(!w.call(p,l))t(p,l,{get:x.bind(r,l),enumerable:!0});if(s)f.set(r,p);return p},v=(r)=>{var o=(d??=new WeakMap).get(r),n;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of k(r))if(!w.call(o,s))t(o,s,{get:x.bind(r,s),enumerable:!(n=F(r,s))||n.enumerable})}return d.set(r,o),o},d;var U=(r)=>r;function b(r,o){this[r]=U.bind(null,o)}var y=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0,configurable:!0,set:b.bind(o,n)})};var G={};y(G,{CentralIconBase:()=>h});module.exports=v(G);var m=S(require("react")),i=require("react-native-svg"),h=({children:r,size:o=24,mode:n="masked",maskId:s,...f})=>{let g=n!=="raw"&&!!s;return m.default.createElement(i.Svg,{...f,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},g?m.default.createElement(m.default.Fragment,null,m.default.createElement(i.Mask,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},m.default.createElement(i.Rect,{width:"24",height:"24",fill:"#000"}),m.default.createElement(i.G,{color:"#fff"},r)),m.default.createElement(i.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):r)};var O={};y(O,{default:()=>j,IconChevronGrabberHorizontalToward:()=>C});module.exports=v(O);var e=S(require("react"));var u=require("react-native-svg"),C=e.default.memo((r)=>{return e.default.createElement(h,{...r,maskId:"square-outlined-radius-0-stroke-2-IconChevronGrabberHorizontalToward"},e.default.createElement(u.Path,{d:"M5.25 16L9.25 12L5.25 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.default.createElement(u.Path,{d:"M18.75 16L14.75 12L18.75 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))}),j=C;
|
|
2
|
+
|
|
3
|
+
//# debugId=D2AE7ED89C164FD964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconChevronGrabberHorizontalToward/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 IconChevronGrabberHorizontalToward: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconChevronGrabberHorizontalToward\"><Path d=\"M5.25 16L9.25 12L5.25 8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M18.75 16L14.75 12L18.75 8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconChevronGrabberHorizontalToward;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,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,8FChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAuF,UAAM,KAAK,CAAC,IAAU,CACxH,OAAO,wBAA+S,EAA/S,IAAqB,EAAO,OAAO,wEAAuE,wBAAC,OAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,EACvT,EAEc",
|
|
9
|
+
"debugId": "D2AE7ED89C164FD964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import r from"react";import{Svg as l,Mask as h,Rect as m,G as u}from"react-native-svg";var t=({children:n,size:o=24,mode:f="masked",maskId:i,...g})=>{let p=f!=="raw"&&!!i;return r.createElement(l,{...g,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?r.createElement(r.Fragment,null,r.createElement(h,{id:i,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(m,{width:"24",height:"24",fill:"#000"}),r.createElement(u,{color:"#fff"},n)),r.createElement(m,{width:"24",height:"24",fill:"currentColor",mask:`url(#${i})`})):n)};import s from"react";import{Path as e}from"react-native-svg";var d=s.memo((n)=>{return s.createElement(t,{...n,maskId:"square-outlined-radius-0-stroke-2-IconChevronGrabberHorizontalToward"},s.createElement(e,{d:"M5.25 16L9.25 12L5.25 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),s.createElement(e,{d:"M18.75 16L14.75 12L18.75 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))}),F=d;export{F as default,d as IconChevronGrabberHorizontalToward};
|
|
2
|
+
|
|
3
|
+
//# debugId=0A4141BDF7C0609564756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconChevronGrabberHorizontalToward/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 IconChevronGrabberHorizontalToward: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconChevronGrabberHorizontalToward\"><Path d=\"M5.25 16L9.25 12L5.25 8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M18.75 16L14.75 12L18.75 8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconChevronGrabberHorizontalToward;\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,EAAuF,EAAM,KAAK,CAAC,IAAU,CACxH,OAAO,gBAA+S,EAA/S,IAAqB,EAAO,OAAO,wEAAuE,gBAAC,EAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,EACvT,EAEc",
|
|
9
|
+
"debugId": "0A4141BDF7C0609564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:$,defineProperty:t,getOwnPropertyNames:k,getOwnPropertyDescriptor:F}=Object,w=Object.prototype.hasOwnProperty;function x(r){return this[r]}var M,P,S=(r,o,n)=>{var s=r!=null&&typeof r==="object";if(s){var f=o?M??=new WeakMap:P??=new WeakMap,g=f.get(r);if(g)return g}n=r!=null?B($(r)):{};let p=o||!r||!r.__esModule?t(n,"default",{value:r,enumerable:!0}):n;for(let l of k(r))if(!w.call(p,l))t(p,l,{get:x.bind(r,l),enumerable:!0});if(s)f.set(r,p);return p},v=(r)=>{var o=(d??=new WeakMap).get(r),n;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of k(r))if(!w.call(o,s))t(o,s,{get:x.bind(r,s),enumerable:!(n=F(r,s))||n.enumerable})}return d.set(r,o),o},d;var U=(r)=>r;function b(r,o){this[r]=U.bind(null,o)}var y=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0,configurable:!0,set:b.bind(o,n)})};var G={};y(G,{CentralIconBase:()=>h});module.exports=v(G);var m=S(require("react")),i=require("react-native-svg"),h=({children:r,size:o=24,mode:n="masked",maskId:s,...f})=>{let g=n!=="raw"&&!!s;return m.default.createElement(i.Svg,{...f,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},g?m.default.createElement(m.default.Fragment,null,m.default.createElement(i.Mask,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},m.default.createElement(i.Rect,{width:"24",height:"24",fill:"#000"}),m.default.createElement(i.G,{color:"#fff"},r)),m.default.createElement(i.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):r)};var O={};y(O,{default:()=>j,IconChevronGrabberVerticalToward:()=>C});module.exports=v(O);var e=S(require("react"));var u=require("react-native-svg"),C=e.default.memo((r)=>{return e.default.createElement(h,{...r,maskId:"square-outlined-radius-0-stroke-2-IconChevronGrabberVerticalToward"},e.default.createElement(u.Path,{d:"M8 18.75L12 14.75L16 18.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.default.createElement(u.Path,{d:"M8 5.25L12 9.25L16 5.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))}),j=C;
|
|
2
|
+
|
|
3
|
+
//# debugId=4F7ED508C375649864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconChevronGrabberVerticalToward/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 IconChevronGrabberVerticalToward: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconChevronGrabberVerticalToward\"><Path d=\"M8 18.75L12 14.75L16 18.75\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M8 5.25L12 9.25L16 5.25\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconChevronGrabberVerticalToward;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,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,4FChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAqF,UAAM,KAAK,CAAC,IAAU,CACtH,OAAO,wBAA6S,EAA7S,IAAqB,EAAO,OAAO,sEAAqE,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,EACrT,EAEc",
|
|
9
|
+
"debugId": "4F7ED508C375649864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import r from"react";import{Svg as l,Mask as h,Rect as m,G as u}from"react-native-svg";var t=({children:n,size:o=24,mode:f="masked",maskId:i,...g})=>{let p=f!=="raw"&&!!i;return r.createElement(l,{...g,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?r.createElement(r.Fragment,null,r.createElement(h,{id:i,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(m,{width:"24",height:"24",fill:"#000"}),r.createElement(u,{color:"#fff"},n)),r.createElement(m,{width:"24",height:"24",fill:"currentColor",mask:`url(#${i})`})):n)};import s from"react";import{Path as e}from"react-native-svg";var d=s.memo((n)=>{return s.createElement(t,{...n,maskId:"square-outlined-radius-0-stroke-2-IconChevronGrabberVerticalToward"},s.createElement(e,{d:"M8 18.75L12 14.75L16 18.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),s.createElement(e,{d:"M8 5.25L12 9.25L16 5.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))}),F=d;export{F as default,d as IconChevronGrabberVerticalToward};
|
|
2
|
+
|
|
3
|
+
//# debugId=7B6FCE1DD931397D64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconChevronGrabberVerticalToward/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 IconChevronGrabberVerticalToward: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconChevronGrabberVerticalToward\"><Path d=\"M8 18.75L12 14.75L16 18.75\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M8 5.25L12 9.25L16 5.25\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconChevronGrabberVerticalToward;\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,EAAqF,EAAM,KAAK,CAAC,IAAU,CACtH,OAAO,gBAA6S,EAA7S,IAAqB,EAAO,OAAO,sEAAqE,gBAAC,EAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,EACrT,EAEc",
|
|
9
|
+
"debugId": "7B6FCE1DD931397D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED