@central-icons-react-native/round-filled-radius-3-stroke-2 1.1.308 → 1.1.310
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/IconArrowBottomTop/index.js +2 -2
- package/IconArrowBottomTop/index.js.map +3 -3
- package/IconArrowBottomTop/index.mjs +2 -2
- package/IconArrowBottomTop/index.mjs.map +3 -3
- package/filtered-icons.json +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +2 -2
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +2 -2
- package/icons-index.json +2 -2
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -2
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var L=Object.create;var{getPrototypeOf:k,defineProperty:s,getOwnPropertyNames:h,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function g(o){return this[o]}var v,y,B=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var p=r?v??=new WeakMap:y??=new WeakMap,l=p.get(o);if(l)return l}t=o!=null?L(k(o)):{};let a=r||!o||!o.__esModule?s(t,"default",{value:o,enumerable:!0}):t;for(let i of h(o))if(!c.call(a,i))s(a,i,{get:g.bind(o,i),enumerable:!0});if(e)p.set(o,a);return a},w=(o)=>{var r=(u??=new WeakMap).get(o),t;if(r)return r;if(r=s({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of h(o))if(!c.call(r,e))s(r,e,{get:g.bind(o,e),enumerable:!(t=P(o,e))||t.enumerable})}return u.set(o,r),r},u;var S=(o)=>o;function M(o,r){this[o]=S.bind(null,r)}var x=(o,r)=>{for(var t in r)s(o,t,{get:r[t],enumerable:!0,configurable:!0,set:M.bind(r,t)})};var V={};x(V,{CentralIconBase:()=>f});module.exports=w(V);var C=B(require("react")),n=require("react-native-svg"),f=({children:o,size:r=24,mode:t="masked",maskId:e,...p})=>{let l=t!=="raw"&&!!e;return C.default.createElement(n.Svg,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},l?C.default.createElement(C.default.Fragment,null,C.default.createElement(n.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},C.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),C.default.createElement(n.G,{color:"#fff"},o)),C.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):o)};var b={};x(b,{default:()=>$,IconArrowBottomTop:()=>I});module.exports=w(b);var m=B(require("react"));var d=require("react-native-svg"),I=m.default.memo((o)=>{return m.default.createElement(f,{...o,maskId:"round-filled-radius-3-stroke-2-IconArrowBottomTop"},m.default.createElement(d.Path,{d:"M5.8954 20.5469C6.58276 21.1075 7.5965 21.0675 8.2372 20.4268L11.7069 16.957C12.0973 16.5665 12.0974 15.9335 11.7069 15.543C11.3164 15.1525 10.6834 15.1526 10.2929 15.543L7.9999 17.8359V4C7.9999 3.44775 7.55213 3.00006 6.9999 3C6.44761 3 5.9999 3.44771 5.9999 4V17.8359L3.70693 15.543C3.31643 15.1525 2.68338 15.1526 2.29287 15.543C1.90236 15.9335 1.9024 16.5665 2.29287 16.957L5.76259 20.4268L5.8954 20.5469Z",fill:"currentColor"}),m.default.createElement(d.Path,{d:"M16.9999 21C17.5521 20.9999 17.9999 20.5522 17.9999 20V6.16406L20.2929 8.45703C20.6834 8.8475 21.3164 8.84754 21.7069 8.45703C22.0974 8.06652 22.0974 7.43348 21.7069 7.04297L18.2372 3.57324C17.5538 2.88992 16.446 2.88995 15.7626 3.57324L12.2929 7.04297C11.9023 7.43349 11.9023 8.06651 12.2929 8.45703C12.6834 8.8475 13.3164 8.84754 13.7069 8.45703L15.9999 6.16406V20C15.9999 20.5523 16.4476 21 16.9999 21Z",fill:"currentColor"}))}),$=I;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=2E1307589307A09464756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconArrowBottomTop/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconArrowBottomTop: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconArrowBottomTop\"><Path
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconArrowBottomTop: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconArrowBottomTop\"><Path d=\"M5.8954 20.5469C6.58276 21.1075 7.5965 21.0675 8.2372 20.4268L11.7069 16.957C12.0973 16.5665 12.0974 15.9335 11.7069 15.543C11.3164 15.1525 10.6834 15.1526 10.2929 15.543L7.9999 17.8359V4C7.9999 3.44775 7.55213 3.00006 6.9999 3C6.44761 3 5.9999 3.44771 5.9999 4V17.8359L3.70693 15.543C3.31643 15.1525 2.68338 15.1526 2.29287 15.543C1.90236 15.9335 1.9024 16.5665 2.29287 16.957L5.76259 20.4268L5.8954 20.5469Z\" fill=\"currentColor\"/><Path d=\"M16.9999 21C17.5521 20.9999 17.9999 20.5522 17.9999 20V6.16406L20.2929 8.45703C20.6834 8.8475 21.3164 8.84754 21.7069 8.45703C22.0974 8.06652 22.0974 7.43348 21.7069 7.04297L18.2372 3.57324C17.5538 2.88992 16.446 2.88995 15.7626 3.57324L12.2929 7.04297C11.9023 7.43349 11.9023 8.06651 12.2929 8.45703C12.6834 8.8475 13.3164 8.84754 13.7069 8.45703L15.9999 6.16406V20C15.9999 20.5523 16.4476 21 16.9999 21Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconArrowBottomTop;\n"
|
|
7
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,8EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAuE,UAAM,KAAK,CAAC,IAAU,CACxG,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,8EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAuE,UAAM,KAAK,CAAC,IAAU,CACxG,OAAO,wBAAu8B,EAAv8B,IAAqB,EAAO,OAAO,qDAAoD,wBAAC,OAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wZAAwZ,KAAK,eAAc,CAAI,EAC/8B,EAEc",
|
|
9
|
+
"debugId": "2E1307589307A09464756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import o from"react";import{Svg as
|
|
1
|
+
import o from"react";import{Svg as i,Mask as f,Rect as C,G as d}from"react-native-svg";var s=({children:t,size:r=24,mode:p="masked",maskId:n,...l})=>{let a=p!=="raw"&&!!n;return o.createElement(i,{...l,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(f,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(C,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},t)),o.createElement(C,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as m}from"react-native-svg";var u=e.memo((t)=>{return e.createElement(s,{...t,maskId:"round-filled-radius-3-stroke-2-IconArrowBottomTop"},e.createElement(m,{d:"M5.8954 20.5469C6.58276 21.1075 7.5965 21.0675 8.2372 20.4268L11.7069 16.957C12.0973 16.5665 12.0974 15.9335 11.7069 15.543C11.3164 15.1525 10.6834 15.1526 10.2929 15.543L7.9999 17.8359V4C7.9999 3.44775 7.55213 3.00006 6.9999 3C6.44761 3 5.9999 3.44771 5.9999 4V17.8359L3.70693 15.543C3.31643 15.1525 2.68338 15.1526 2.29287 15.543C1.90236 15.9335 1.9024 16.5665 2.29287 16.957L5.76259 20.4268L5.8954 20.5469Z",fill:"currentColor"}),e.createElement(m,{d:"M16.9999 21C17.5521 20.9999 17.9999 20.5522 17.9999 20V6.16406L20.2929 8.45703C20.6834 8.8475 21.3164 8.84754 21.7069 8.45703C22.0974 8.06652 22.0974 7.43348 21.7069 7.04297L18.2372 3.57324C17.5538 2.88992 16.446 2.88995 15.7626 3.57324L12.2929 7.04297C11.9023 7.43349 11.9023 8.06651 12.2929 8.45703C12.6834 8.8475 13.3164 8.84754 13.7069 8.45703L15.9999 6.16406V20C15.9999 20.5523 16.4476 21 16.9999 21Z",fill:"currentColor"}))}),P=u;export{P as default,u as IconArrowBottomTop};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=32323DA6741CEBFE64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconArrowBottomTop/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconArrowBottomTop: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconArrowBottomTop\"><Path
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconArrowBottomTop: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-filled-radius-3-stroke-2-IconArrowBottomTop\"><Path d=\"M5.8954 20.5469C6.58276 21.1075 7.5965 21.0675 8.2372 20.4268L11.7069 16.957C12.0973 16.5665 12.0974 15.9335 11.7069 15.543C11.3164 15.1525 10.6834 15.1526 10.2929 15.543L7.9999 17.8359V4C7.9999 3.44775 7.55213 3.00006 6.9999 3C6.44761 3 5.9999 3.44771 5.9999 4V17.8359L3.70693 15.543C3.31643 15.1525 2.68338 15.1526 2.29287 15.543C1.90236 15.9335 1.9024 16.5665 2.29287 16.957L5.76259 20.4268L5.8954 20.5469Z\" fill=\"currentColor\"/><Path d=\"M16.9999 21C17.5521 20.9999 17.9999 20.5522 17.9999 20V6.16406L20.2929 8.45703C20.6834 8.8475 21.3164 8.84754 21.7069 8.45703C22.0974 8.06652 22.0974 7.43348 21.7069 7.04297L18.2372 3.57324C17.5538 2.88992 16.446 2.88995 15.7626 3.57324L12.2929 7.04297C11.9023 7.43349 11.9023 8.06651 12.2929 8.45703C12.6834 8.8475 13.3164 8.84754 13.7069 8.45703L15.9999 6.16406V20C15.9999 20.5523 16.4476 21 16.9999 21Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconArrowBottomTop;\n"
|
|
7
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,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAAu8B,EAAv8B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wZAAwZ,KAAK,eAAc,CAAI,EAC/8B,EAEc",
|
|
9
|
+
"debugId": "32323DA6741CEBFE64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|