@central-icons-react-native/round-filled-radius-3-stroke-2 1.1.136 → 1.1.138
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/IconControlKeyLeft/index.d.ts +4 -0
- package/IconControlKeyLeft/index.js +2 -0
- package/IconControlKeyLeft/index.js.map +1 -0
- package/IconControlKeyLeft/index.mjs +2 -0
- package/IconControlKeyLeft/index.mjs.map +1 -0
- package/IconControlKeyRight/index.d.ts +4 -0
- package/IconControlKeyRight/index.js +2 -0
- package/IconControlKeyRight/index.js.map +1 -0
- package/{IconControl → IconControlKeyRight}/index.mjs +1 -1
- package/IconControlKeyRight/index.mjs.map +1 -0
- package/{IconControl → IconGoatHead}/index.d.ts +2 -2
- package/IconGoatHead/index.js +2 -0
- package/IconGoatHead/index.js.map +1 -0
- package/IconGoatHead/index.mjs +2 -0
- package/IconGoatHead/index.mjs.map +1 -0
- package/IconOptionKey/index.d.ts +4 -0
- package/IconOptionKey/index.js +2 -0
- package/IconOptionKey/index.js.map +1 -0
- package/IconOptionKey/index.mjs +2 -0
- package/IconOptionKey/index.mjs.map +1 -0
- package/README.md +4 -1
- package/filtered-icons.json +44 -2
- package/icons/index.d.ts +4 -1
- package/icons-index.json +12 -6
- package/index.d.ts +4 -1
- 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 +24 -3
- package/IconControl/index.js +0 -2
- package/IconControl/index.js.map +0 -1
- package/IconControl/index.mjs.map +0 -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 d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!v.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(C=B(r,t))||C.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(n({},"__esModule",{value:!0}),o);var y={};x(y,{IconControlKeyLeft:()=>i,default:()=>g});module.exports=P(y);var p=a(require("react"));var m=a(require("react")),f=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(f.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 c=require("react-native-svg"),i=o=>p.default.createElement(s,{...o},p.default.createElement(c.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM9.70711 7.29289C9.31658 6.90237 8.68342 6.90237 8.29289 7.29289L6.29289 9.29289C5.90237 9.68342 5.90237 10.3166 6.29289 10.7071C6.68342 11.0976 7.31658 11.0976 7.70711 10.7071L9 9.41421L10.2929 10.7071C10.6834 11.0976 11.3166 11.0976 11.7071 10.7071C12.0976 10.3166 12.0976 9.68342 11.7071 9.29289L9.70711 7.29289Z",fill:"currentColor"})),g=i;0&&(module.exports={IconControlKeyLeft});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconControlKeyLeft/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 IconControlKeyLeft: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM9.70711 7.29289C9.31658 6.90237 8.68342 6.90237 8.29289 7.29289L6.29289 9.29289C5.90237 9.68342 5.90237 10.3166 6.29289 10.7071C6.68342 11.0976 7.31658 11.0976 7.70711 10.7071L9 9.41421L10.2929 10.7071C10.6834 11.0976 11.3166 11.0976 11.7071 10.7071C12.0976 10.3166 12.0976 9.68342 11.7071 9.29289L9.70711 7.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconControlKeyLeft;\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,wBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qbACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconControlKeyLeft_exports","__export","IconControlKeyLeft","IconControlKeyLeft_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconControlKeyLeft","props","React","CentralIconBase","IconControlKeyLeft_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:r,size:o=24,...n})=>p.createElement(C,{...n,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=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM9.70711 7.29289C9.31658 6.90237 8.68342 6.90237 8.29289 7.29289L6.29289 9.29289C5.90237 9.68342 5.90237 10.3166 6.29289 10.7071C6.68342 11.0976 7.31658 11.0976 7.70711 10.7071L9 9.41421L10.2929 10.7071C10.6834 11.0976 11.3166 11.0976 11.7071 10.7071C12.0976 10.3166 12.0976 9.68342 11.7071 9.29289L9.70711 7.29289Z",fill:"currentColor"})),v=a;export{a as IconControlKeyLeft,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconControlKeyLeft/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 IconControlKeyLeft: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM9.70711 7.29289C9.31658 6.90237 8.68342 6.90237 8.29289 7.29289L6.29289 9.29289C5.90237 9.68342 5.90237 10.3166 6.29289 10.7071C6.68342 11.0976 7.31658 11.0976 7.70711 10.7071L9 9.41421L10.2929 10.7071C10.6834 11.0976 11.3166 11.0976 11.7071 10.7071C12.0976 10.3166 12.0976 9.68342 11.7071 9.29289L9.70711 7.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconControlKeyLeft;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,qbACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconControlKeyLeft","props","React","CentralIconBase","IconControlKeyLeft_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 d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!g.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(C=B(r,t))||C.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(n({},"__esModule",{value:!0}),o);var h={};v(h,{IconControlKeyRight:()=>i,default:()=>P});module.exports=x(h);var p=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.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=>p.default.createElement(c,{...o},p.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM14.7071 7.29289C14.3166 6.90237 13.6834 6.90237 13.2929 7.29289L11.2929 9.29289C10.9024 9.68342 10.9024 10.3166 11.2929 10.7071C11.6834 11.0976 12.3166 11.0976 12.7071 10.7071L14 9.41421L15.2929 10.7071C15.6834 11.0976 16.3166 11.0976 16.7071 10.7071C17.0976 10.3166 17.0976 9.68342 16.7071 9.29289L14.7071 7.29289Z",fill:"currentColor"})),P=i;0&&(module.exports={IconControlKeyRight});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconControlKeyRight/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 IconControlKeyRight: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM14.7071 7.29289C14.3166 6.90237 13.6834 6.90237 13.2929 7.29289L11.2929 9.29289C10.9024 9.68342 10.9024 10.3166 11.2929 10.7071C11.6834 11.0976 12.3166 11.0976 12.7071 10.7071L14 9.41421L15.2929 10.7071C15.6834 11.0976 16.3166 11.0976 16.7071 10.7071C17.0976 10.3166 17.0976 9.68342 16.7071 9.29289L14.7071 7.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconControlKeyRight;\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,yBAAAE,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,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,sbACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconControlKeyRight_exports","__export","IconControlKeyRight","IconControlKeyRight_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconControlKeyRight","props","React","CentralIconBase","IconControlKeyRight_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(C,{...n,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=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM14.7071 7.29289C14.3166 6.90237 13.6834 6.90237 13.2929 7.29289L11.2929 9.29289C10.9024 9.68342 10.9024 10.3166 11.2929 10.7071C11.6834 11.0976 12.3166 11.0976 12.7071 10.7071L14 9.41421L15.2929 10.7071C15.6834 11.0976 16.3166 11.0976 16.7071 10.7071C17.0976 10.3166 17.0976 9.68342 16.7071 9.29289L14.7071 7.29289Z",fill:"currentColor"})),
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(C,{...n,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=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM14.7071 7.29289C14.3166 6.90237 13.6834 6.90237 13.2929 7.29289L11.2929 9.29289C10.9024 9.68342 10.9024 10.3166 11.2929 10.7071C11.6834 11.0976 12.3166 11.0976 12.7071 10.7071L14 9.41421L15.2929 10.7071C15.6834 11.0976 16.3166 11.0976 16.7071 10.7071C17.0976 10.3166 17.0976 9.68342 16.7071 9.29289L14.7071 7.29289Z",fill:"currentColor"})),g=a;export{a as IconControlKeyRight,g as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconControlKeyRight/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 IconControlKeyRight: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM14.7071 7.29289C14.3166 6.90237 13.6834 6.90237 13.2929 7.29289L11.2929 9.29289C10.9024 9.68342 10.9024 10.3166 11.2929 10.7071C11.6834 11.0976 12.3166 11.0976 12.7071 10.7071L14 9.41421L15.2929 10.7071C15.6834 11.0976 16.3166 11.0976 16.7071 10.7071C17.0976 10.3166 17.0976 9.68342 16.7071 9.29289L14.7071 7.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconControlKeyRight;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,sbACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconControlKeyRight","props","React","CentralIconBase","IconControlKeyRight_default"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconGoatHead: FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconGoatHead;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var e=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(C,r)=>{for(var o in r)e(C,o,{get:r[o],enumerable:!0})},a=(C,r,o,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of u(r))!P.call(C,t)&&t!==o&&e(C,t,{get:()=>r[t],enumerable:!(p=i(r,t))||p.enumerable});return C};var l=(C,r,o)=>(o=C!=null?I(x(C)):{},a(r||!C||!C.__esModule?e(o,"default",{value:C,enumerable:!0}):o,C)),v=C=>a(e({},"__esModule",{value:!0}),C);var h={};g(h,{IconGoatHead:()=>B,default:()=>d});module.exports=v(h);var n=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:C,size:r=24,...o})=>m.default.createElement(s.Svg,{...o,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C);var f=require("react-native-svg"),B=C=>n.default.createElement(c,{...C},n.default.createElement(f.Path,{d:"M16.6592 2.52047C18.0374 1.95413 19.6311 1.86819 21.3144 2.26168C21.5183 2.30934 21.6714 2.47876 21.6973 2.68649C21.723 2.89418 21.6165 3.09616 21.4307 3.19235C21.4307 3.19235 21.428 3.1941 21.4258 3.19528C21.4213 3.19764 21.4141 3.20163 21.4043 3.207C21.384 3.21807 21.3523 3.23518 21.3115 3.25875C21.2296 3.30616 21.1093 3.37899 20.9629 3.47555C20.6693 3.66911 20.2724 3.95801 19.8633 4.33688C19.0384 5.10089 18.2029 6.19251 17.9961 7.57418C17.9472 7.90079 17.9927 8.06741 18.0371 8.14938C18.0767 8.22229 18.148 8.28832 18.2998 8.34176C18.4614 8.39863 18.6819 8.42904 18.9648 8.43649C19.2456 8.44387 19.548 8.42881 19.873 8.415C20.1878 8.40163 20.5264 8.38905 20.8379 8.40914C21.1435 8.42887 21.4778 8.48241 21.7637 8.63571C22.0754 8.80288 22.31 9.08021 22.3926 9.47653C22.4685 9.84129 22.406 10.262 22.25 10.7304C21.8081 12.0565 20.7434 12.8951 19.7344 13.3994C18.9575 13.7875 18.1682 13.9992 17.6143 14.0898C17.5661 14.5497 17.4983 15.1793 17.3555 15.749C17.2596 16.131 17.1219 16.5267 16.9111 16.8564C16.7449 17.1164 16.5181 17.3538 16.2168 17.5C15.979 18.2671 15.503 19.2839 14.8682 20.1484C14.1804 21.0849 13.1913 22.0007 12.0019 22.0009C10.8124 22.0008 9.82254 21.085 9.13476 20.1484C8.49992 19.2839 8.0239 18.2671 7.78613 17.5C7.48485 17.3538 7.25797 17.1163 7.09179 16.8564C6.88106 16.5267 6.74329 16.131 6.64745 15.749C6.50458 15.1794 6.43684 14.5497 6.38866 14.0898C5.83467 13.9992 5.04537 13.7875 4.26855 13.3994C3.25948 12.8951 2.19482 12.0565 1.75292 10.7304C1.59689 10.2621 1.53445 9.84127 1.61034 9.47653C1.69294 9.08027 1.92762 8.80289 2.23925 8.63571C2.52504 8.48243 2.85949 8.42888 3.16503 8.40914C3.47647 8.38906 3.81507 8.40162 4.12988 8.415C4.45495 8.42882 4.75734 8.44386 5.03808 8.43649C5.32101 8.42904 5.54154 8.39862 5.70312 8.34176C5.85496 8.28832 5.92619 8.2223 5.96581 8.14938C6.01022 8.06743 6.0557 7.90086 6.00683 7.57418C5.79998 6.19248 4.96455 5.10091 4.13964 4.33688C3.7305 3.95797 3.33358 3.66912 3.04003 3.47555C2.89359 3.37899 2.77333 3.30616 2.6914 3.25875C2.65096 3.23536 2.61989 3.21807 2.5996 3.207C2.58957 3.20152 2.58163 3.19766 2.57714 3.19528C2.57492 3.1941 2.57226 3.19235 2.57226 3.19235C2.38648 3.09613 2.27987 2.89414 2.30566 2.68649C2.33153 2.47871 2.48458 2.30934 2.68847 2.26168C4.37172 1.86825 5.96529 1.95454 7.34179 2.52145C8.72169 3.08983 9.85152 4.12808 10.6191 5.58004C10.989 6.27967 11.5213 6.56078 11.9893 6.56051C12.4578 6.56016 12.9942 6.27801 13.3701 5.57516C14.1453 4.12573 15.2777 3.08817 16.6592 2.52047Z",fill:"currentColor"})),d=B;0&&(module.exports={IconGoatHead});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoatHead/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 IconGoatHead: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.6592 2.52047C18.0374 1.95413 19.6311 1.86819 21.3144 2.26168C21.5183 2.30934 21.6714 2.47876 21.6973 2.68649C21.723 2.89418 21.6165 3.09616 21.4307 3.19235C21.4307 3.19235 21.428 3.1941 21.4258 3.19528C21.4213 3.19764 21.4141 3.20163 21.4043 3.207C21.384 3.21807 21.3523 3.23518 21.3115 3.25875C21.2296 3.30616 21.1093 3.37899 20.9629 3.47555C20.6693 3.66911 20.2724 3.95801 19.8633 4.33688C19.0384 5.10089 18.2029 6.19251 17.9961 7.57418C17.9472 7.90079 17.9927 8.06741 18.0371 8.14938C18.0767 8.22229 18.148 8.28832 18.2998 8.34176C18.4614 8.39863 18.6819 8.42904 18.9648 8.43649C19.2456 8.44387 19.548 8.42881 19.873 8.415C20.1878 8.40163 20.5264 8.38905 20.8379 8.40914C21.1435 8.42887 21.4778 8.48241 21.7637 8.63571C22.0754 8.80288 22.31 9.08021 22.3926 9.47653C22.4685 9.84129 22.406 10.262 22.25 10.7304C21.8081 12.0565 20.7434 12.8951 19.7344 13.3994C18.9575 13.7875 18.1682 13.9992 17.6143 14.0898C17.5661 14.5497 17.4983 15.1793 17.3555 15.749C17.2596 16.131 17.1219 16.5267 16.9111 16.8564C16.7449 17.1164 16.5181 17.3538 16.2168 17.5C15.979 18.2671 15.503 19.2839 14.8682 20.1484C14.1804 21.0849 13.1913 22.0007 12.0019 22.0009C10.8124 22.0008 9.82254 21.085 9.13476 20.1484C8.49992 19.2839 8.0239 18.2671 7.78613 17.5C7.48485 17.3538 7.25797 17.1163 7.09179 16.8564C6.88106 16.5267 6.74329 16.131 6.64745 15.749C6.50458 15.1794 6.43684 14.5497 6.38866 14.0898C5.83467 13.9992 5.04537 13.7875 4.26855 13.3994C3.25948 12.8951 2.19482 12.0565 1.75292 10.7304C1.59689 10.2621 1.53445 9.84127 1.61034 9.47653C1.69294 9.08027 1.92762 8.80289 2.23925 8.63571C2.52504 8.48243 2.85949 8.42888 3.16503 8.40914C3.47647 8.38906 3.81507 8.40162 4.12988 8.415C4.45495 8.42882 4.75734 8.44386 5.03808 8.43649C5.32101 8.42904 5.54154 8.39862 5.70312 8.34176C5.85496 8.28832 5.92619 8.2223 5.96581 8.14938C6.01022 8.06743 6.0557 7.90086 6.00683 7.57418C5.79998 6.19248 4.96455 5.10091 4.13964 4.33688C3.7305 3.95797 3.33358 3.66912 3.04003 3.47555C2.89359 3.37899 2.77333 3.30616 2.6914 3.25875C2.65096 3.23536 2.61989 3.21807 2.5996 3.207C2.58957 3.20152 2.58163 3.19766 2.57714 3.19528C2.57492 3.1941 2.57226 3.19235 2.57226 3.19235C2.38648 3.09613 2.27987 2.89414 2.30566 2.68649C2.33153 2.47871 2.48458 2.30934 2.68847 2.26168C4.37172 1.86825 5.96529 1.95454 7.34179 2.52145C8.72169 3.08983 9.85152 4.12808 10.6191 5.58004C10.989 6.27967 11.5213 6.56078 11.9893 6.56051C12.4578 6.56016 12.9942 6.27801 13.3701 5.57516C14.1453 4.12573 15.2777 3.08817 16.6592 2.52047Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoatHead;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,06EACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGoatHead_exports","__export","IconGoatHead","IconGoatHead_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoatHead","props","React","CentralIconBase","IconGoatHead_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import n from"react";import{Svg as p}from"react-native-svg";var o=({children:r,size:C=24,...e})=>n.createElement(p,{...e,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var l=r=>t.createElement(o,{...r},t.createElement(a,{d:"M16.6592 2.52047C18.0374 1.95413 19.6311 1.86819 21.3144 2.26168C21.5183 2.30934 21.6714 2.47876 21.6973 2.68649C21.723 2.89418 21.6165 3.09616 21.4307 3.19235C21.4307 3.19235 21.428 3.1941 21.4258 3.19528C21.4213 3.19764 21.4141 3.20163 21.4043 3.207C21.384 3.21807 21.3523 3.23518 21.3115 3.25875C21.2296 3.30616 21.1093 3.37899 20.9629 3.47555C20.6693 3.66911 20.2724 3.95801 19.8633 4.33688C19.0384 5.10089 18.2029 6.19251 17.9961 7.57418C17.9472 7.90079 17.9927 8.06741 18.0371 8.14938C18.0767 8.22229 18.148 8.28832 18.2998 8.34176C18.4614 8.39863 18.6819 8.42904 18.9648 8.43649C19.2456 8.44387 19.548 8.42881 19.873 8.415C20.1878 8.40163 20.5264 8.38905 20.8379 8.40914C21.1435 8.42887 21.4778 8.48241 21.7637 8.63571C22.0754 8.80288 22.31 9.08021 22.3926 9.47653C22.4685 9.84129 22.406 10.262 22.25 10.7304C21.8081 12.0565 20.7434 12.8951 19.7344 13.3994C18.9575 13.7875 18.1682 13.9992 17.6143 14.0898C17.5661 14.5497 17.4983 15.1793 17.3555 15.749C17.2596 16.131 17.1219 16.5267 16.9111 16.8564C16.7449 17.1164 16.5181 17.3538 16.2168 17.5C15.979 18.2671 15.503 19.2839 14.8682 20.1484C14.1804 21.0849 13.1913 22.0007 12.0019 22.0009C10.8124 22.0008 9.82254 21.085 9.13476 20.1484C8.49992 19.2839 8.0239 18.2671 7.78613 17.5C7.48485 17.3538 7.25797 17.1163 7.09179 16.8564C6.88106 16.5267 6.74329 16.131 6.64745 15.749C6.50458 15.1794 6.43684 14.5497 6.38866 14.0898C5.83467 13.9992 5.04537 13.7875 4.26855 13.3994C3.25948 12.8951 2.19482 12.0565 1.75292 10.7304C1.59689 10.2621 1.53445 9.84127 1.61034 9.47653C1.69294 9.08027 1.92762 8.80289 2.23925 8.63571C2.52504 8.48243 2.85949 8.42888 3.16503 8.40914C3.47647 8.38906 3.81507 8.40162 4.12988 8.415C4.45495 8.42882 4.75734 8.44386 5.03808 8.43649C5.32101 8.42904 5.54154 8.39862 5.70312 8.34176C5.85496 8.28832 5.92619 8.2223 5.96581 8.14938C6.01022 8.06743 6.0557 7.90086 6.00683 7.57418C5.79998 6.19248 4.96455 5.10091 4.13964 4.33688C3.7305 3.95797 3.33358 3.66912 3.04003 3.47555C2.89359 3.37899 2.77333 3.30616 2.6914 3.25875C2.65096 3.23536 2.61989 3.21807 2.5996 3.207C2.58957 3.20152 2.58163 3.19766 2.57714 3.19528C2.57492 3.1941 2.57226 3.19235 2.57226 3.19235C2.38648 3.09613 2.27987 2.89414 2.30566 2.68649C2.33153 2.47871 2.48458 2.30934 2.68847 2.26168C4.37172 1.86825 5.96529 1.95454 7.34179 2.52145C8.72169 3.08983 9.85152 4.12808 10.6191 5.58004C10.989 6.27967 11.5213 6.56078 11.9893 6.56051C12.4578 6.56016 12.9942 6.27801 13.3701 5.57516C14.1453 4.12573 15.2777 3.08817 16.6592 2.52047Z",fill:"currentColor"})),P=l;export{l as IconGoatHead,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoatHead/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 IconGoatHead: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.6592 2.52047C18.0374 1.95413 19.6311 1.86819 21.3144 2.26168C21.5183 2.30934 21.6714 2.47876 21.6973 2.68649C21.723 2.89418 21.6165 3.09616 21.4307 3.19235C21.4307 3.19235 21.428 3.1941 21.4258 3.19528C21.4213 3.19764 21.4141 3.20163 21.4043 3.207C21.384 3.21807 21.3523 3.23518 21.3115 3.25875C21.2296 3.30616 21.1093 3.37899 20.9629 3.47555C20.6693 3.66911 20.2724 3.95801 19.8633 4.33688C19.0384 5.10089 18.2029 6.19251 17.9961 7.57418C17.9472 7.90079 17.9927 8.06741 18.0371 8.14938C18.0767 8.22229 18.148 8.28832 18.2998 8.34176C18.4614 8.39863 18.6819 8.42904 18.9648 8.43649C19.2456 8.44387 19.548 8.42881 19.873 8.415C20.1878 8.40163 20.5264 8.38905 20.8379 8.40914C21.1435 8.42887 21.4778 8.48241 21.7637 8.63571C22.0754 8.80288 22.31 9.08021 22.3926 9.47653C22.4685 9.84129 22.406 10.262 22.25 10.7304C21.8081 12.0565 20.7434 12.8951 19.7344 13.3994C18.9575 13.7875 18.1682 13.9992 17.6143 14.0898C17.5661 14.5497 17.4983 15.1793 17.3555 15.749C17.2596 16.131 17.1219 16.5267 16.9111 16.8564C16.7449 17.1164 16.5181 17.3538 16.2168 17.5C15.979 18.2671 15.503 19.2839 14.8682 20.1484C14.1804 21.0849 13.1913 22.0007 12.0019 22.0009C10.8124 22.0008 9.82254 21.085 9.13476 20.1484C8.49992 19.2839 8.0239 18.2671 7.78613 17.5C7.48485 17.3538 7.25797 17.1163 7.09179 16.8564C6.88106 16.5267 6.74329 16.131 6.64745 15.749C6.50458 15.1794 6.43684 14.5497 6.38866 14.0898C5.83467 13.9992 5.04537 13.7875 4.26855 13.3994C3.25948 12.8951 2.19482 12.0565 1.75292 10.7304C1.59689 10.2621 1.53445 9.84127 1.61034 9.47653C1.69294 9.08027 1.92762 8.80289 2.23925 8.63571C2.52504 8.48243 2.85949 8.42888 3.16503 8.40914C3.47647 8.38906 3.81507 8.40162 4.12988 8.415C4.45495 8.42882 4.75734 8.44386 5.03808 8.43649C5.32101 8.42904 5.54154 8.39862 5.70312 8.34176C5.85496 8.28832 5.92619 8.2223 5.96581 8.14938C6.01022 8.06743 6.0557 7.90086 6.00683 7.57418C5.79998 6.19248 4.96455 5.10091 4.13964 4.33688C3.7305 3.95797 3.33358 3.66912 3.04003 3.47555C2.89359 3.37899 2.77333 3.30616 2.6914 3.25875C2.65096 3.23536 2.61989 3.21807 2.5996 3.207C2.58957 3.20152 2.58163 3.19766 2.57714 3.19528C2.57492 3.1941 2.57226 3.19235 2.57226 3.19235C2.38648 3.09613 2.27987 2.89414 2.30566 2.68649C2.33153 2.47871 2.48458 2.30934 2.68847 2.26168C4.37172 1.86825 5.96529 1.95454 7.34179 2.52145C8.72169 3.08983 9.85152 4.12808 10.6191 5.58004C10.989 6.27967 11.5213 6.56078 11.9893 6.56051C12.4578 6.56016 12.9942 6.27801 13.3701 5.57516C14.1453 4.12573 15.2777 3.08817 16.6592 2.52047Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoatHead;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,06EACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGoatHead","props","React","CentralIconBase","IconGoatHead_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var v=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of H(r))!d.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=B(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(n({},"__esModule",{value:!0}),o);var g={};v(g,{IconOptionKey:()=>i,default:()=>P});module.exports=x(g);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.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=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M17 3C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H17ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H8.76367C9.14241 9 9.48879 9.21401 9.6582 9.55273L12.5527 15.3418C13.0609 16.3581 14.1 17 15.2363 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H15.2363C14.8576 15 14.5112 14.786 14.3418 14.4473L11.4473 8.6582C10.9391 7.64191 9.89995 7 8.76367 7H8ZM14.5 7C13.9477 7 13.5 7.44772 13.5 8C13.5 8.55228 13.9477 9 14.5 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H14.5Z",fill:"currentColor"})),P=i;0&&(module.exports={IconOptionKey});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconOptionKey/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 IconOptionKey: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17 3C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H17ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H8.76367C9.14241 9 9.48879 9.21401 9.6582 9.55273L12.5527 15.3418C13.0609 16.3581 14.1 17 15.2363 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H15.2363C14.8576 15 14.5112 14.786 14.3418 14.4473L11.4473 8.6582C10.9391 7.64191 9.89995 7 8.76367 7H8ZM14.5 7C13.9477 7 13.5 7.44772 13.5 8C13.5 8.55228 13.9477 9 14.5 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H14.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconOptionKey;\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,sjBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconOptionKey_exports","__export","IconOptionKey","IconOptionKey_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconOptionKey","props","React","CentralIconBase","IconOptionKey_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>C.createElement(p,{...n,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=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M17 3C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H17ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H8.76367C9.14241 9 9.48879 9.21401 9.6582 9.55273L12.5527 15.3418C13.0609 16.3581 14.1 17 15.2363 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H15.2363C14.8576 15 14.5112 14.786 14.3418 14.4473L11.4473 8.6582C10.9391 7.64191 9.89995 7 8.76367 7H8ZM14.5 7C13.9477 7 13.5 7.44772 13.5 8C13.5 8.55228 13.9477 9 14.5 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H14.5Z",fill:"currentColor"})),d=a;export{a as IconOptionKey,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconOptionKey/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 IconOptionKey: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17 3C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H17ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H8.76367C9.14241 9 9.48879 9.21401 9.6582 9.55273L12.5527 15.3418C13.0609 16.3581 14.1 17 15.2363 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H15.2363C14.8576 15 14.5112 14.786 14.3418 14.4473L11.4473 8.6582C10.9391 7.64191 9.89995 7 8.76367 7H8ZM14.5 7C13.9477 7 13.5 7.44772 13.5 8C13.5 8.55228 13.9477 9 14.5 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H14.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconOptionKey;\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,sjBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconOptionKey","props","React","CentralIconBase","IconOptionKey_default"]}
|
package/README.md
CHANGED
|
@@ -1173,11 +1173,13 @@ Below is a complete list of available icons:
|
|
|
1173
1173
|
- IconBackward
|
|
1174
1174
|
- IconCmd
|
|
1175
1175
|
- IconCmdBox
|
|
1176
|
-
-
|
|
1176
|
+
- IconControlKeyLeft
|
|
1177
|
+
- IconControlKeyRight
|
|
1177
1178
|
- IconEsc
|
|
1178
1179
|
- IconHashtag
|
|
1179
1180
|
- IconOpt
|
|
1180
1181
|
- IconOptAlt
|
|
1182
|
+
- IconOptionKey
|
|
1181
1183
|
- IconShift
|
|
1182
1184
|
- IconSpacebar
|
|
1183
1185
|
|
|
@@ -1807,6 +1809,7 @@ Below is a complete list of available icons:
|
|
|
1807
1809
|
- IconFormPyramide
|
|
1808
1810
|
- IconForYou
|
|
1809
1811
|
- IconGalaxy
|
|
1812
|
+
- IconGoatHead
|
|
1810
1813
|
- IconGoldMedal
|
|
1811
1814
|
- IconGraduateCap
|
|
1812
1815
|
- IconInfinity
|
package/filtered-icons.json
CHANGED
|
@@ -7644,10 +7644,24 @@
|
|
|
7644
7644
|
"packageName": "round-filled-radius-3-stroke-2",
|
|
7645
7645
|
"componentName": "IconContrast"
|
|
7646
7646
|
},
|
|
7647
|
+
{
|
|
7648
|
+
"category": "Keyboard",
|
|
7649
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM9.70711 7.29289C9.31658 6.90237 8.68342 6.90237 8.29289 7.29289L6.29289 9.29289C5.90237 9.68342 5.90237 10.3166 6.29289 10.7071C6.68342 11.0976 7.31658 11.0976 7.70711 10.7071L9 9.41421L10.2929 10.7071C10.6834 11.0976 11.3166 11.0976 11.7071 10.7071C12.0976 10.3166 12.0976 9.68342 11.7071 9.29289L9.70711 7.29289Z\" fill=\"currentColor\"/>",
|
|
7650
|
+
"iconName": "control-key-left",
|
|
7651
|
+
"variant": {
|
|
7652
|
+
"join": "round",
|
|
7653
|
+
"filled": "on",
|
|
7654
|
+
"radius": "3",
|
|
7655
|
+
"stroke": "2"
|
|
7656
|
+
},
|
|
7657
|
+
"createdAt": "2026-02-18T14:00:48.475008+00:00",
|
|
7658
|
+
"packageName": "round-filled-radius-3-stroke-2",
|
|
7659
|
+
"componentName": "IconControlKeyLeft"
|
|
7660
|
+
},
|
|
7647
7661
|
{
|
|
7648
7662
|
"category": "Keyboard",
|
|
7649
7663
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7ZM14.7071 7.29289C14.3166 6.90237 13.6834 6.90237 13.2929 7.29289L11.2929 9.29289C10.9024 9.68342 10.9024 10.3166 11.2929 10.7071C11.6834 11.0976 12.3166 11.0976 12.7071 10.7071L14 9.41421L15.2929 10.7071C15.6834 11.0976 16.3166 11.0976 16.7071 10.7071C17.0976 10.3166 17.0976 9.68342 16.7071 9.29289L14.7071 7.29289Z\" fill=\"currentColor\"/>",
|
|
7650
|
-
"iconName": "control",
|
|
7664
|
+
"iconName": "control-key-right",
|
|
7651
7665
|
"variant": {
|
|
7652
7666
|
"join": "round",
|
|
7653
7667
|
"filled": "on",
|
|
@@ -7656,7 +7670,7 @@
|
|
|
7656
7670
|
},
|
|
7657
7671
|
"createdAt": "2025-02-15T21:11:34.111513+00:00",
|
|
7658
7672
|
"packageName": "round-filled-radius-3-stroke-2",
|
|
7659
|
-
"componentName": "
|
|
7673
|
+
"componentName": "IconControlKeyRight"
|
|
7660
7674
|
},
|
|
7661
7675
|
{
|
|
7662
7676
|
"category": "Food",
|
|
@@ -12082,6 +12096,20 @@
|
|
|
12082
12096
|
"packageName": "round-filled-radius-3-stroke-2",
|
|
12083
12097
|
"componentName": "IconGlobe2"
|
|
12084
12098
|
},
|
|
12099
|
+
{
|
|
12100
|
+
"category": "Things",
|
|
12101
|
+
"svg": "<path d=\"M16.6592 2.52047C18.0374 1.95413 19.6311 1.86819 21.3144 2.26168C21.5183 2.30934 21.6714 2.47876 21.6973 2.68649C21.723 2.89418 21.6165 3.09616 21.4307 3.19235C21.4307 3.19235 21.428 3.1941 21.4258 3.19528C21.4213 3.19764 21.4141 3.20163 21.4043 3.207C21.384 3.21807 21.3523 3.23518 21.3115 3.25875C21.2296 3.30616 21.1093 3.37899 20.9629 3.47555C20.6693 3.66911 20.2724 3.95801 19.8633 4.33688C19.0384 5.10089 18.2029 6.19251 17.9961 7.57418C17.9472 7.90079 17.9927 8.06741 18.0371 8.14938C18.0767 8.22229 18.148 8.28832 18.2998 8.34176C18.4614 8.39863 18.6819 8.42904 18.9648 8.43649C19.2456 8.44387 19.548 8.42881 19.873 8.415C20.1878 8.40163 20.5264 8.38905 20.8379 8.40914C21.1435 8.42887 21.4778 8.48241 21.7637 8.63571C22.0754 8.80288 22.31 9.08021 22.3926 9.47653C22.4685 9.84129 22.406 10.262 22.25 10.7304C21.8081 12.0565 20.7434 12.8951 19.7344 13.3994C18.9575 13.7875 18.1682 13.9992 17.6143 14.0898C17.5661 14.5497 17.4983 15.1793 17.3555 15.749C17.2596 16.131 17.1219 16.5267 16.9111 16.8564C16.7449 17.1164 16.5181 17.3538 16.2168 17.5C15.979 18.2671 15.503 19.2839 14.8682 20.1484C14.1804 21.0849 13.1913 22.0007 12.0019 22.0009C10.8124 22.0008 9.82254 21.085 9.13476 20.1484C8.49992 19.2839 8.0239 18.2671 7.78613 17.5C7.48485 17.3538 7.25797 17.1163 7.09179 16.8564C6.88106 16.5267 6.74329 16.131 6.64745 15.749C6.50458 15.1794 6.43684 14.5497 6.38866 14.0898C5.83467 13.9992 5.04537 13.7875 4.26855 13.3994C3.25948 12.8951 2.19482 12.0565 1.75292 10.7304C1.59689 10.2621 1.53445 9.84127 1.61034 9.47653C1.69294 9.08027 1.92762 8.80289 2.23925 8.63571C2.52504 8.48243 2.85949 8.42888 3.16503 8.40914C3.47647 8.38906 3.81507 8.40162 4.12988 8.415C4.45495 8.42882 4.75734 8.44386 5.03808 8.43649C5.32101 8.42904 5.54154 8.39862 5.70312 8.34176C5.85496 8.28832 5.92619 8.2223 5.96581 8.14938C6.01022 8.06743 6.0557 7.90086 6.00683 7.57418C5.79998 6.19248 4.96455 5.10091 4.13964 4.33688C3.7305 3.95797 3.33358 3.66912 3.04003 3.47555C2.89359 3.37899 2.77333 3.30616 2.6914 3.25875C2.65096 3.23536 2.61989 3.21807 2.5996 3.207C2.58957 3.20152 2.58163 3.19766 2.57714 3.19528C2.57492 3.1941 2.57226 3.19235 2.57226 3.19235C2.38648 3.09613 2.27987 2.89414 2.30566 2.68649C2.33153 2.47871 2.48458 2.30934 2.68847 2.26168C4.37172 1.86825 5.96529 1.95454 7.34179 2.52145C8.72169 3.08983 9.85152 4.12808 10.6191 5.58004C10.989 6.27967 11.5213 6.56078 11.9893 6.56051C12.4578 6.56016 12.9942 6.27801 13.3701 5.57516C14.1453 4.12573 15.2777 3.08817 16.6592 2.52047Z\" fill=\"currentColor\"/>",
|
|
12102
|
+
"iconName": "goat-head, goated",
|
|
12103
|
+
"variant": {
|
|
12104
|
+
"join": "round",
|
|
12105
|
+
"filled": "on",
|
|
12106
|
+
"radius": "3",
|
|
12107
|
+
"stroke": "2"
|
|
12108
|
+
},
|
|
12109
|
+
"createdAt": "2026-02-19T10:00:47.350823+00:00",
|
|
12110
|
+
"packageName": "round-filled-radius-3-stroke-2",
|
|
12111
|
+
"componentName": "IconGoatHead"
|
|
12112
|
+
},
|
|
12085
12113
|
{
|
|
12086
12114
|
"category": "Things",
|
|
12087
12115
|
"svg": "<path d=\"M16.5 22C16.5 22.3138 16.3531 22.6099 16.1025 22.7988C15.8521 22.9877 15.5272 23.048 15.2256 22.9619L12 22.04L8.77441 22.9619C8.47281 23.048 8.14787 22.9877 7.89746 22.7988C7.64695 22.6099 7.5 22.3138 7.5 22V18.6182C8.83945 19.34 10.3718 19.75 12 19.75C13.6282 19.75 15.1605 19.34 16.5 18.6182V22Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C16.5563 2 20.25 5.69365 20.25 10.25C20.25 14.8063 16.5563 18.5 12 18.5C7.44365 18.5 3.75 14.8063 3.75 10.25C3.75 5.69365 7.44365 2 12 2ZM11.8174 6.25C11.4441 6.25 11.0777 6.35466 10.7607 6.55176L9.61035 7.2666C9.4007 7.39706 9.27344 7.62708 9.27344 7.87402C9.27362 8.43209 9.88514 8.77452 10.3613 8.4834L11.0537 8.05957C11.0594 8.05614 11.0666 8.05469 11.0732 8.05469C11.0931 8.05492 11.1091 8.07097 11.1094 8.09082V13.2852C11.1094 13.818 11.5414 14.25 12.0742 14.25C12.6071 14.25 13.0391 13.818 13.0391 13.2852V7.25C13.0391 6.69772 12.5913 6.25 12.0391 6.25H11.8174Z\" fill=\"currentColor\"/>",
|
|
@@ -16380,6 +16408,20 @@
|
|
|
16380
16408
|
"packageName": "round-filled-radius-3-stroke-2",
|
|
16381
16409
|
"componentName": "IconOptAlt"
|
|
16382
16410
|
},
|
|
16411
|
+
{
|
|
16412
|
+
"category": "Keyboard",
|
|
16413
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 3C19.2091 3 21 4.79086 21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H17ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9H8.76367C9.14241 9 9.48879 9.21401 9.6582 9.55273L12.5527 15.3418C13.0609 16.3581 14.1 17 15.2363 17H16C16.5523 17 17 16.5523 17 16C17 15.4477 16.5523 15 16 15H15.2363C14.8576 15 14.5112 14.786 14.3418 14.4473L11.4473 8.6582C10.9391 7.64191 9.89995 7 8.76367 7H8ZM14.5 7C13.9477 7 13.5 7.44772 13.5 8C13.5 8.55228 13.9477 9 14.5 9H16C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7H14.5Z\" fill=\"currentColor\"/>",
|
|
16414
|
+
"iconName": "option-key",
|
|
16415
|
+
"variant": {
|
|
16416
|
+
"join": "round",
|
|
16417
|
+
"filled": "on",
|
|
16418
|
+
"radius": "3",
|
|
16419
|
+
"stroke": "2"
|
|
16420
|
+
},
|
|
16421
|
+
"createdAt": "2026-02-18T14:00:48.475008+00:00",
|
|
16422
|
+
"packageName": "round-filled-radius-3-stroke-2",
|
|
16423
|
+
"componentName": "IconOptionKey"
|
|
16424
|
+
},
|
|
16383
16425
|
{
|
|
16384
16426
|
"category": "Food",
|
|
16385
16427
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.4127 0.663518C17.033 0.435997 15.6589 0.401471 14.2648 1.20633C13.394 1.70911 12.7133 2.41576 12.2484 3.23047C11.5745 2.32137 10.5258 1.58511 9.277 1.22512C8.74632 1.07214 8.19211 1.37832 8.03913 1.90899C7.88615 2.43967 8.19233 2.99388 8.723 3.14686C9.44752 3.35572 10.0121 3.72758 10.4042 4.14105C6.19488 4.89423 3 8.57402 3 13C3 17.9706 7.02944 22 12 22C16.9706 22 21 17.9706 21 13C21 9.74015 19.2669 6.88508 16.6718 5.30598C17.9996 4.5283 18.8803 3.27439 19.221 1.88908C19.2876 1.61842 19.2382 1.33227 19.0848 1.0996C18.9313 0.866932 18.6877 0.708867 18.4127 0.663518ZM16.787 2.52429C16.5009 2.94965 16.1159 3.31764 15.6418 3.59135C15.1501 3.87523 14.6185 4.02544 14.0881 4.05305C14.3772 3.60754 14.7731 3.22226 15.2648 2.93838C15.7416 2.66308 16.2236 2.5387 16.787 2.52429ZM18.6483 14.1727C18.7437 13.6288 18.3801 13.1104 17.8361 13.015C17.2921 12.9197 16.7738 13.2833 16.6784 13.8273C16.3348 15.7867 14.7867 17.3348 12.8273 17.6784C12.2833 17.7738 11.9196 18.2921 12.015 18.8361C12.1104 19.3801 12.6287 19.7437 13.1727 19.6483C15.9617 19.1593 18.1592 16.9617 18.6483 14.1727Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -545,7 +545,8 @@ export type CentralIconName =
|
|
|
545
545
|
| "IconConstructionHelmet"
|
|
546
546
|
| "IconContacts"
|
|
547
547
|
| "IconContrast"
|
|
548
|
-
| "
|
|
548
|
+
| "IconControlKeyLeft"
|
|
549
|
+
| "IconControlKeyRight"
|
|
549
550
|
| "IconCookies"
|
|
550
551
|
| "IconCooking"
|
|
551
552
|
| "IconCopilot"
|
|
@@ -862,6 +863,7 @@ export type CentralIconName =
|
|
|
862
863
|
| "IconGlass"
|
|
863
864
|
| "IconGlobe"
|
|
864
865
|
| "IconGlobe2"
|
|
866
|
+
| "IconGoatHead"
|
|
865
867
|
| "IconGoldMedal"
|
|
866
868
|
| "IconGolfBall"
|
|
867
869
|
| "IconGooey"
|
|
@@ -1169,6 +1171,7 @@ export type CentralIconName =
|
|
|
1169
1171
|
| "IconOpera"
|
|
1170
1172
|
| "IconOpt"
|
|
1171
1173
|
| "IconOptAlt"
|
|
1174
|
+
| "IconOptionKey"
|
|
1172
1175
|
| "IconOrange"
|
|
1173
1176
|
| "IconOrganisation"
|
|
1174
1177
|
| "IconPackage"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-3-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.138",
|
|
4
4
|
"style": "round-filled-radius-3-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-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": 1819,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 68,
|
|
@@ -1077,17 +1077,19 @@
|
|
|
1077
1077
|
]
|
|
1078
1078
|
},
|
|
1079
1079
|
"Keyboard": {
|
|
1080
|
-
"count":
|
|
1080
|
+
"count": 13,
|
|
1081
1081
|
"icons": [
|
|
1082
1082
|
"IconAt",
|
|
1083
1083
|
"IconBackward",
|
|
1084
1084
|
"IconCmd",
|
|
1085
1085
|
"IconCmdBox",
|
|
1086
|
-
"
|
|
1086
|
+
"IconControlKeyLeft",
|
|
1087
|
+
"IconControlKeyRight",
|
|
1087
1088
|
"IconEsc",
|
|
1088
1089
|
"IconHashtag",
|
|
1089
1090
|
"IconOpt",
|
|
1090
1091
|
"IconOptAlt",
|
|
1092
|
+
"IconOptionKey",
|
|
1091
1093
|
"IconShift",
|
|
1092
1094
|
"IconSpacebar"
|
|
1093
1095
|
]
|
|
@@ -1691,7 +1693,7 @@
|
|
|
1691
1693
|
]
|
|
1692
1694
|
},
|
|
1693
1695
|
"Things": {
|
|
1694
|
-
"count":
|
|
1696
|
+
"count": 125,
|
|
1695
1697
|
"icons": [
|
|
1696
1698
|
"IconAnvil",
|
|
1697
1699
|
"IconBackpack",
|
|
@@ -1741,6 +1743,7 @@
|
|
|
1741
1743
|
"IconFormPyramide",
|
|
1742
1744
|
"IconForYou",
|
|
1743
1745
|
"IconGalaxy",
|
|
1746
|
+
"IconGoatHead",
|
|
1744
1747
|
"IconGoldMedal",
|
|
1745
1748
|
"IconGraduateCap",
|
|
1746
1749
|
"IconInfinity",
|
|
@@ -2564,7 +2567,8 @@
|
|
|
2564
2567
|
"IconConstructionHelmet": "construction-helmet, work, wip",
|
|
2565
2568
|
"IconContacts": "contacts, address-book",
|
|
2566
2569
|
"IconContrast": "contrast",
|
|
2567
|
-
"
|
|
2570
|
+
"IconControlKeyLeft": "control-key-left",
|
|
2571
|
+
"IconControlKeyRight": "control-key-right",
|
|
2568
2572
|
"IconCookies": "cookies",
|
|
2569
2573
|
"IconCooking": "cooking, stirring",
|
|
2570
2574
|
"IconCopilot": "copilot",
|
|
@@ -2881,6 +2885,7 @@
|
|
|
2881
2885
|
"IconGlass": "glass, material, shader, liquid-glass",
|
|
2882
2886
|
"IconGlobe": "globe, network, translate",
|
|
2883
2887
|
"IconGlobe2": "globe-2, network, translate",
|
|
2888
|
+
"IconGoatHead": "goat-head, goated",
|
|
2884
2889
|
"IconGoldMedal": "gold-medal, first-place, win",
|
|
2885
2890
|
"IconGolfBall": "golf-ball",
|
|
2886
2891
|
"IconGooey": "gooey, morph, liquid-glass",
|
|
@@ -3188,6 +3193,7 @@
|
|
|
3188
3193
|
"IconOpera": "opera",
|
|
3189
3194
|
"IconOpt": "opt, option, key",
|
|
3190
3195
|
"IconOptAlt": "opt-alt, option alt, key",
|
|
3196
|
+
"IconOptionKey": "option-key",
|
|
3191
3197
|
"IconOrange": "orange",
|
|
3192
3198
|
"IconOrganisation": "organisation, organimgram",
|
|
3193
3199
|
"IconPackage": "package, delivery",
|
package/index.d.ts
CHANGED
|
@@ -544,7 +544,8 @@ export { IconConsoleSparkle, default as IconConsoleSparkleDefault, } from "./Ico
|
|
|
544
544
|
export { IconConstructionHelmet, default as IconConstructionHelmetDefault, } from "./IconConstructionHelmet";
|
|
545
545
|
export { IconContacts, default as IconContactsDefault } from "./IconContacts";
|
|
546
546
|
export { IconContrast, default as IconContrastDefault } from "./IconContrast";
|
|
547
|
-
export {
|
|
547
|
+
export { IconControlKeyLeft, default as IconControlKeyLeftDefault, } from "./IconControlKeyLeft";
|
|
548
|
+
export { IconControlKeyRight, default as IconControlKeyRightDefault, } from "./IconControlKeyRight";
|
|
548
549
|
export { IconCookies, default as IconCookiesDefault } from "./IconCookies";
|
|
549
550
|
export { IconCooking, default as IconCookingDefault } from "./IconCooking";
|
|
550
551
|
export { IconCopilot, default as IconCopilotDefault } from "./IconCopilot";
|
|
@@ -861,6 +862,7 @@ export { IconGithub, default as IconGithubDefault } from "./IconGithub";
|
|
|
861
862
|
export { IconGlass, default as IconGlassDefault } from "./IconGlass";
|
|
862
863
|
export { IconGlobe, default as IconGlobeDefault } from "./IconGlobe";
|
|
863
864
|
export { IconGlobe2, default as IconGlobe2Default } from "./IconGlobe2";
|
|
865
|
+
export { IconGoatHead, default as IconGoatHeadDefault } from "./IconGoatHead";
|
|
864
866
|
export { IconGoldMedal, default as IconGoldMedalDefault, } from "./IconGoldMedal";
|
|
865
867
|
export { IconGolfBall, default as IconGolfBallDefault } from "./IconGolfBall";
|
|
866
868
|
export { IconGooey, default as IconGooeyDefault } from "./IconGooey";
|
|
@@ -1168,6 +1170,7 @@ export { IconOpenclaw, default as IconOpenclawDefault } from "./IconOpenclaw";
|
|
|
1168
1170
|
export { IconOpera, default as IconOperaDefault } from "./IconOpera";
|
|
1169
1171
|
export { IconOpt, default as IconOptDefault } from "./IconOpt";
|
|
1170
1172
|
export { IconOptAlt, default as IconOptAltDefault } from "./IconOptAlt";
|
|
1173
|
+
export { IconOptionKey, default as IconOptionKeyDefault, } from "./IconOptionKey";
|
|
1171
1174
|
export { IconOrange, default as IconOrangeDefault } from "./IconOrange";
|
|
1172
1175
|
export { IconOrganisation, default as IconOrganisationDefault, } from "./IconOrganisation";
|
|
1173
1176
|
export { IconPackage, default as IconPackageDefault } from "./IconPackage";
|