@central-icons-react-native/round-filled-radius-1-stroke-2 1.1.5 → 1.1.8
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/IconChevronDownMedium/index.d.ts +4 -0
- package/IconChevronDownMedium/index.js +2 -0
- package/IconChevronDownMedium/index.js.map +1 -0
- package/IconChevronDownMedium/index.mjs +2 -0
- package/IconChevronDownMedium/index.mjs.map +1 -0
- package/IconChevronLeftMedium/index.d.ts +4 -0
- package/IconChevronLeftMedium/index.js +2 -0
- package/IconChevronLeftMedium/index.js.map +1 -0
- package/IconChevronLeftMedium/index.mjs +2 -0
- package/IconChevronLeftMedium/index.mjs.map +1 -0
- package/IconChevronRightMedium/index.d.ts +4 -0
- package/IconChevronRightMedium/index.js +2 -0
- package/IconChevronRightMedium/index.js.map +1 -0
- package/IconChevronRightMedium/index.mjs +2 -0
- package/IconChevronRightMedium/index.mjs.map +1 -0
- package/IconChevronTopMedium/index.d.ts +4 -0
- package/IconChevronTopMedium/index.js +2 -0
- package/IconChevronTopMedium/index.js.map +1 -0
- package/IconChevronTopMedium/index.mjs +2 -0
- package/IconChevronTopMedium/index.mjs.map +1 -0
- package/IconCursor/index.js +1 -1
- package/IconCursor/index.js.map +1 -1
- package/IconCursor/index.mjs +1 -1
- package/IconCursor/index.mjs.map +1 -1
- package/README.md +4 -0
- package/filtered-icons.json +57 -1
- package/icons/index.d.ts +4 -0
- package/icons-index.json +11 -3
- package/index.d.ts +4 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +29 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var d={};g(d,{IconChevronDownMedium:()=>i,default:()=>h});module.exports=v(d);var p=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M17.2929 8.79289C17.6834 8.40237 18.3164 8.40237 18.707 8.79289C19.0975 9.18342 19.0975 9.81643 18.707 10.207L12.707 16.207C12.3164 16.5975 11.6834 16.5975 11.2929 16.207L5.29289 10.207C4.90237 9.81643 4.90237 9.18342 5.29289 8.79289C5.68342 8.40237 6.31643 8.40237 6.70696 8.79289L11.9999 14.0859L17.2929 8.79289Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronDownMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronDownMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChevronDownMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.2929 8.79289C17.6834 8.40237 18.3164 8.40237 18.707 8.79289C19.0975 9.18342 19.0975 9.81643 18.707 10.207L12.707 16.207C12.3164 16.5975 11.6834 16.5975 11.2929 16.207L5.29289 10.207C4.90237 9.81643 4.90237 9.18342 5.29289 8.79289C5.68342 8.40237 6.31643 8.40237 6.70696 8.79289L11.9999 14.0859L17.2929 8.79289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronDownMedium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,2BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,6TACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronDownMedium_exports","__export","IconChevronDownMedium","IconChevronDownMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronDownMedium","props","React","CentralIconBase","IconChevronDownMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(a,{d:"M17.2929 8.79289C17.6834 8.40237 18.3164 8.40237 18.707 8.79289C19.0975 9.18342 19.0975 9.81643 18.707 10.207L12.707 16.207C12.3164 16.5975 11.6834 16.5975 11.2929 16.207L5.29289 10.207C4.90237 9.81643 4.90237 9.18342 5.29289 8.79289C5.68342 8.40237 6.31643 8.40237 6.70696 8.79289L11.9999 14.0859L17.2929 8.79289Z",fill:"currentColor"})),P=m;export{m as IconChevronDownMedium,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronDownMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChevronDownMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.2929 8.79289C17.6834 8.40237 18.3164 8.40237 18.707 8.79289C19.0975 9.18342 19.0975 9.81643 18.707 10.207L12.707 16.207C12.3164 16.5975 11.6834 16.5975 11.2929 16.207L5.29289 10.207C4.90237 9.81643 4.90237 9.18342 5.29289 8.79289C5.68342 8.40237 6.31643 8.40237 6.70696 8.79289L11.9999 14.0859L17.2929 8.79289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronDownMedium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,6TACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronDownMedium","props","React","CentralIconBase","IconChevronDownMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var L={};g(L,{IconChevronLeftMedium:()=>i,default:()=>h});module.exports=v(L);var p=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),f=({children:r,size:o=24,...e})=>l.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var c=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(c.Path,{d:"M13.7929 5.29289C14.1834 4.90237 14.8164 4.90237 15.207 5.29289C15.5975 5.68342 15.5975 6.31643 15.207 6.70696L9.91399 11.9999L15.207 17.2929C15.5975 17.6834 15.5975 18.3164 15.207 18.707C14.8164 19.0975 14.1834 19.0975 13.7929 18.707L7.79289 12.707C7.40237 12.3164 7.40237 11.6834 7.79289 11.2929L13.7929 5.29289Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronLeftMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronLeftMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChevronLeftMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.7929 5.29289C14.1834 4.90237 14.8164 4.90237 15.207 5.29289C15.5975 5.68342 15.5975 6.31643 15.207 6.70696L9.91399 11.9999L15.207 17.2929C15.5975 17.6834 15.5975 18.3164 15.207 18.707C14.8164 19.0975 14.1834 19.0975 13.7929 18.707L7.79289 12.707C7.40237 12.3164 7.40237 11.6834 7.79289 11.2929L13.7929 5.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronLeftMedium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,2BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,6TACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronLeftMedium_exports","__export","IconChevronLeftMedium","IconChevronLeftMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronLeftMedium","props","React","CentralIconBase","IconChevronLeftMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(a,{d:"M13.7929 5.29289C14.1834 4.90237 14.8164 4.90237 15.207 5.29289C15.5975 5.68342 15.5975 6.31643 15.207 6.70696L9.91399 11.9999L15.207 17.2929C15.5975 17.6834 15.5975 18.3164 15.207 18.707C14.8164 19.0975 14.1834 19.0975 13.7929 18.707L7.79289 12.707C7.40237 12.3164 7.40237 11.6834 7.79289 11.2929L13.7929 5.29289Z",fill:"currentColor"})),P=m;export{m as IconChevronLeftMedium,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronLeftMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChevronLeftMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.7929 5.29289C14.1834 4.90237 14.8164 4.90237 15.207 5.29289C15.5975 5.68342 15.5975 6.31643 15.207 6.70696L9.91399 11.9999L15.207 17.2929C15.5975 17.6834 15.5975 18.3164 15.207 18.707C14.8164 19.0975 14.1834 19.0975 13.7929 18.707L7.79289 12.707C7.40237 12.3164 7.40237 11.6834 7.79289 11.2929L13.7929 5.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronLeftMedium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,6TACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronLeftMedium","props","React","CentralIconBase","IconChevronLeftMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=B(o,e))||C.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(g(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>a(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronRightMedium:()=>i,default:()=>v});module.exports=h(d);var p=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>l.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M8.79289 5.29289C9.18342 4.90237 9.81643 4.90237 10.207 5.29289L16.207 11.2929C16.5975 11.6834 16.5975 12.3164 16.207 12.707L10.207 18.707C9.81643 19.0975 9.18342 19.0975 8.79289 18.707C8.40237 18.3164 8.40237 17.6834 8.79289 17.2929L14.0859 11.9999L8.79289 6.70696C8.40237 6.31643 8.40237 5.68342 8.79289 5.29289Z",fill:"currentColor"})),v=i;0&&(module.exports={IconChevronRightMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronRightMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChevronRightMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.79289 5.29289C9.18342 4.90237 9.81643 4.90237 10.207 5.29289L16.207 11.2929C16.5975 11.6834 16.5975 12.3164 16.207 12.707L10.207 18.707C9.81643 19.0975 9.18342 19.0975 8.79289 18.707C8.40237 18.3164 8.40237 17.6834 8.79289 17.2929L14.0859 11.9999L8.79289 6.70696C8.40237 6.31643 8.40237 5.68342 8.79289 5.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronRightMedium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,4BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,6TACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronRightMedium_exports","__export","IconChevronRightMedium","IconChevronRightMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronRightMedium","props","React","CentralIconBase","IconChevronRightMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(a,{d:"M8.79289 5.29289C9.18342 4.90237 9.81643 4.90237 10.207 5.29289L16.207 11.2929C16.5975 11.6834 16.5975 12.3164 16.207 12.707L10.207 18.707C9.81643 19.0975 9.18342 19.0975 8.79289 18.707C8.40237 18.3164 8.40237 17.6834 8.79289 17.2929L14.0859 11.9999L8.79289 6.70696C8.40237 6.31643 8.40237 5.68342 8.79289 5.29289Z",fill:"currentColor"})),x=m;export{m as IconChevronRightMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronRightMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChevronRightMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.79289 5.29289C9.18342 4.90237 9.81643 4.90237 10.207 5.29289L16.207 11.2929C16.5975 11.6834 16.5975 12.3164 16.207 12.707L10.207 18.707C9.81643 19.0975 9.18342 19.0975 8.79289 18.707C8.40237 18.3164 8.40237 17.6834 8.79289 17.2929L14.0859 11.9999L8.79289 6.70696C8.40237 6.31643 8.40237 5.68342 8.79289 5.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronRightMedium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,6TACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronRightMedium","props","React","CentralIconBase","IconChevronRightMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var L={};g(L,{IconChevronTopMedium:()=>i,default:()=>h});module.exports=v(L);var p=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M11.3691 7.72437C11.7618 7.40402 12.3408 7.42662 12.707 7.79273L18.707 13.7927C19.0975 14.1833 19.0975 14.8163 18.707 15.2068C18.3164 15.5973 17.6834 15.5973 17.2929 15.2068L11.9999 9.91383L6.70696 15.2068C6.31643 15.5973 5.68342 15.5973 5.29289 15.2068C4.90237 14.8163 4.90237 14.1833 5.29289 13.7927L11.2929 7.79273L11.3691 7.72437Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronTopMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTopMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChevronTopMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.3691 7.72437C11.7618 7.40402 12.3408 7.42662 12.707 7.79273L18.707 13.7927C19.0975 14.1833 19.0975 14.8163 18.707 15.2068C18.3164 15.5973 17.6834 15.5973 17.2929 15.2068L11.9999 9.91383L6.70696 15.2068C6.31643 15.5973 5.68342 15.5973 5.29289 15.2068C4.90237 14.8163 4.90237 14.1833 5.29289 13.7927L11.2929 7.79273L11.3691 7.72437Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTopMedium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iVACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTopMedium_exports","__export","IconChevronTopMedium","IconChevronTopMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTopMedium","props","React","CentralIconBase","IconChevronTopMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(a,{d:"M11.3691 7.72437C11.7618 7.40402 12.3408 7.42662 12.707 7.79273L18.707 13.7927C19.0975 14.1833 19.0975 14.8163 18.707 15.2068C18.3164 15.5973 17.6834 15.5973 17.2929 15.2068L11.9999 9.91383L6.70696 15.2068C6.31643 15.5973 5.68342 15.5973 5.29289 15.2068C4.90237 14.8163 4.90237 14.1833 5.29289 13.7927L11.2929 7.79273L11.3691 7.72437Z",fill:"currentColor"})),P=m;export{m as IconChevronTopMedium,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTopMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChevronTopMedium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.3691 7.72437C11.7618 7.40402 12.3408 7.42662 12.707 7.79273L18.707 13.7927C19.0975 14.1833 19.0975 14.8163 18.707 15.2068C18.3164 15.5973 17.6834 15.5973 17.2929 15.2068L11.9999 9.91383L6.70696 15.2068C6.31643 15.5973 5.68342 15.5973 5.29289 15.2068C4.90237 14.8163 4.90237 14.1833 5.29289 13.7927L11.2929 7.79273L11.3691 7.72437Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTopMedium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iVACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTopMedium","props","React","CentralIconBase","IconChevronTopMedium_default"]}
|
package/IconCursor/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of i(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),L=r=>a(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconCursor:()=>u,default:()=>v});module.exports=L(h);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),u=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M20.8423 6.47053L12.4355 1.61692C12.1655 1.46103 11.8324 1.46103 11.5625 1.61692L3.1561 6.47053C2.92917 6.60156 2.78906 6.84386 2.78906 7.10633V16.8937C2.78906 17.1557 2.92917 17.3985 3.1561 17.5295L11.5629 22.3831C11.8328 22.539 12.166 22.539 12.4359 22.3831L20.8427 17.5295C21.0696 17.3985 21.2097 17.1561 21.2097 16.8937V7.10633C21.2097 6.84427 21.0696 6.60156 20.8427 6.47053H20.8423ZM20.3142 7.49863L12.1987 21.5551C12.1438 21.6498 11.999 21.6111 11.999 21.5014V12.2974C11.999 12.1135 11.9007 11.9433 11.7413 11.851L3.7706 7.2492C3.67588 7.19436 3.71456 7.04948 3.82427 7.04948H20.0553C20.2858 7.04948 20.4299 7.29932 20.3146 7.49904H20.3142V7.49863Z",fill:"currentColor"})),v=u;0&&(module.exports={IconCursor});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconCursor/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCursor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n
|
|
1
|
+
{"version":3,"sources":["../src/IconCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCursor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.8423 6.47053L12.4355 1.61692C12.1655 1.46103 11.8324 1.46103 11.5625 1.61692L3.1561 6.47053C2.92917 6.60156 2.78906 6.84386 2.78906 7.10633V16.8937C2.78906 17.1557 2.92917 17.3985 3.1561 17.5295L11.5629 22.3831C11.8328 22.539 12.166 22.539 12.4359 22.3831L20.8427 17.5295C21.0696 17.3985 21.2097 17.1561 21.2097 16.8937V7.10633C21.2097 6.84427 21.0696 6.60156 20.8427 6.47053H20.8423ZM20.3142 7.49863L12.1987 21.5551C12.1438 21.6498 11.999 21.6111 11.999 21.5014V12.2974C11.999 12.1135 11.9007 11.9433 11.7413 11.851L3.7706 7.2492C3.67588 7.19436 3.71456 7.04948 3.82427 7.04948H20.0553C20.2858 7.04948 20.4299 7.29932 20.3146 7.49904H20.3142V7.49863Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursor;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kpBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCursor_exports","__export","IconCursor","IconCursor_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCursor","props","React","CentralIconBase","IconCursor_default"]}
|
package/IconCursor/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M20.8423 6.47053L12.4355 1.61692C12.1655 1.46103 11.8324 1.46103 11.5625 1.61692L3.1561 6.47053C2.92917 6.60156 2.78906 6.84386 2.78906 7.10633V16.8937C2.78906 17.1557 2.92917 17.3985 3.1561 17.5295L11.5629 22.3831C11.8328 22.539 12.166 22.539 12.4359 22.3831L20.8427 17.5295C21.0696 17.3985 21.2097 17.1561 21.2097 16.8937V7.10633C21.2097 6.84427 21.0696 6.60156 20.8427 6.47053H20.8423ZM20.3142 7.49863L12.1987 21.5551C12.1438 21.6498 11.999 21.6111 11.999 21.5014V12.2974C11.999 12.1135 11.9007 11.9433 11.7413 11.851L3.7706 7.2492C3.67588 7.19436 3.71456 7.04948 3.82427 7.04948H20.0553C20.2858 7.04948 20.4299 7.29932 20.3146 7.49904H20.3142V7.49863Z",fill:"currentColor"})),P=l;export{l as IconCursor,P as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconCursor/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCursor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n
|
|
1
|
+
{"version":3,"sources":["../src/IconCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCursor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.8423 6.47053L12.4355 1.61692C12.1655 1.46103 11.8324 1.46103 11.5625 1.61692L3.1561 6.47053C2.92917 6.60156 2.78906 6.84386 2.78906 7.10633V16.8937C2.78906 17.1557 2.92917 17.3985 3.1561 17.5295L11.5629 22.3831C11.8328 22.539 12.166 22.539 12.4359 22.3831L20.8427 17.5295C21.0696 17.3985 21.2097 17.1561 21.2097 16.8937V7.10633C21.2097 6.84427 21.0696 6.60156 20.8427 6.47053H20.8423ZM20.3142 7.49863L12.1987 21.5551C12.1438 21.6498 11.999 21.6111 11.999 21.5014V12.2974C11.999 12.1135 11.9007 11.9433 11.7413 11.851L3.7706 7.2492C3.67588 7.19436 3.71456 7.04948 3.82427 7.04948H20.0553C20.2858 7.04948 20.4299 7.29932 20.3146 7.49904H20.3142V7.49863Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursor;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\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 {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kpBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCursor","props","React","CentralIconBase","IconCursor_default"]}
|
package/README.md
CHANGED
|
@@ -265,6 +265,7 @@ Below is a complete list of available icons:
|
|
|
265
265
|
- IconChevronDoubleLeft
|
|
266
266
|
- IconChevronDoubleRight
|
|
267
267
|
- IconChevronDoubleUp
|
|
268
|
+
- IconChevronDownMedium
|
|
268
269
|
- IconChevronDownSmall
|
|
269
270
|
- IconChevronGrabberHorizontal
|
|
270
271
|
- IconChevronGrabberVertical
|
|
@@ -273,10 +274,13 @@ Below is a complete list of available icons:
|
|
|
273
274
|
- IconChevronLargeRight
|
|
274
275
|
- IconChevronLargeTop
|
|
275
276
|
- IconChevronLeft
|
|
277
|
+
- IconChevronLeftMedium
|
|
276
278
|
- IconChevronLeftSmall
|
|
277
279
|
- IconChevronRight
|
|
280
|
+
- IconChevronRightMedium
|
|
278
281
|
- IconChevronRightSmall
|
|
279
282
|
- IconChevronTop
|
|
283
|
+
- IconChevronTopMedium
|
|
280
284
|
- IconChevronTopSmall
|
|
281
285
|
- IconChevronTriangleDownSmall
|
|
282
286
|
- IconChevronTriangleUpSmall
|
package/filtered-icons.json
CHANGED
|
@@ -5334,6 +5334,20 @@
|
|
|
5334
5334
|
"packageName": "round-filled-radius-1-stroke-2",
|
|
5335
5335
|
"componentName": "IconChevronDoubleUp"
|
|
5336
5336
|
},
|
|
5337
|
+
{
|
|
5338
|
+
"category": "Arrows",
|
|
5339
|
+
"svg": "<path d=\"M17.2929 8.79289C17.6834 8.40237 18.3164 8.40237 18.707 8.79289C19.0975 9.18342 19.0975 9.81643 18.707 10.207L12.707 16.207C12.3164 16.5975 11.6834 16.5975 11.2929 16.207L5.29289 10.207C4.90237 9.81643 4.90237 9.18342 5.29289 8.79289C5.68342 8.40237 6.31643 8.40237 6.70696 8.79289L11.9999 14.0859L17.2929 8.79289Z\" fill=\"currentColor\"/>",
|
|
5340
|
+
"iconName": "chevron-down-medium",
|
|
5341
|
+
"variant": {
|
|
5342
|
+
"join": "round",
|
|
5343
|
+
"filled": "on",
|
|
5344
|
+
"radius": "1",
|
|
5345
|
+
"stroke": "2"
|
|
5346
|
+
},
|
|
5347
|
+
"createdAt": "2025-10-07T09:30:42.209306+00:00",
|
|
5348
|
+
"packageName": "round-filled-radius-1-stroke-2",
|
|
5349
|
+
"componentName": "IconChevronDownMedium"
|
|
5350
|
+
},
|
|
5337
5351
|
{
|
|
5338
5352
|
"category": "Arrows",
|
|
5339
5353
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 12.5859L15.2929 9.29301C15.6834 8.90248 16.3166 8.90248 16.7071 9.29301C17.0976 9.68353 17.0976 10.3167 16.7071 10.7072L13.2374 14.1769C12.554 14.8603 11.446 14.8603 10.7626 14.1769L7.29289 10.7072C6.90237 10.3167 6.90237 9.68353 7.29289 9.29301C7.68342 8.90248 8.31658 8.90248 8.70711 9.29301L12 12.5859Z\" fill=\"currentColor\"/>",
|
|
@@ -5446,6 +5460,20 @@
|
|
|
5446
5460
|
"packageName": "round-filled-radius-1-stroke-2",
|
|
5447
5461
|
"componentName": "IconChevronLeft"
|
|
5448
5462
|
},
|
|
5463
|
+
{
|
|
5464
|
+
"category": "Arrows",
|
|
5465
|
+
"svg": "<path d=\"M13.7929 5.29289C14.1834 4.90237 14.8164 4.90237 15.207 5.29289C15.5975 5.68342 15.5975 6.31643 15.207 6.70696L9.91399 11.9999L15.207 17.2929C15.5975 17.6834 15.5975 18.3164 15.207 18.707C14.8164 19.0975 14.1834 19.0975 13.7929 18.707L7.79289 12.707C7.40237 12.3164 7.40237 11.6834 7.79289 11.2929L13.7929 5.29289Z\" fill=\"currentColor\"/>",
|
|
5466
|
+
"iconName": "chevron-left-medium",
|
|
5467
|
+
"variant": {
|
|
5468
|
+
"join": "round",
|
|
5469
|
+
"filled": "on",
|
|
5470
|
+
"radius": "1",
|
|
5471
|
+
"stroke": "2"
|
|
5472
|
+
},
|
|
5473
|
+
"createdAt": "2025-10-07T09:30:42.209306+00:00",
|
|
5474
|
+
"packageName": "round-filled-radius-1-stroke-2",
|
|
5475
|
+
"componentName": "IconChevronLeftMedium"
|
|
5476
|
+
},
|
|
5449
5477
|
{
|
|
5450
5478
|
"category": "Arrows",
|
|
5451
5479
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3966 7.29289C14.006 6.90237 13.3729 6.90237 12.9823 7.29289L9.51268 10.7626C8.82926 11.446 8.82926 12.554 9.51268 13.2374L12.9823 16.7071C13.3729 17.0976 14.006 17.0976 14.3966 16.7071C14.7871 16.3166 14.7871 15.6834 14.3966 15.2929L11.1037 12L14.3966 8.70711C14.7871 8.31658 14.7871 7.68342 14.3966 7.29289Z\" fill=\"currentColor\"/>",
|
|
@@ -5474,6 +5502,20 @@
|
|
|
5474
5502
|
"packageName": "round-filled-radius-1-stroke-2",
|
|
5475
5503
|
"componentName": "IconChevronRight"
|
|
5476
5504
|
},
|
|
5505
|
+
{
|
|
5506
|
+
"category": "Arrows",
|
|
5507
|
+
"svg": "<path d=\"M8.79289 5.29289C9.18342 4.90237 9.81643 4.90237 10.207 5.29289L16.207 11.2929C16.5975 11.6834 16.5975 12.3164 16.207 12.707L10.207 18.707C9.81643 19.0975 9.18342 19.0975 8.79289 18.707C8.40237 18.3164 8.40237 17.6834 8.79289 17.2929L14.0859 11.9999L8.79289 6.70696C8.40237 6.31643 8.40237 5.68342 8.79289 5.29289Z\" fill=\"currentColor\"/>",
|
|
5508
|
+
"iconName": "chevron-right-medium",
|
|
5509
|
+
"variant": {
|
|
5510
|
+
"join": "round",
|
|
5511
|
+
"filled": "on",
|
|
5512
|
+
"radius": "1",
|
|
5513
|
+
"stroke": "2"
|
|
5514
|
+
},
|
|
5515
|
+
"createdAt": "2025-10-07T09:30:42.209306+00:00",
|
|
5516
|
+
"packageName": "round-filled-radius-1-stroke-2",
|
|
5517
|
+
"componentName": "IconChevronRightMedium"
|
|
5518
|
+
},
|
|
5477
5519
|
{
|
|
5478
5520
|
"category": "Arrows",
|
|
5479
5521
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.29289 7.29289C9.68342 6.90237 10.3166 6.90237 10.7071 7.29289L14.1768 10.7626C14.8602 11.446 14.8602 12.554 14.1768 13.2374L10.7071 16.7071C10.3166 17.0976 9.68342 17.0976 9.29289 16.7071C8.90237 16.3166 8.90237 15.6834 9.29289 15.2929L12.5858 12L9.29289 8.70711C8.90237 8.31658 8.90237 7.68342 9.29289 7.29289Z\" fill=\"currentColor\"/>",
|
|
@@ -5502,6 +5544,20 @@
|
|
|
5502
5544
|
"packageName": "round-filled-radius-1-stroke-2",
|
|
5503
5545
|
"componentName": "IconChevronTop"
|
|
5504
5546
|
},
|
|
5547
|
+
{
|
|
5548
|
+
"category": "Arrows",
|
|
5549
|
+
"svg": "<path d=\"M11.3691 7.72437C11.7618 7.40402 12.3408 7.42662 12.707 7.79273L18.707 13.7927C19.0975 14.1833 19.0975 14.8163 18.707 15.2068C18.3164 15.5973 17.6834 15.5973 17.2929 15.2068L11.9999 9.91383L6.70696 15.2068C6.31643 15.5973 5.68342 15.5973 5.29289 15.2068C4.90237 14.8163 4.90237 14.1833 5.29289 13.7927L11.2929 7.79273L11.3691 7.72437Z\" fill=\"currentColor\"/>",
|
|
5550
|
+
"iconName": "chevron-top-medium",
|
|
5551
|
+
"variant": {
|
|
5552
|
+
"join": "round",
|
|
5553
|
+
"filled": "on",
|
|
5554
|
+
"radius": "1",
|
|
5555
|
+
"stroke": "2"
|
|
5556
|
+
},
|
|
5557
|
+
"createdAt": "2025-10-07T09:30:42.209306+00:00",
|
|
5558
|
+
"packageName": "round-filled-radius-1-stroke-2",
|
|
5559
|
+
"componentName": "IconChevronTopMedium"
|
|
5560
|
+
},
|
|
5505
5561
|
{
|
|
5506
5562
|
"category": "Arrows",
|
|
5507
5563
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 11.4141L15.2929 14.707C15.6834 15.0975 16.3166 15.0975 16.7071 14.707C17.0976 14.3165 17.0976 13.6833 16.7071 13.2928L13.2374 9.82311C12.554 9.13969 11.446 9.13969 10.7626 9.82311L7.29289 13.2928C6.90237 13.6833 6.90237 14.3165 7.29289 14.707C7.68342 15.0975 8.31658 15.0975 8.70711 14.707L12 11.4141Z\" fill=\"currentColor\"/>",
|
|
@@ -7156,7 +7212,7 @@
|
|
|
7156
7212
|
},
|
|
7157
7213
|
{
|
|
7158
7214
|
"category": "Social Media & Brands",
|
|
7159
|
-
"svg": "<path
|
|
7215
|
+
"svg": "<path d=\"M20.8423 6.47053L12.4355 1.61692C12.1655 1.46103 11.8324 1.46103 11.5625 1.61692L3.1561 6.47053C2.92917 6.60156 2.78906 6.84386 2.78906 7.10633V16.8937C2.78906 17.1557 2.92917 17.3985 3.1561 17.5295L11.5629 22.3831C11.8328 22.539 12.166 22.539 12.4359 22.3831L20.8427 17.5295C21.0696 17.3985 21.2097 17.1561 21.2097 16.8937V7.10633C21.2097 6.84427 21.0696 6.60156 20.8427 6.47053H20.8423ZM20.3142 7.49863L12.1987 21.5551C12.1438 21.6498 11.999 21.6111 11.999 21.5014V12.2974C11.999 12.1135 11.9007 11.9433 11.7413 11.851L3.7706 7.2492C3.67588 7.19436 3.71456 7.04948 3.82427 7.04948H20.0553C20.2858 7.04948 20.4299 7.29932 20.3146 7.49904H20.3142V7.49863Z\" fill=\"currentColor\"/>",
|
|
7160
7216
|
"iconName": "cursor",
|
|
7161
7217
|
"variant": {
|
|
7162
7218
|
"join": "round",
|
package/icons/index.d.ts
CHANGED
|
@@ -380,6 +380,7 @@ export type CentralIconName =
|
|
|
380
380
|
| "IconChevronDoubleLeft"
|
|
381
381
|
| "IconChevronDoubleRight"
|
|
382
382
|
| "IconChevronDoubleUp"
|
|
383
|
+
| "IconChevronDownMedium"
|
|
383
384
|
| "IconChevronDownSmall"
|
|
384
385
|
| "IconChevronGrabberHorizontal"
|
|
385
386
|
| "IconChevronGrabberVertical"
|
|
@@ -388,10 +389,13 @@ export type CentralIconName =
|
|
|
388
389
|
| "IconChevronLargeRight"
|
|
389
390
|
| "IconChevronLargeTop"
|
|
390
391
|
| "IconChevronLeft"
|
|
392
|
+
| "IconChevronLeftMedium"
|
|
391
393
|
| "IconChevronLeftSmall"
|
|
392
394
|
| "IconChevronRight"
|
|
395
|
+
| "IconChevronRightMedium"
|
|
393
396
|
| "IconChevronRightSmall"
|
|
394
397
|
| "IconChevronTop"
|
|
398
|
+
| "IconChevronTopMedium"
|
|
395
399
|
| "IconChevronTopSmall"
|
|
396
400
|
| "IconChevronTriangleDownSmall"
|
|
397
401
|
| "IconChevronTriangleUpSmall"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-1-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"style": "round-filled-radius-1-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-1-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1540,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 35,
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
]
|
|
69
69
|
},
|
|
70
70
|
"Arrows": {
|
|
71
|
-
"count":
|
|
71
|
+
"count": 112,
|
|
72
72
|
"icons": [
|
|
73
73
|
"IconArrow",
|
|
74
74
|
"IconArrowBottomTop",
|
|
@@ -139,6 +139,7 @@
|
|
|
139
139
|
"IconChevronDoubleLeft",
|
|
140
140
|
"IconChevronDoubleRight",
|
|
141
141
|
"IconChevronDoubleUp",
|
|
142
|
+
"IconChevronDownMedium",
|
|
142
143
|
"IconChevronDownSmall",
|
|
143
144
|
"IconChevronGrabberHorizontal",
|
|
144
145
|
"IconChevronGrabberVertical",
|
|
@@ -147,10 +148,13 @@
|
|
|
147
148
|
"IconChevronLargeRight",
|
|
148
149
|
"IconChevronLargeTop",
|
|
149
150
|
"IconChevronLeft",
|
|
151
|
+
"IconChevronLeftMedium",
|
|
150
152
|
"IconChevronLeftSmall",
|
|
151
153
|
"IconChevronRight",
|
|
154
|
+
"IconChevronRightMedium",
|
|
152
155
|
"IconChevronRightSmall",
|
|
153
156
|
"IconChevronTop",
|
|
157
|
+
"IconChevronTopMedium",
|
|
154
158
|
"IconChevronTopSmall",
|
|
155
159
|
"IconChevronTriangleDownSmall",
|
|
156
160
|
"IconChevronTriangleUpSmall",
|
|
@@ -2107,6 +2111,7 @@
|
|
|
2107
2111
|
"IconChevronDoubleLeft": "chevron-double-left",
|
|
2108
2112
|
"IconChevronDoubleRight": "chevron-double-right",
|
|
2109
2113
|
"IconChevronDoubleUp": "chevron-double-up",
|
|
2114
|
+
"IconChevronDownMedium": "chevron-down-medium",
|
|
2110
2115
|
"IconChevronDownSmall": "chevron-down-small",
|
|
2111
2116
|
"IconChevronGrabberHorizontal": "chevron-grabber-horizontal",
|
|
2112
2117
|
"IconChevronGrabberVertical": "chevron-grabber-vertical",
|
|
@@ -2115,10 +2120,13 @@
|
|
|
2115
2120
|
"IconChevronLargeRight": "chevron-large-right, chev right, next",
|
|
2116
2121
|
"IconChevronLargeTop": "chevron-large-top, chev top, up",
|
|
2117
2122
|
"IconChevronLeft": "chevron-left",
|
|
2123
|
+
"IconChevronLeftMedium": "chevron-left-medium",
|
|
2118
2124
|
"IconChevronLeftSmall": "chevron-left-small",
|
|
2119
2125
|
"IconChevronRight": "chevron-right",
|
|
2126
|
+
"IconChevronRightMedium": "chevron-right-medium",
|
|
2120
2127
|
"IconChevronRightSmall": "chevron-right-small",
|
|
2121
2128
|
"IconChevronTop": "chevron-top",
|
|
2129
|
+
"IconChevronTopMedium": "chevron-top-medium",
|
|
2122
2130
|
"IconChevronTopSmall": "chevron-top-small",
|
|
2123
2131
|
"IconChevronTriangleDownSmall": "chevron-triangle-down-small, dropdown",
|
|
2124
2132
|
"IconChevronTriangleUpSmall": "chevron-triangle-up-small, dropdown",
|
package/index.d.ts
CHANGED
|
@@ -379,6 +379,7 @@ export { IconChevronDoubleDown, default as IconChevronDoubleDownDefault, } from
|
|
|
379
379
|
export { IconChevronDoubleLeft, default as IconChevronDoubleLeftDefault, } from "./IconChevronDoubleLeft";
|
|
380
380
|
export { IconChevronDoubleRight, default as IconChevronDoubleRightDefault, } from "./IconChevronDoubleRight";
|
|
381
381
|
export { IconChevronDoubleUp, default as IconChevronDoubleUpDefault, } from "./IconChevronDoubleUp";
|
|
382
|
+
export { IconChevronDownMedium, default as IconChevronDownMediumDefault, } from "./IconChevronDownMedium";
|
|
382
383
|
export { IconChevronDownSmall, default as IconChevronDownSmallDefault, } from "./IconChevronDownSmall";
|
|
383
384
|
export { IconChevronGrabberHorizontal, default as IconChevronGrabberHorizontalDefault, } from "./IconChevronGrabberHorizontal";
|
|
384
385
|
export { IconChevronGrabberVertical, default as IconChevronGrabberVerticalDefault, } from "./IconChevronGrabberVertical";
|
|
@@ -387,10 +388,13 @@ export { IconChevronLargeLeft, default as IconChevronLargeLeftDefault, } from ".
|
|
|
387
388
|
export { IconChevronLargeRight, default as IconChevronLargeRightDefault, } from "./IconChevronLargeRight";
|
|
388
389
|
export { IconChevronLargeTop, default as IconChevronLargeTopDefault, } from "./IconChevronLargeTop";
|
|
389
390
|
export { IconChevronLeft, default as IconChevronLeftDefault, } from "./IconChevronLeft";
|
|
391
|
+
export { IconChevronLeftMedium, default as IconChevronLeftMediumDefault, } from "./IconChevronLeftMedium";
|
|
390
392
|
export { IconChevronLeftSmall, default as IconChevronLeftSmallDefault, } from "./IconChevronLeftSmall";
|
|
391
393
|
export { IconChevronRight, default as IconChevronRightDefault, } from "./IconChevronRight";
|
|
394
|
+
export { IconChevronRightMedium, default as IconChevronRightMediumDefault, } from "./IconChevronRightMedium";
|
|
392
395
|
export { IconChevronRightSmall, default as IconChevronRightSmallDefault, } from "./IconChevronRightSmall";
|
|
393
396
|
export { IconChevronTop, default as IconChevronTopDefault, } from "./IconChevronTop";
|
|
397
|
+
export { IconChevronTopMedium, default as IconChevronTopMediumDefault, } from "./IconChevronTopMedium";
|
|
394
398
|
export { IconChevronTopSmall, default as IconChevronTopSmallDefault, } from "./IconChevronTopSmall";
|
|
395
399
|
export { IconChevronTriangleDownSmall, default as IconChevronTriangleDownSmallDefault, } from "./IconChevronTriangleDownSmall";
|
|
396
400
|
export { IconChevronTriangleUpSmall, default as IconChevronTriangleUpSmallDefault, } from "./IconChevronTriangleUpSmall";
|