@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.240 → 1.1.242
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/IconChevronTriangleDownMedium/index.d.ts +4 -0
- package/IconChevronTriangleDownMedium/index.js +2 -0
- package/IconChevronTriangleDownMedium/index.js.map +1 -0
- package/IconChevronTriangleDownMedium/index.mjs +2 -0
- package/IconChevronTriangleDownMedium/index.mjs.map +1 -0
- package/IconChevronTriangleLeftMedium/index.d.ts +4 -0
- package/IconChevronTriangleLeftMedium/index.js +2 -0
- package/IconChevronTriangleLeftMedium/index.js.map +1 -0
- package/IconChevronTriangleLeftMedium/index.mjs +2 -0
- package/IconChevronTriangleLeftMedium/index.mjs.map +1 -0
- package/IconChevronTriangleRightMedium/index.d.ts +4 -0
- package/IconChevronTriangleRightMedium/index.js +2 -0
- package/IconChevronTriangleRightMedium/index.js.map +1 -0
- package/IconChevronTriangleRightMedium/index.mjs +2 -0
- package/IconChevronTriangleRightMedium/index.mjs.map +1 -0
- package/IconChevronTriangleUpMedium/index.d.ts +4 -0
- package/IconChevronTriangleUpMedium/index.js +2 -0
- package/IconChevronTriangleUpMedium/index.js.map +1 -0
- package/IconChevronTriangleUpMedium/index.mjs +2 -0
- package/IconChevronTriangleUpMedium/index.mjs.map +1 -0
- package/IconReduceMotion/index.d.ts +4 -0
- package/IconReduceMotion/index.js +2 -0
- package/IconReduceMotion/index.js.map +1 -0
- package/IconReduceMotion/index.mjs +2 -0
- package/IconReduceMotion/index.mjs.map +1 -0
- package/IconVoiceover/index.d.ts +4 -0
- package/IconVoiceover/index.js +2 -0
- package/IconVoiceover/index.js.map +1 -0
- package/IconVoiceover/index.mjs +2 -0
- package/IconVoiceover/index.mjs.map +1 -0
- package/README.md +6 -0
- package/filtered-icons.json +86 -2
- package/icons/index.d.ts +6 -0
- package/icons-index.json +19 -7
- package/index.d.ts +6 -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/skills/central-icons-react-native/SKILL.md +9 -3
- package/tsx-icons.json +44 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!x.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(a=B(o,n))||a.enumerable});return r};var l=(r,o,e)=>(e=r!=null?u(g(r)):{},C(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>C(t({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleDownMedium:()=>i,default:()=>h});module.exports=v(d);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.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:"M15.8825 9C16.9467 9 17.524 10.2452 16.8366 11.0576L12.9538 15.6465C12.4544 16.2362 11.5448 16.2363 11.0456 15.6465L7.16276 11.0576C6.47564 10.2453 7.05295 9.00027 8.11686 9H15.8825Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronTriangleDownMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleDownMedium/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 IconChevronTriangleDownMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.8825 9C16.9467 9 17.524 10.2452 16.8366 11.0576L12.9538 15.6465C12.4544 16.2362 11.5448 16.2363 11.0456 15.6465L7.16276 11.0576C6.47564 10.2453 7.05295 9.00027 8.11686 9H15.8825Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleDownMedium;\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,mCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTriangleDownMedium_exports","__export","IconChevronTriangleDownMedium","IconChevronTriangleDownMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTriangleDownMedium","props","React","CentralIconBase","IconChevronTriangleDownMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import n from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...t})=>p.createElement(a,{...t,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 C}from"react-native-svg";var l=o=>n.createElement(e,{...o},n.createElement(C,{d:"M15.8825 9C16.9467 9 17.524 10.2452 16.8366 11.0576L12.9538 15.6465C12.4544 16.2362 11.5448 16.2363 11.0456 15.6465L7.16276 11.0576C6.47564 10.2453 7.05295 9.00027 8.11686 9H15.8825Z",fill:"currentColor"})),x=l;export{l as IconChevronTriangleDownMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleDownMedium/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 IconChevronTriangleDownMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.8825 9C16.9467 9 17.524 10.2452 16.8366 11.0576L12.9538 15.6465C12.4544 16.2362 11.5448 16.2363 11.0456 15.6465L7.16276 11.0576C6.47564 10.2453 7.05295 9.00027 8.11686 9H15.8825Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleDownMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleDownMedium","props","React","CentralIconBase","IconChevronTriangleDownMedium_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 e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var l=(r,o,e)=>(e=r!=null?u(g(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>C(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleLeftMedium:()=>i,default:()=>h});module.exports=v(d);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),f=({children:r,size:o=24,...e})=>m.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:"M12.9423 7.16228C13.7546 6.47514 14.9997 7.05247 14.9999 8.11638V15.882C14.9999 16.9462 13.7547 17.5235 12.9423 16.8361L8.35346 12.9533C7.76376 12.454 7.76363 11.5443 8.35346 11.0451L12.9423 7.16228Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronTriangleLeftMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleLeftMedium/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 IconChevronTriangleLeftMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.9423 7.16228C13.7546 6.47514 14.9997 7.05247 14.9999 8.11638V15.882C14.9999 16.9462 13.7547 17.5235 12.9423 16.8361L8.35346 12.9533C7.76376 12.454 7.76363 11.5443 8.35346 11.0451L12.9423 7.16228Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleLeftMedium;\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,mCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,0MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTriangleLeftMedium_exports","__export","IconChevronTriangleLeftMedium","IconChevronTriangleLeftMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTriangleLeftMedium","props","React","CentralIconBase","IconChevronTriangleLeftMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...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 C}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(C,{d:"M12.9423 7.16228C13.7546 6.47514 14.9997 7.05247 14.9999 8.11638V15.882C14.9999 16.9462 13.7547 17.5235 12.9423 16.8361L8.35346 12.9533C7.76376 12.454 7.76363 11.5443 8.35346 11.0451L12.9423 7.16228Z",fill:"currentColor"})),x=l;export{l as IconChevronTriangleLeftMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleLeftMedium/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 IconChevronTriangleLeftMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.9423 7.16228C13.7546 6.47514 14.9997 7.05247 14.9999 8.11638V15.882C14.9999 16.9462 13.7547 17.5235 12.9423 16.8361L8.35346 12.9533C7.76376 12.454 7.76363 11.5443 8.35346 11.0451L12.9423 7.16228Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleLeftMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,0MACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleLeftMedium","props","React","CentralIconBase","IconChevronTriangleLeftMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var g=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=u(o,t))||a.enumerable});return r};var l=(r,o,e)=>(e=r!=null?g(I(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>C(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleRightMedium:()=>i,default:()=>v});module.exports=h(d);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.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:"M9 8.11637C9.00027 7.05246 10.2453 6.47516 11.0576 7.16227L15.6465 11.0451C16.2363 11.5443 16.2362 12.454 15.6465 12.9533L11.0576 16.8361C10.2452 17.5235 9 16.9462 9 15.882V8.11637Z",fill:"currentColor"})),v=i;0&&(module.exports={IconChevronTriangleRightMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleRightMedium/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 IconChevronTriangleRightMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9 8.11637C9.00027 7.05246 10.2453 6.47516 11.0576 7.16227L15.6465 11.0451C16.2363 11.5443 16.2362 12.454 15.6465 12.9533L11.0576 16.8361C10.2452 17.5235 9 16.9462 9 15.882V8.11637Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleRightMedium;\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,oCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTriangleRightMedium_exports","__export","IconChevronTriangleRightMedium","IconChevronTriangleRightMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTriangleRightMedium","props","React","CentralIconBase","IconChevronTriangleRightMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...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 C}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(C,{d:"M9 8.11637C9.00027 7.05246 10.2453 6.47516 11.0576 7.16227L15.6465 11.0451C16.2363 11.5443 16.2362 12.454 15.6465 12.9533L11.0576 16.8361C10.2452 17.5235 9 16.9462 9 15.882V8.11637Z",fill:"currentColor"})),x=l;export{l as IconChevronTriangleRightMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleRightMedium/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 IconChevronTriangleRightMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9 8.11637C9.00027 7.05246 10.2453 6.47516 11.0576 7.16227L15.6465 11.0451C16.2363 11.5443 16.2362 12.454 15.6465 12.9533L11.0576 16.8361C10.2452 17.5235 9 16.9462 9 15.882V8.11637Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleRightMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleRightMedium","props","React","CentralIconBase","IconChevronTriangleRightMedium_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 e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var l=(r,o,e)=>(e=r!=null?u(g(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>C(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconChevronTriangleUpMedium:()=>i,default:()=>h});module.exports=v(d);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.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.0456 8.35346C11.5448 7.76363 12.4545 7.76376 12.9538 8.35346L16.8366 12.9423C17.524 13.7547 16.9467 14.9999 15.8825 14.9999H8.11687C7.05296 14.9997 6.47563 13.7546 7.16277 12.9423L11.0456 8.35346Z",fill:"currentColor"})),h=i;0&&(module.exports={IconChevronTriangleUpMedium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleUpMedium/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 IconChevronTriangleUpMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.0456 8.35346C11.5448 7.76363 12.4545 7.76376 12.9538 8.35346L16.8366 12.9423C17.524 13.7547 16.9467 14.9999 15.8825 14.9999H8.11687C7.05296 14.9997 6.47563 13.7546 7.16277 12.9423L11.0456 8.35346Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleUpMedium;\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,iCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChevronTriangleUpMedium_exports","__export","IconChevronTriangleUpMedium","IconChevronTriangleUpMedium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChevronTriangleUpMedium","props","React","CentralIconBase","IconChevronTriangleUpMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...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 C}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(C,{d:"M11.0456 8.35346C11.5448 7.76363 12.4545 7.76376 12.9538 8.35346L16.8366 12.9423C17.524 13.7547 16.9467 14.9999 15.8825 14.9999H8.11687C7.05296 14.9997 6.47563 13.7546 7.16277 12.9423L11.0456 8.35346Z",fill:"currentColor"})),x=l;export{l as IconChevronTriangleUpMedium,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChevronTriangleUpMedium/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 IconChevronTriangleUpMedium: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.0456 8.35346C11.5448 7.76363 12.4545 7.76376 12.9538 8.35346L16.8366 12.9423C17.524 13.7547 16.9467 14.9999 15.8825 14.9999H8.11687C7.05296 14.9997 6.47563 13.7546 7.16277 12.9423L11.0456 8.35346Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTriangleUpMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2MACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChevronTriangleUpMedium","props","React","CentralIconBase","IconChevronTriangleUpMedium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var t=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var s=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(o,l)=>{for(var n in l)t(o,n,{get:l[n],enumerable:!0})},i=(o,l,n,f)=>{if(l&&typeof l=="object"||typeof l=="function")for(let e of s(l))!I.call(o,e)&&e!==n&&t(o,e,{get:()=>l[e],enumerable:!(f=c(l,e))||f.enumerable});return o};var u=(o,l,n)=>(n=o!=null?m(B(o)):{},i(l||!o||!o.__esModule?t(n,"default",{value:o,enumerable:!0}):n,o)),x=o=>i(t({},"__esModule",{value:!0}),o);var g={};v(g,{IconReduceMotion:()=>Z,default:()=>P});module.exports=x(g);var C=u(require("react"));var d=u(require("react")),p=require("react-native-svg"),M=({children:o,size:l=24,...n})=>d.default.createElement(p.Svg,{...n,width:typeof l=="number"?`${l}px`:l,height:typeof l=="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},o);var r=require("react-native-svg"),Z=o=>C.default.createElement(M,{...o},C.default.createElement(r.Path,{d:"M9.00488 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z",fill:"currentColor"}),C.default.createElement(r.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z",fill:"currentColor"}),C.default.createElement(r.Path,{d:"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z",fill:"currentColor"})),P=Z;0&&(module.exports={IconReduceMotion});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconReduceMotion/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 IconReduceMotion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.00488 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconReduceMotion;\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,sBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ySACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sSACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,4qBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sSACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconReduceMotion_exports","__export","IconReduceMotion","IconReduceMotion_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconReduceMotion","props","React","CentralIconBase","IconReduceMotion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import C from"react";import t from"react";import{Svg as f}from"react-native-svg";var n=({children:l,size:o=24,...e})=>t.createElement(f,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},l);import{Path as r}from"react-native-svg";var i=l=>C.createElement(n,{...l},C.createElement(r,{d:"M9.00488 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z",fill:"currentColor"}),C.createElement(r,{d:"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z",fill:"currentColor"}),C.createElement(r,{d:"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z",fill:"currentColor"}),C.createElement(r,{d:"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z",fill:"currentColor"}),C.createElement(r,{d:"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z",fill:"currentColor"}),C.createElement(r,{d:"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z",fill:"currentColor"}),C.createElement(r,{d:"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z",fill:"currentColor"}),C.createElement(r,{d:"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z",fill:"currentColor"}),C.createElement(r,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z",fill:"currentColor"}),C.createElement(r,{d:"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z",fill:"currentColor"}),C.createElement(r,{d:"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z",fill:"currentColor"}),C.createElement(r,{d:"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z",fill:"currentColor"}),C.createElement(r,{d:"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z",fill:"currentColor"}),C.createElement(r,{d:"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z",fill:"currentColor"}),C.createElement(r,{d:"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z",fill:"currentColor"}),C.createElement(r,{d:"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z",fill:"currentColor"}),C.createElement(r,{d:"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z",fill:"currentColor"}),C.createElement(r,{d:"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z",fill:"currentColor"}),C.createElement(r,{d:"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z",fill:"currentColor"})),I=i;export{i as IconReduceMotion,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconReduceMotion/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 IconReduceMotion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.00488 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconReduceMotion;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ySACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sSACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,4qBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sSACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sMACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconReduceMotion","props","React","CentralIconBase","IconReduceMotion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var t=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let C of B(r))!d.call(o,C)&&C!==e&&t(o,C,{get:()=>r[C],enumerable:!(p=v(r,C))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(t({},"__esModule",{value:!0}),o);var h={};x(h,{IconVoiceover:()=>i,default:()=>g});module.exports=P(h);var n=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>n.default.createElement(s,{...o},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 7.5C11.6852 7.5 11.389 7.64858 11.2002 7.90039L10.2998 9.09961C10.111 9.35142 9.81476 9.5 9.5 9.5H9C8.44772 9.5 8 9.94772 8 10.5V13.5C8 14.0523 8.44772 14.5 9 14.5H9.5C9.81476 14.5 10.111 14.6486 10.2998 14.9004L11.2002 16.0996C11.389 16.3514 11.6852 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V8.5C13 7.94772 12.5523 7.5 12 7.5ZM14.7773 9.58398C14.5476 9.43081 14.2372 9.49289 14.084 9.72266C13.9308 9.95242 13.9929 10.2628 14.2227 10.416C15.4258 11.2181 15.4258 12.7819 14.2227 13.584C13.9929 13.7372 13.9308 14.0476 14.084 14.2773C14.2372 14.5071 14.5476 14.5692 14.7773 14.416C16.5742 13.2181 16.5742 10.7819 14.7773 9.58398Z",fill:"currentColor"})),g=i;0&&(module.exports={IconVoiceover});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceover/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 IconVoiceover: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 7.5C11.6852 7.5 11.389 7.64858 11.2002 7.90039L10.2998 9.09961C10.111 9.35142 9.81476 9.5 9.5 9.5H9C8.44772 9.5 8 9.94772 8 10.5V13.5C8 14.0523 8.44772 14.5 9 14.5H9.5C9.81476 14.5 10.111 14.6486 10.2998 14.9004L11.2002 16.0996C11.389 16.3514 11.6852 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V8.5C13 7.94772 12.5523 7.5 12 7.5ZM14.7773 9.58398C14.5476 9.43081 14.2372 9.49289 14.084 9.72266C13.9308 9.95242 13.9929 10.2628 14.2227 10.416C15.4258 11.2181 15.4258 12.7819 14.2227 13.584C13.9929 13.7372 13.9308 14.0476 14.084 14.2773C14.2372 14.5071 14.5476 14.5692 14.7773 14.416C16.5742 13.2181 16.5742 10.7819 14.7773 9.58398Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceover;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6uBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconVoiceover_exports","__export","IconVoiceover","IconVoiceover_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceover","props","React","CentralIconBase","IconVoiceover_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import C from"react";import n from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>n.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>C.createElement(e,{...r},C.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 7.5C11.6852 7.5 11.389 7.64858 11.2002 7.90039L10.2998 9.09961C10.111 9.35142 9.81476 9.5 9.5 9.5H9C8.44772 9.5 8 9.94772 8 10.5V13.5C8 14.0523 8.44772 14.5 9 14.5H9.5C9.81476 14.5 10.111 14.6486 10.2998 14.9004L11.2002 16.0996C11.389 16.3514 11.6852 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V8.5C13 7.94772 12.5523 7.5 12 7.5ZM14.7773 9.58398C14.5476 9.43081 14.2372 9.49289 14.084 9.72266C13.9308 9.95242 13.9929 10.2628 14.2227 10.416C15.4258 11.2181 15.4258 12.7819 14.2227 13.584C13.9929 13.7372 13.9308 14.0476 14.084 14.2773C14.2372 14.5071 14.5476 14.5692 14.7773 14.416C16.5742 13.2181 16.5742 10.7819 14.7773 9.58398Z",fill:"currentColor"})),d=a;export{a as IconVoiceover,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceover/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 IconVoiceover: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 7.5C11.6852 7.5 11.389 7.64858 11.2002 7.90039L10.2998 9.09961C10.111 9.35142 9.81476 9.5 9.5 9.5H9C8.44772 9.5 8 9.94772 8 10.5V13.5C8 14.0523 8.44772 14.5 9 14.5H9.5C9.81476 14.5 10.111 14.6486 10.2998 14.9004L11.2002 16.0996C11.389 16.3514 11.6852 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V8.5C13 7.94772 12.5523 7.5 12 7.5ZM14.7773 9.58398C14.5476 9.43081 14.2372 9.49289 14.084 9.72266C13.9308 9.95242 13.9929 10.2628 14.2227 10.416C15.4258 11.2181 15.4258 12.7819 14.2227 13.584C13.9929 13.7372 13.9308 14.0476 14.084 14.2773C14.2372 14.5071 14.5476 14.5692 14.7773 14.416C16.5742 13.2181 16.5742 10.7819 14.7773 9.58398Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceover;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,6uBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceover","props","React","CentralIconBase","IconVoiceover_default"]}
|
package/README.md
CHANGED
|
@@ -246,8 +246,10 @@ Below is a complete list of available icons:
|
|
|
246
246
|
- IconEyeSlash
|
|
247
247
|
- IconEyeSlash2
|
|
248
248
|
- IconImageAltText
|
|
249
|
+
- IconReduceMotion
|
|
249
250
|
- IconSquareLinesBottom
|
|
250
251
|
- IconVoiceControl
|
|
252
|
+
- IconVoiceover
|
|
251
253
|
|
|
252
254
|
### Arrows
|
|
253
255
|
|
|
@@ -346,7 +348,11 @@ Below is a complete list of available icons:
|
|
|
346
348
|
- IconChevronTop
|
|
347
349
|
- IconChevronTopMedium
|
|
348
350
|
- IconChevronTopSmall
|
|
351
|
+
- IconChevronTriangleDownMedium
|
|
349
352
|
- IconChevronTriangleDownSmall
|
|
353
|
+
- IconChevronTriangleLeftMedium
|
|
354
|
+
- IconChevronTriangleRightMedium
|
|
355
|
+
- IconChevronTriangleUpMedium
|
|
350
356
|
- IconChevronTriangleUpSmall
|
|
351
357
|
- IconCollaborationPointerLeft
|
|
352
358
|
- IconCollaborationPointerRight
|
package/filtered-icons.json
CHANGED
|
@@ -6706,10 +6706,24 @@
|
|
|
6706
6706
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
6707
6707
|
"componentName": "IconChevronTopSmall"
|
|
6708
6708
|
},
|
|
6709
|
+
{
|
|
6710
|
+
"category": "Arrows",
|
|
6711
|
+
"svg": "<path d=\"M15.8825 9C16.9467 9 17.524 10.2452 16.8366 11.0576L12.9538 15.6465C12.4544 16.2362 11.5448 16.2363 11.0456 15.6465L7.16276 11.0576C6.47564 10.2453 7.05295 9.00027 8.11686 9H15.8825Z\" fill=\"currentColor\"/>",
|
|
6712
|
+
"iconName": "chevron-triangle-down-medium, dropdown, caret",
|
|
6713
|
+
"variant": {
|
|
6714
|
+
"join": "round",
|
|
6715
|
+
"filled": "on",
|
|
6716
|
+
"radius": "2",
|
|
6717
|
+
"stroke": "1"
|
|
6718
|
+
},
|
|
6719
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6720
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
6721
|
+
"componentName": "IconChevronTriangleDownMedium"
|
|
6722
|
+
},
|
|
6709
6723
|
{
|
|
6710
6724
|
"category": "Arrows",
|
|
6711
6725
|
"svg": "<path d=\"M10.0869 10.5C9.23254 10.5 8.77163 11.5021 9.32764 12.1508L11.2405 14.3825C11.6396 14.8481 12.3599 14.8481 12.759 14.3825L14.6719 12.1508C15.2279 11.5021 14.767 10.5 13.9127 10.5H10.0869Z\" fill=\"currentColor\"/>",
|
|
6712
|
-
"iconName": "chevron-triangle-down-small, dropdown",
|
|
6726
|
+
"iconName": "chevron-triangle-down-small, dropdown, caret",
|
|
6713
6727
|
"variant": {
|
|
6714
6728
|
"join": "round",
|
|
6715
6729
|
"filled": "on",
|
|
@@ -6720,10 +6734,52 @@
|
|
|
6720
6734
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
6721
6735
|
"componentName": "IconChevronTriangleDownSmall"
|
|
6722
6736
|
},
|
|
6737
|
+
{
|
|
6738
|
+
"category": "Arrows",
|
|
6739
|
+
"svg": "<path d=\"M12.9423 7.16228C13.7546 6.47514 14.9997 7.05247 14.9999 8.11638V15.882C14.9999 16.9462 13.7547 17.5235 12.9423 16.8361L8.35346 12.9533C7.76376 12.454 7.76363 11.5443 8.35346 11.0451L12.9423 7.16228Z\" fill=\"currentColor\"/>",
|
|
6740
|
+
"iconName": "chevron-triangle-left-medium, dropdown, caret",
|
|
6741
|
+
"variant": {
|
|
6742
|
+
"join": "round",
|
|
6743
|
+
"filled": "on",
|
|
6744
|
+
"radius": "2",
|
|
6745
|
+
"stroke": "1"
|
|
6746
|
+
},
|
|
6747
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6748
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
6749
|
+
"componentName": "IconChevronTriangleLeftMedium"
|
|
6750
|
+
},
|
|
6751
|
+
{
|
|
6752
|
+
"category": "Arrows",
|
|
6753
|
+
"svg": "<path d=\"M9 8.11637C9.00027 7.05246 10.2453 6.47516 11.0576 7.16227L15.6465 11.0451C16.2363 11.5443 16.2362 12.454 15.6465 12.9533L11.0576 16.8361C10.2452 17.5235 9 16.9462 9 15.882V8.11637Z\" fill=\"currentColor\"/>",
|
|
6754
|
+
"iconName": "chevron-triangle-right-medium, dropdown, caret",
|
|
6755
|
+
"variant": {
|
|
6756
|
+
"join": "round",
|
|
6757
|
+
"filled": "on",
|
|
6758
|
+
"radius": "2",
|
|
6759
|
+
"stroke": "1"
|
|
6760
|
+
},
|
|
6761
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6762
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
6763
|
+
"componentName": "IconChevronTriangleRightMedium"
|
|
6764
|
+
},
|
|
6765
|
+
{
|
|
6766
|
+
"category": "Arrows",
|
|
6767
|
+
"svg": "<path d=\"M11.0456 8.35346C11.5448 7.76363 12.4545 7.76376 12.9538 8.35346L16.8366 12.9423C17.524 13.7547 16.9467 14.9999 15.8825 14.9999H8.11687C7.05296 14.9997 6.47563 13.7546 7.16277 12.9423L11.0456 8.35346Z\" fill=\"currentColor\"/>",
|
|
6768
|
+
"iconName": "chevron-triangle-up-medium, dropdown, caret",
|
|
6769
|
+
"variant": {
|
|
6770
|
+
"join": "round",
|
|
6771
|
+
"filled": "on",
|
|
6772
|
+
"radius": "2",
|
|
6773
|
+
"stroke": "1"
|
|
6774
|
+
},
|
|
6775
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
6776
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
6777
|
+
"componentName": "IconChevronTriangleUpMedium"
|
|
6778
|
+
},
|
|
6723
6779
|
{
|
|
6724
6780
|
"category": "Arrows",
|
|
6725
6781
|
"svg": "<path d=\"M10.0869 13.5003C9.23254 13.5003 8.77163 12.4981 9.32764 11.8495L11.2405 9.61776C11.6396 9.15215 12.3599 9.15215 12.759 9.61776L14.6719 11.8495C15.2279 12.4981 14.767 13.5003 13.9127 13.5003H10.0869Z\" fill=\"currentColor\"/>",
|
|
6726
|
-
"iconName": "chevron-triangle-up-small, dropdown",
|
|
6782
|
+
"iconName": "chevron-triangle-up-small, dropdown, caret",
|
|
6727
6783
|
"variant": {
|
|
6728
6784
|
"join": "round",
|
|
6729
6785
|
"filled": "on",
|
|
@@ -20692,6 +20748,20 @@
|
|
|
20692
20748
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
20693
20749
|
"componentName": "IconRedirectArrow"
|
|
20694
20750
|
},
|
|
20751
|
+
{
|
|
20752
|
+
"category": "Accessibility",
|
|
20753
|
+
"svg": "<path d=\"M9.00488 19C9.28081 19.0001 9.50471 19.224 9.50488 19.5C9.50489 19.776 9.28092 19.9998 9.00488 20H8.99512C8.71908 19.9998 8.49511 19.776 8.49512 19.5C8.49529 19.224 8.71919 19.0001 8.99512 19H9.00488Z\" fill=\"currentColor\"/><path d=\"M13.1182 17.6611C13.3412 17.4987 13.6538 17.5476 13.8164 17.7705C13.979 17.9937 13.9302 18.3071 13.707 18.4697C13.7044 18.4716 13.7019 18.4737 13.6992 18.4756C13.4759 18.6379 13.1624 18.5885 13 18.3652C12.8376 18.1419 12.888 17.8284 13.1113 17.666C13.1135 17.6644 13.116 17.6627 13.1182 17.6611Z\" fill=\"currentColor\"/><path d=\"M14.666 16.1113C14.8284 15.888 15.1419 15.8376 15.3652 16C15.5885 16.1624 15.6379 16.4759 15.4756 16.6992C15.4737 16.7019 15.4716 16.7044 15.4697 16.707C15.3071 16.9302 14.9937 16.979 14.7705 16.8164C14.5476 16.6538 14.4987 16.3412 14.6611 16.1182C14.6627 16.116 14.6644 16.1135 14.666 16.1113Z\" fill=\"currentColor\"/><path d=\"M15.6602 14.1602C15.7452 13.8976 16.0275 13.7531 16.29 13.8379C16.5526 13.923 16.6971 14.2052 16.6123 14.4678C16.6113 14.471 16.6094 14.4744 16.6084 14.4775C16.5229 14.7401 16.2411 14.8842 15.9785 14.7988C15.7159 14.7134 15.5728 14.4306 15.6582 14.168C15.659 14.1654 15.6593 14.1627 15.6602 14.1602Z\" fill=\"currentColor\"/><path d=\"M16.5 11.4951C16.776 11.4951 16.9998 11.7191 17 11.9951V12.0049C16.9998 12.2809 16.776 12.5049 16.5 12.5049C16.224 12.5047 16.0001 12.2808 16 12.0049V11.9951C16.0001 11.7192 16.224 11.4953 16.5 11.4951Z\" fill=\"currentColor\"/><path d=\"M15.9785 9.20117C16.2411 9.11576 16.5229 9.25991 16.6084 9.52246C16.6094 9.52564 16.6113 9.52905 16.6123 9.53223C16.6971 9.79481 16.5526 10.077 16.29 10.1621C16.0275 10.2469 15.7452 10.1024 15.6602 9.83984C15.6593 9.8373 15.659 9.83458 15.6582 9.83203C15.5728 9.56944 15.7159 9.28662 15.9785 9.20117Z\" fill=\"currentColor\"/><path d=\"M14.7705 7.18359C14.9937 7.02096 15.3071 7.0698 15.4697 7.29297C15.4716 7.2956 15.4737 7.29815 15.4756 7.30078C15.6379 7.52413 15.5885 7.83763 15.3652 8C15.1419 8.16235 14.8284 8.11205 14.666 7.88867C14.6644 7.88647 14.6627 7.88404 14.6611 7.88184C14.4987 7.65877 14.5476 7.34624 14.7705 7.18359Z\" fill=\"currentColor\"/><path d=\"M13 5.63477C13.1624 5.41146 13.4759 5.36208 13.6992 5.52441C13.7019 5.52633 13.7044 5.52836 13.707 5.53027C13.9302 5.69291 13.979 6.00632 13.8164 6.22949C13.6538 6.45235 13.3412 6.50126 13.1182 6.33887C13.116 6.33726 13.1135 6.33559 13.1113 6.33398C12.888 6.17163 12.8376 5.85814 13 5.63477Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 4C19.4183 4 23 7.58172 23 12C23 16.4183 19.4183 20 15 20C13.855 20 12.7671 19.7575 11.7822 19.3242C11.7279 19.4541 11.6219 19.5614 11.4775 19.6084C11.4744 19.6094 11.471 19.6113 11.4678 19.6123C11.2052 19.6971 10.923 19.5526 10.8379 19.29C10.79 19.1418 10.8162 18.988 10.8945 18.8662C8.56196 17.4685 7 14.9171 7 12C7 9.0827 8.56172 6.53046 10.8945 5.13281C10.8166 5.01116 10.7901 4.85792 10.8379 4.70996C10.923 4.4474 11.2052 4.30286 11.4678 4.3877C11.471 4.38873 11.4744 4.39057 11.4775 4.3916C11.6216 4.43848 11.7278 4.54534 11.7822 4.6748C12.767 4.2416 13.8552 4 15 4ZM15 5C11.134 5 8 8.13401 8 12C8 15.866 11.134 19 15 19C18.866 19 22 15.866 22 12C22 8.13401 18.866 5 15 5Z\" fill=\"currentColor\"/><path d=\"M6.20117 18.9785C6.28662 18.7159 6.56944 18.5728 6.83203 18.6582C6.83458 18.659 6.8373 18.6593 6.83984 18.6602C7.1024 18.7452 7.24694 19.0275 7.16211 19.29C7.07703 19.5526 6.79481 19.6971 6.53223 19.6123C6.52905 19.6113 6.52564 19.6094 6.52246 19.6084C6.25991 19.5229 6.11576 19.2411 6.20117 18.9785Z\" fill=\"currentColor\"/><path d=\"M4.18359 17.7705C4.34624 17.5476 4.65877 17.4987 4.88184 17.6611C4.88404 17.6627 4.88647 17.6644 4.88867 17.666C5.11205 17.8284 5.16235 18.1419 5 18.3652C4.83763 18.5885 4.52413 18.6379 4.30078 18.4756C4.29815 18.4737 4.2956 18.4716 4.29297 18.4697C4.0698 18.3071 4.02096 17.9937 4.18359 17.7705Z\" fill=\"currentColor\"/><path d=\"M2.63477 16C2.85814 15.8376 3.17163 15.888 3.33398 16.1113C3.33558 16.1135 3.33726 16.116 3.33887 16.1182C3.50126 16.3412 3.45235 16.6538 3.22949 16.8164C3.00632 16.979 2.69291 16.9302 2.53027 16.707C2.52836 16.7044 2.52633 16.7019 2.52441 16.6992C2.36208 16.4759 2.41146 16.1624 2.63477 16Z\" fill=\"currentColor\"/><path d=\"M1.70996 13.8379C1.97254 13.7531 2.25477 13.8976 2.33984 14.1602C2.34067 14.1627 2.34097 14.1654 2.3418 14.168C2.42725 14.4306 2.28407 14.7134 2.02148 14.7988C1.75892 14.8842 1.47706 14.7401 1.3916 14.4775C1.39057 14.4744 1.38873 14.471 1.3877 14.4678C1.30286 14.2052 1.4474 13.923 1.70996 13.8379Z\" fill=\"currentColor\"/><path d=\"M1.5 11.4951C1.77599 11.4953 1.99992 11.7192 2 11.9951V12.0049C1.99992 12.2808 1.77599 12.5047 1.5 12.5049C1.224 12.5049 1.00017 12.2809 1 12.0049V11.9951C1.00017 11.7191 1.224 11.4951 1.5 11.4951Z\" fill=\"currentColor\"/><path d=\"M1.3916 9.52246C1.47706 9.25991 1.75892 9.11576 2.02148 9.20117C2.28407 9.28662 2.42725 9.56944 2.3418 9.83203C2.34097 9.83458 2.34067 9.8373 2.33984 9.83984C2.25477 10.1024 1.97254 10.2469 1.70996 10.1621C1.4474 10.077 1.30286 9.79481 1.3877 9.53223C1.38873 9.52905 1.39057 9.52564 1.3916 9.52246Z\" fill=\"currentColor\"/><path d=\"M2.53027 7.29297C2.69291 7.0698 3.00632 7.02096 3.22949 7.18359C3.45235 7.34624 3.50126 7.65877 3.33887 7.88184C3.33726 7.88404 3.33559 7.88647 3.33398 7.88867C3.17163 8.11205 2.85814 8.16235 2.63477 8C2.41146 7.83763 2.36208 7.52413 2.52441 7.30078C2.52633 7.29815 2.52836 7.2956 2.53027 7.29297Z\" fill=\"currentColor\"/><path d=\"M4.30078 5.52441C4.52413 5.36208 4.83763 5.41146 5 5.63477C5.16235 5.85814 5.11205 6.17163 4.88867 6.33398C4.88647 6.33558 4.88404 6.33726 4.88184 6.33887C4.65877 6.50126 4.34624 6.45235 4.18359 6.22949C4.02096 6.00632 4.0698 5.69291 4.29297 5.53027C4.2956 5.52836 4.29815 5.52633 4.30078 5.52441Z\" fill=\"currentColor\"/><path d=\"M6.53223 4.3877C6.79481 4.30286 7.07703 4.4474 7.16211 4.70996C7.24694 4.97254 7.1024 5.25477 6.83984 5.33984C6.8373 5.34067 6.83458 5.34097 6.83203 5.3418C6.56944 5.42725 6.28662 5.28407 6.20117 5.02148C6.11576 4.75892 6.25991 4.47706 6.52246 4.3916C6.52564 4.39057 6.52905 4.38873 6.53223 4.3877Z\" fill=\"currentColor\"/><path d=\"M9.00488 4C9.28092 4.00017 9.50489 4.224 9.50488 4.5C9.50471 4.77599 9.28081 4.99992 9.00488 5H8.99512C8.71919 4.99992 8.49529 4.77599 8.49512 4.5C8.49511 4.224 8.71908 4.00017 8.99512 4H9.00488Z\" fill=\"currentColor\"/>",
|
|
20754
|
+
"iconName": "reduce-motion",
|
|
20755
|
+
"variant": {
|
|
20756
|
+
"join": "round",
|
|
20757
|
+
"filled": "on",
|
|
20758
|
+
"radius": "2",
|
|
20759
|
+
"stroke": "1"
|
|
20760
|
+
},
|
|
20761
|
+
"createdAt": "2026-05-19T16:02:19.410611+00:00",
|
|
20762
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
20763
|
+
"componentName": "IconReduceMotion"
|
|
20764
|
+
},
|
|
20695
20765
|
{
|
|
20696
20766
|
"category": "Communication",
|
|
20697
20767
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18 2C19.1046 2 20 2.89543 20 4V21.5C20 21.7761 19.7761 22 19.5 22H6C4.89543 22 4 21.1046 4 20V4.5C4 3.11929 5.11929 2 6.5 2H18ZM6 19C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H19V19H6ZM6 16C5.44772 16 5 16.4477 5 17C5 17.5523 5.44772 18 6 18H19V16H6ZM8.5 6C8.22386 6 8 6.22386 8 6.5C8 6.77614 8.22386 7 8.5 7H15.5C15.7761 7 16 6.77614 16 6.5C16 6.22386 15.7761 6 15.5 6H8.5Z\" fill=\"currentColor\"/>",
|
|
@@ -27104,6 +27174,20 @@
|
|
|
27104
27174
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
27105
27175
|
"componentName": "IconVoiceMode"
|
|
27106
27176
|
},
|
|
27177
|
+
{
|
|
27178
|
+
"category": "Accessibility",
|
|
27179
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 7.5C11.6852 7.5 11.389 7.64858 11.2002 7.90039L10.2998 9.09961C10.111 9.35142 9.81476 9.5 9.5 9.5H9C8.44772 9.5 8 9.94772 8 10.5V13.5C8 14.0523 8.44772 14.5 9 14.5H9.5C9.81476 14.5 10.111 14.6486 10.2998 14.9004L11.2002 16.0996C11.389 16.3514 11.6852 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V8.5C13 7.94772 12.5523 7.5 12 7.5ZM14.7773 9.58398C14.5476 9.43081 14.2372 9.49289 14.084 9.72266C13.9308 9.95242 13.9929 10.2628 14.2227 10.416C15.4258 11.2181 15.4258 12.7819 14.2227 13.584C13.9929 13.7372 13.9308 14.0476 14.084 14.2773C14.2372 14.5071 14.5476 14.5692 14.7773 14.416C16.5742 13.2181 16.5742 10.7819 14.7773 9.58398Z\" fill=\"currentColor\"/>",
|
|
27180
|
+
"iconName": "voiceover, sound",
|
|
27181
|
+
"variant": {
|
|
27182
|
+
"join": "round",
|
|
27183
|
+
"filled": "on",
|
|
27184
|
+
"radius": "2",
|
|
27185
|
+
"stroke": "1"
|
|
27186
|
+
},
|
|
27187
|
+
"createdAt": "2026-05-21T07:02:14.376118+00:00",
|
|
27188
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
27189
|
+
"componentName": "IconVoiceover"
|
|
27190
|
+
},
|
|
27107
27191
|
{
|
|
27108
27192
|
"category": "Sound & Music",
|
|
27109
27193
|
"svg": "<path d=\"M5.5 3C5.77614 3 6 3.22386 6 3.5V16.5C6 16.7761 5.77614 17 5.5 17C5.22386 17 5 16.7761 5 16.5V3.5C5 3.22386 5.22386 3 5.5 3Z\" fill=\"currentColor\"/><path d=\"M11.5 4C11.7761 4 12 4.22386 12 4.5V9.5C12 9.77614 11.7761 10 11.5 10C11.2239 10 11 9.77614 11 9.5V4.5C11 4.22386 11.2239 4 11.5 4Z\" fill=\"currentColor\"/><path d=\"M8.5 6C8.77614 6 9 6.22386 9 6.5V13.5C9 13.7761 8.77614 14 8.5 14C8.22386 14 8 13.7761 8 13.5V6.5C8 6.22386 8.22386 6 8.5 6Z\" fill=\"currentColor\"/><path d=\"M2.5 8C2.77614 8 3 8.22386 3 8.5V11.5C3 11.7761 2.77614 12 2.5 12C2.22386 12 2 11.7761 2 11.5V8.5C2 8.22386 2.22386 8 2.5 8Z\" fill=\"currentColor\"/><path d=\"M16.5 19C18.433 19 20 17.433 20 15.5C20 13.567 18.433 12 16.5 12C14.567 12 13 13.567 13 15.5C13 17.433 14.567 19 16.5 19Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 15.5C11 12.4624 13.4624 10 16.5 10C19.5376 10 22 12.4624 22 15.5C22 18.5376 19.5376 21 16.5 21C13.4624 21 11 18.5376 11 15.5ZM16.5 11C14.0147 11 12 13.0147 12 15.5C12 17.9853 14.0147 20 16.5 20C18.9853 20 21 17.9853 21 15.5C21 13.0147 18.9853 11 16.5 11Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -478,7 +478,11 @@ export type CentralIconName =
|
|
|
478
478
|
| "IconChevronTop"
|
|
479
479
|
| "IconChevronTopMedium"
|
|
480
480
|
| "IconChevronTopSmall"
|
|
481
|
+
| "IconChevronTriangleDownMedium"
|
|
481
482
|
| "IconChevronTriangleDownSmall"
|
|
483
|
+
| "IconChevronTriangleLeftMedium"
|
|
484
|
+
| "IconChevronTriangleRightMedium"
|
|
485
|
+
| "IconChevronTriangleUpMedium"
|
|
482
486
|
| "IconChevronTriangleUpSmall"
|
|
483
487
|
| "IconChip"
|
|
484
488
|
| "IconChipSimple"
|
|
@@ -1477,6 +1481,7 @@ export type CentralIconName =
|
|
|
1477
1481
|
| "IconReddit"
|
|
1478
1482
|
| "IconRedDotAward"
|
|
1479
1483
|
| "IconRedirectArrow"
|
|
1484
|
+
| "IconReduceMotion"
|
|
1480
1485
|
| "IconReference"
|
|
1481
1486
|
| "IconRemix"
|
|
1482
1487
|
| "IconRemixCircle"
|
|
@@ -1935,6 +1940,7 @@ export type CentralIconName =
|
|
|
1935
1940
|
| "IconVoiceMemo"
|
|
1936
1941
|
| "IconVoiceMid"
|
|
1937
1942
|
| "IconVoiceMode"
|
|
1943
|
+
| "IconVoiceover"
|
|
1938
1944
|
| "IconVoiceRecord"
|
|
1939
1945
|
| "IconVoiceSettings"
|
|
1940
1946
|
| "IconVoiceShare"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.242",
|
|
4
4
|
"style": "round-filled-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-stroke-1/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": 2006,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
109
|
"Accessibility": {
|
|
110
|
-
"count":
|
|
110
|
+
"count": 12,
|
|
111
111
|
"icons": [
|
|
112
112
|
"IconCircleHalfFill",
|
|
113
113
|
"IconCirclePerson",
|
|
@@ -117,12 +117,14 @@
|
|
|
117
117
|
"IconEyeSlash",
|
|
118
118
|
"IconEyeSlash2",
|
|
119
119
|
"IconImageAltText",
|
|
120
|
+
"IconReduceMotion",
|
|
120
121
|
"IconSquareLinesBottom",
|
|
121
|
-
"IconVoiceControl"
|
|
122
|
+
"IconVoiceControl",
|
|
123
|
+
"IconVoiceover"
|
|
122
124
|
]
|
|
123
125
|
},
|
|
124
126
|
"Arrows": {
|
|
125
|
-
"count":
|
|
127
|
+
"count": 140,
|
|
126
128
|
"icons": [
|
|
127
129
|
"IconArrow",
|
|
128
130
|
"IconArrowBottomTop",
|
|
@@ -219,7 +221,11 @@
|
|
|
219
221
|
"IconChevronTop",
|
|
220
222
|
"IconChevronTopMedium",
|
|
221
223
|
"IconChevronTopSmall",
|
|
224
|
+
"IconChevronTriangleDownMedium",
|
|
222
225
|
"IconChevronTriangleDownSmall",
|
|
226
|
+
"IconChevronTriangleLeftMedium",
|
|
227
|
+
"IconChevronTriangleRightMedium",
|
|
228
|
+
"IconChevronTriangleUpMedium",
|
|
223
229
|
"IconChevronTriangleUpSmall",
|
|
224
230
|
"IconCollaborationPointerLeft",
|
|
225
231
|
"IconCollaborationPointerRight",
|
|
@@ -2680,8 +2686,12 @@
|
|
|
2680
2686
|
"IconChevronTop": "chevron-top",
|
|
2681
2687
|
"IconChevronTopMedium": "chevron-top-medium",
|
|
2682
2688
|
"IconChevronTopSmall": "chevron-top-small",
|
|
2683
|
-
"
|
|
2684
|
-
"
|
|
2689
|
+
"IconChevronTriangleDownMedium": "chevron-triangle-down-medium, dropdown, caret",
|
|
2690
|
+
"IconChevronTriangleDownSmall": "chevron-triangle-down-small, dropdown, caret",
|
|
2691
|
+
"IconChevronTriangleLeftMedium": "chevron-triangle-left-medium, dropdown, caret",
|
|
2692
|
+
"IconChevronTriangleRightMedium": "chevron-triangle-right-medium, dropdown, caret",
|
|
2693
|
+
"IconChevronTriangleUpMedium": "chevron-triangle-up-medium, dropdown, caret",
|
|
2694
|
+
"IconChevronTriangleUpSmall": "chevron-triangle-up-small, dropdown, caret",
|
|
2685
2695
|
"IconChip": "chip, esim",
|
|
2686
2696
|
"IconChipSimple": "chip-simple, processor",
|
|
2687
2697
|
"IconChrome": "chrome",
|
|
@@ -3679,6 +3689,7 @@
|
|
|
3679
3689
|
"IconReddit": "reddit",
|
|
3680
3690
|
"IconRedDotAward": "red-dot-award",
|
|
3681
3691
|
"IconRedirectArrow": "redirect-arrow",
|
|
3692
|
+
"IconReduceMotion": "reduce-motion",
|
|
3682
3693
|
"IconReference": "reference, books, study, library, knowledge",
|
|
3683
3694
|
"IconRemix": "remix, new-try, repeat",
|
|
3684
3695
|
"IconRemixCircle": "remix-circle, mix, new-try",
|
|
@@ -4137,6 +4148,7 @@
|
|
|
4137
4148
|
"IconVoiceMemo": "voice-memo, voice-control",
|
|
4138
4149
|
"IconVoiceMid": "voice-mid, wave",
|
|
4139
4150
|
"IconVoiceMode": "voice-mode, voice-settings",
|
|
4151
|
+
"IconVoiceover": "voiceover, sound",
|
|
4140
4152
|
"IconVoiceRecord": "voice-record",
|
|
4141
4153
|
"IconVoiceSettings": "voice-settings, edit-voice",
|
|
4142
4154
|
"IconVoiceShare": "voice-share",
|
package/index.d.ts
CHANGED
|
@@ -477,7 +477,11 @@ export { IconChevronRightSmall, default as IconChevronRightSmallDefault, } from
|
|
|
477
477
|
export { IconChevronTop, default as IconChevronTopDefault, } from "./IconChevronTop";
|
|
478
478
|
export { IconChevronTopMedium, default as IconChevronTopMediumDefault, } from "./IconChevronTopMedium";
|
|
479
479
|
export { IconChevronTopSmall, default as IconChevronTopSmallDefault, } from "./IconChevronTopSmall";
|
|
480
|
+
export { IconChevronTriangleDownMedium, default as IconChevronTriangleDownMediumDefault, } from "./IconChevronTriangleDownMedium";
|
|
480
481
|
export { IconChevronTriangleDownSmall, default as IconChevronTriangleDownSmallDefault, } from "./IconChevronTriangleDownSmall";
|
|
482
|
+
export { IconChevronTriangleLeftMedium, default as IconChevronTriangleLeftMediumDefault, } from "./IconChevronTriangleLeftMedium";
|
|
483
|
+
export { IconChevronTriangleRightMedium, default as IconChevronTriangleRightMediumDefault, } from "./IconChevronTriangleRightMedium";
|
|
484
|
+
export { IconChevronTriangleUpMedium, default as IconChevronTriangleUpMediumDefault, } from "./IconChevronTriangleUpMedium";
|
|
481
485
|
export { IconChevronTriangleUpSmall, default as IconChevronTriangleUpSmallDefault, } from "./IconChevronTriangleUpSmall";
|
|
482
486
|
export { IconChip, default as IconChipDefault } from "./IconChip";
|
|
483
487
|
export { IconChipSimple, default as IconChipSimpleDefault, } from "./IconChipSimple";
|
|
@@ -1476,6 +1480,7 @@ export { IconRecraft, default as IconRecraftDefault } from "./IconRecraft";
|
|
|
1476
1480
|
export { IconRedDotAward, default as IconRedDotAwardDefault, } from "./IconRedDotAward";
|
|
1477
1481
|
export { IconReddit, default as IconRedditDefault } from "./IconReddit";
|
|
1478
1482
|
export { IconRedirectArrow, default as IconRedirectArrowDefault, } from "./IconRedirectArrow";
|
|
1483
|
+
export { IconReduceMotion, default as IconReduceMotionDefault, } from "./IconReduceMotion";
|
|
1479
1484
|
export { IconReference, default as IconReferenceDefault, } from "./IconReference";
|
|
1480
1485
|
export { IconRemix, default as IconRemixDefault } from "./IconRemix";
|
|
1481
1486
|
export { IconRemixCircle, default as IconRemixCircleDefault, } from "./IconRemixCircle";
|
|
@@ -1938,6 +1943,7 @@ export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoice
|
|
|
1938
1943
|
export { IconVoiceSettings, default as IconVoiceSettingsDefault, } from "./IconVoiceSettings";
|
|
1939
1944
|
export { IconVoiceShare, default as IconVoiceShareDefault, } from "./IconVoiceShare";
|
|
1940
1945
|
export { IconVoiceSparkle, default as IconVoiceSparkleDefault, } from "./IconVoiceSparkle";
|
|
1946
|
+
export { IconVoiceover, default as IconVoiceoverDefault, } from "./IconVoiceover";
|
|
1941
1947
|
export { IconVolleyball, default as IconVolleyballDefault, } from "./IconVolleyball";
|
|
1942
1948
|
export { IconVolumeDown, default as IconVolumeDownDefault, } from "./IconVolumeDown";
|
|
1943
1949
|
export { IconVolumeFull, default as IconVolumeFullDefault, } from "./IconVolumeFull";
|