@central-icons-react-native/round-filled-radius-1-stroke-1 1.1.194 → 1.1.196
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/IconCheckmark1Medium/index.d.ts +4 -0
- package/IconCheckmark1Medium/index.js +2 -0
- package/IconCheckmark1Medium/index.js.map +1 -0
- package/IconCheckmark1Medium/index.mjs +2 -0
- package/IconCheckmark1Medium/index.mjs.map +1 -0
- package/IconCheckmark2Medium/index.d.ts +4 -0
- package/IconCheckmark2Medium/index.js +2 -0
- package/IconCheckmark2Medium/index.js.map +1 -0
- package/IconCheckmark2Medium/index.mjs +2 -0
- package/IconCheckmark2Medium/index.mjs.map +1 -0
- package/IconGraduateCap2/index.d.ts +4 -0
- package/IconGraduateCap2/index.js +2 -0
- package/IconGraduateCap2/index.js.map +1 -0
- package/IconGraduateCap2/index.mjs +2 -0
- package/IconGraduateCap2/index.mjs.map +1 -0
- package/IconSendLater/index.d.ts +4 -0
- package/IconSendLater/index.js +2 -0
- package/IconSendLater/index.js.map +1 -0
- package/IconSendLater/index.mjs +2 -0
- package/IconSendLater/index.mjs.map +1 -0
- package/IconShortcut/index.d.ts +4 -0
- package/IconShortcut/index.js +2 -0
- package/IconShortcut/index.js.map +1 -0
- package/IconShortcut/index.mjs +2 -0
- package/IconShortcut/index.mjs.map +1 -0
- package/README.md +6 -1
- package/filtered-icons.json +72 -2
- package/icons/index.d.ts +5 -0
- package/icons-index.json +19 -9
- package/index.d.ts +5 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +36 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>a(n({},"__esModule",{value:!0}),r);var d={};g(d,{IconCheckmark1Medium:()=>i,default:()=>v});module.exports=h(d);var p=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M17.1905 6.41296C17.5146 5.96596 18.1399 5.8664 18.587 6.1903C19.034 6.51435 19.1336 7.13962 18.8097 7.58679L10.8419 18.5868C10.6726 18.8204 10.4105 18.9697 10.1232 18.996C9.83575 19.0221 9.55073 18.9227 9.34192 18.7235L5.30969 14.8729C4.91027 14.4915 4.89509 13.8583 5.27649 13.4589C5.65786 13.0595 6.29111 13.0453 6.69055 13.4266L9.89367 16.4852L17.1905 6.41296Z",fill:"currentColor"})),v=i;0&&(module.exports={IconCheckmark1Medium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCheckmark1Medium/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 IconCheckmark1Medium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.1905 6.41296C17.5146 5.96596 18.1399 5.8664 18.587 6.1903C19.034 6.51435 19.1336 7.13962 18.8097 7.58679L10.8419 18.5868C10.6726 18.8204 10.4105 18.9697 10.1232 18.996C9.83575 19.0221 9.55073 18.9227 9.34192 18.7235L5.30969 14.8729C4.91027 14.4915 4.89509 13.8583 5.27649 13.4589C5.65786 13.0595 6.29111 13.0453 6.69055 13.4266L9.89367 16.4852L17.1905 6.41296Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCheckmark1Medium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+WACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCheckmark1Medium_exports","__export","IconCheckmark1Medium","IconCheckmark1Medium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCheckmark1Medium","props","React","CentralIconBase","IconCheckmark1Medium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(a,{d:"M17.1905 6.41296C17.5146 5.96596 18.1399 5.8664 18.587 6.1903C19.034 6.51435 19.1336 7.13962 18.8097 7.58679L10.8419 18.5868C10.6726 18.8204 10.4105 18.9697 10.1232 18.996C9.83575 19.0221 9.55073 18.9227 9.34192 18.7235L5.30969 14.8729C4.91027 14.4915 4.89509 13.8583 5.27649 13.4589C5.65786 13.0595 6.29111 13.0453 6.69055 13.4266L9.89367 16.4852L17.1905 6.41296Z",fill:"currentColor"})),P=m;export{m as IconCheckmark1Medium,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCheckmark1Medium/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 IconCheckmark1Medium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.1905 6.41296C17.5146 5.96596 18.1399 5.8664 18.587 6.1903C19.034 6.51435 19.1336 7.13962 18.8097 7.58679L10.8419 18.5868C10.6726 18.8204 10.4105 18.9697 10.1232 18.996C9.83575 19.0221 9.55073 18.9227 9.34192 18.7235L5.30969 14.8729C4.91027 14.4915 4.89509 13.8583 5.27649 13.4589C5.65786 13.0595 6.29111 13.0453 6.69055 13.4266L9.89367 16.4852L17.1905 6.41296Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCheckmark1Medium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+WACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCheckmark1Medium","props","React","CentralIconBase","IconCheckmark1Medium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>a(n({},"__esModule",{value:!0}),r);var d={};g(d,{IconCheckmark2Medium:()=>i,default:()=>v});module.exports=h(d);var p=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M18.4403 6.50117C18.7159 6.19215 19.1898 6.16516 19.4989 6.44062C19.808 6.71619 19.8349 7.19003 19.5595 7.49921L9.75968 18.4992C9.62316 18.6523 9.42957 18.7434 9.22452 18.7502C9.01963 18.7569 8.82103 18.6789 8.67472 18.5353L4.47452 14.4103C4.17904 14.1201 4.17462 13.6453 4.46476 13.3498C4.75497 13.0543 5.22978 13.0499 5.5253 13.34L9.163 16.9123L18.4403 6.50117Z",fill:"currentColor"})),v=i;0&&(module.exports={IconCheckmark2Medium});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCheckmark2Medium/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 IconCheckmark2Medium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.4403 6.50117C18.7159 6.19215 19.1898 6.16516 19.4989 6.44062C19.808 6.71619 19.8349 7.19003 19.5595 7.49921L9.75968 18.4992C9.62316 18.6523 9.42957 18.7434 9.22452 18.7502C9.01963 18.7569 8.82103 18.6789 8.67472 18.5353L4.47452 14.4103C4.17904 14.1201 4.17462 13.6453 4.46476 13.3498C4.75497 13.0543 5.22978 13.0499 5.5253 13.34L9.163 16.9123L18.4403 6.50117Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCheckmark2Medium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8WACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCheckmark2Medium_exports","__export","IconCheckmark2Medium","IconCheckmark2Medium_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCheckmark2Medium","props","React","CentralIconBase","IconCheckmark2Medium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(a,{d:"M18.4403 6.50117C18.7159 6.19215 19.1898 6.16516 19.4989 6.44062C19.808 6.71619 19.8349 7.19003 19.5595 7.49921L9.75968 18.4992C9.62316 18.6523 9.42957 18.7434 9.22452 18.7502C9.01963 18.7569 8.82103 18.6789 8.67472 18.5353L4.47452 14.4103C4.17904 14.1201 4.17462 13.6453 4.46476 13.3498C4.75497 13.0543 5.22978 13.0499 5.5253 13.34L9.163 16.9123L18.4403 6.50117Z",fill:"currentColor"})),P=m;export{m as IconCheckmark2Medium,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCheckmark2Medium/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 IconCheckmark2Medium: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.4403 6.50117C18.7159 6.19215 19.1898 6.16516 19.4989 6.44062C19.808 6.71619 19.8349 7.19003 19.5595 7.49921L9.75968 18.4992C9.62316 18.6523 9.42957 18.7434 9.22452 18.7502C9.01963 18.7569 8.82103 18.6789 8.67472 18.5353L4.47452 14.4103C4.17904 14.1201 4.17462 13.6453 4.46476 13.3498C4.75497 13.0543 5.22978 13.0499 5.5253 13.34L9.163 16.9123L18.4403 6.50117Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCheckmark2Medium;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8WACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCheckmark2Medium","props","React","CentralIconBase","IconCheckmark2Medium_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(C,r)=>{for(var o in r)n(C,o,{get:r[o],enumerable:!0})},a=(C,r,o,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of B(r))!x.call(C,t)&&t!==o&&n(C,t,{get:()=>r[t],enumerable:!(l=i(r,t))||l.enumerable});return C};var m=(C,r,o)=>(o=C!=null?u(I(C)):{},a(r||!C||!C.__esModule?n(o,"default",{value:C,enumerable:!0}):o,C)),V=C=>a(n({},"__esModule",{value:!0}),C);var g={};P(g,{IconGraduateCap2:()=>c,default:()=>d});module.exports=V(g);var e=m(require("react"));var L=m(require("react")),f=require("react-native-svg"),s=({children:C,size:r=24,...o})=>L.default.createElement(f.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 p=require("react-native-svg"),c=C=>e.default.createElement(s,{...C},e.default.createElement(p.Path,{d:"M12.0009 7.99981C13.1055 7.99981 14.0009 8.44753 14.0009 8.99981C14.0009 9.17131 13.9139 9.3324 13.7617 9.47344L17.331 11.6141C18.9876 12.6081 20.0009 14.399 20.0009 16.3309V17.6346C20.2996 17.8076 20.5009 18.1299 20.5009 18.4998V20.9998C20.5008 21.552 20.0531 21.9998 19.5009 21.9998C18.9487 21.9998 18.5011 21.552 18.5009 20.9998V18.4998C18.5009 18.1299 18.7023 17.8076 19.0009 17.6346V16.3309C19.0009 14.7504 18.1715 13.2858 16.8164 12.4725L12.6152 9.95098C12.4216 9.98219 12.2153 9.99981 12.0009 9.99981C10.8965 9.99981 10.0012 9.55198 10.0009 8.99981C10.0009 8.44753 10.8964 7.99981 12.0009 7.99981Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M11.3105 15.8328C11.747 16.0414 12.255 16.0414 12.6914 15.8328L16.9238 13.8074C17.6031 14.4597 18.0009 15.3671 18.0009 16.3309V17.1775C17.6908 17.5288 17.5009 17.9914 17.5009 18.4998V19.3943C17.4871 19.4007 17.4739 19.4085 17.4599 19.4149C16.0083 20.0758 14.0598 20.4695 12.0009 20.4695C9.94215 20.4695 7.99357 20.0758 6.54196 19.4149C5.81695 19.0847 5.19353 18.6777 4.74508 18.2C4.29431 17.7196 4.00108 17.1439 4.00094 16.4998V12.3357L11.3105 15.8328Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M11.8047 3.04376C11.9318 2.99974 12.0701 2.99973 12.1972 3.04376L12.2597 3.06915L23.5283 8.4588C23.9824 8.67655 23.9826 9.32325 23.5283 9.54083L19.0439 11.6854C18.6856 11.3348 18.2859 11.0208 17.8457 10.7566L14.997 9.04864C14.9975 9.03258 15.0009 9.01611 15.0009 8.99981C15.0009 8.14097 14.3305 7.63241 13.8623 7.39825C13.3343 7.13426 12.6748 6.99982 12.0009 6.99981C11.3271 6.99981 10.6676 7.13426 10.1396 7.39825C9.67139 7.63239 9.00094 8.1409 9.00094 8.99981C9.00114 9.85855 9.67145 10.3673 10.1396 10.6014C10.6676 10.8653 11.3272 10.9998 12.0009 10.9998C12.1343 10.9998 12.2654 10.9945 12.3935 10.9842L15.9931 13.1443L12.2597 14.9305C12.0962 15.0086 11.9057 15.0085 11.7422 14.9305L0.4736 9.54083C0.0191936 9.32322 0.0192397 8.67646 0.4736 8.4588L11.7422 3.06915L11.8047 3.04376Z",fill:"currentColor"})),d=c;0&&(module.exports={IconGraduateCap2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGraduateCap2/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 IconGraduateCap2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.0009 7.99981C13.1055 7.99981 14.0009 8.44753 14.0009 8.99981C14.0009 9.17131 13.9139 9.3324 13.7617 9.47344L17.331 11.6141C18.9876 12.6081 20.0009 14.399 20.0009 16.3309V17.6346C20.2996 17.8076 20.5009 18.1299 20.5009 18.4998V20.9998C20.5008 21.552 20.0531 21.9998 19.5009 21.9998C18.9487 21.9998 18.5011 21.552 18.5009 20.9998V18.4998C18.5009 18.1299 18.7023 17.8076 19.0009 17.6346V16.3309C19.0009 14.7504 18.1715 13.2858 16.8164 12.4725L12.6152 9.95098C12.4216 9.98219 12.2153 9.99981 12.0009 9.99981C10.8965 9.99981 10.0012 9.55198 10.0009 8.99981C10.0009 8.44753 10.8964 7.99981 12.0009 7.99981Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.3105 15.8328C11.747 16.0414 12.255 16.0414 12.6914 15.8328L16.9238 13.8074C17.6031 14.4597 18.0009 15.3671 18.0009 16.3309V17.1775C17.6908 17.5288 17.5009 17.9914 17.5009 18.4998V19.3943C17.4871 19.4007 17.4739 19.4085 17.4599 19.4149C16.0083 20.0758 14.0598 20.4695 12.0009 20.4695C9.94215 20.4695 7.99357 20.0758 6.54196 19.4149C5.81695 19.0847 5.19353 18.6777 4.74508 18.2C4.29431 17.7196 4.00108 17.1439 4.00094 16.4998V12.3357L11.3105 15.8328Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.8047 3.04376C11.9318 2.99974 12.0701 2.99973 12.1972 3.04376L12.2597 3.06915L23.5283 8.4588C23.9824 8.67655 23.9826 9.32325 23.5283 9.54083L19.0439 11.6854C18.6856 11.3348 18.2859 11.0208 17.8457 10.7566L14.997 9.04864C14.9975 9.03258 15.0009 9.01611 15.0009 8.99981C15.0009 8.14097 14.3305 7.63241 13.8623 7.39825C13.3343 7.13426 12.6748 6.99982 12.0009 6.99981C11.3271 6.99981 10.6676 7.13426 10.1396 7.39825C9.67139 7.63239 9.00094 8.1409 9.00094 8.99981C9.00114 9.85855 9.67145 10.3673 10.1396 10.6014C10.6676 10.8653 11.3272 10.9998 12.0009 10.9998C12.1343 10.9998 12.2654 10.9945 12.3935 10.9842L15.9931 13.1443L12.2597 14.9305C12.0962 15.0086 11.9057 15.0085 11.7422 14.9305L0.4736 9.54083C0.0191936 9.32322 0.0192397 8.67646 0.4736 8.4588L11.7422 3.06915L11.8047 3.04376Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGraduateCap2;\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,+lBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ucACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kxBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGraduateCap2_exports","__export","IconGraduateCap2","IconGraduateCap2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGraduateCap2","props","React","CentralIconBase","IconGraduateCap2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:C=24,...n})=>p.createElement(l,{...n,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var a=o=>r.createElement(e,{...o},r.createElement(t,{d:"M12.0009 7.99981C13.1055 7.99981 14.0009 8.44753 14.0009 8.99981C14.0009 9.17131 13.9139 9.3324 13.7617 9.47344L17.331 11.6141C18.9876 12.6081 20.0009 14.399 20.0009 16.3309V17.6346C20.2996 17.8076 20.5009 18.1299 20.5009 18.4998V20.9998C20.5008 21.552 20.0531 21.9998 19.5009 21.9998C18.9487 21.9998 18.5011 21.552 18.5009 20.9998V18.4998C18.5009 18.1299 18.7023 17.8076 19.0009 17.6346V16.3309C19.0009 14.7504 18.1715 13.2858 16.8164 12.4725L12.6152 9.95098C12.4216 9.98219 12.2153 9.99981 12.0009 9.99981C10.8965 9.99981 10.0012 9.55198 10.0009 8.99981C10.0009 8.44753 10.8964 7.99981 12.0009 7.99981Z",fill:"currentColor"}),r.createElement(t,{d:"M11.3105 15.8328C11.747 16.0414 12.255 16.0414 12.6914 15.8328L16.9238 13.8074C17.6031 14.4597 18.0009 15.3671 18.0009 16.3309V17.1775C17.6908 17.5288 17.5009 17.9914 17.5009 18.4998V19.3943C17.4871 19.4007 17.4739 19.4085 17.4599 19.4149C16.0083 20.0758 14.0598 20.4695 12.0009 20.4695C9.94215 20.4695 7.99357 20.0758 6.54196 19.4149C5.81695 19.0847 5.19353 18.6777 4.74508 18.2C4.29431 17.7196 4.00108 17.1439 4.00094 16.4998V12.3357L11.3105 15.8328Z",fill:"currentColor"}),r.createElement(t,{d:"M11.8047 3.04376C11.9318 2.99974 12.0701 2.99973 12.1972 3.04376L12.2597 3.06915L23.5283 8.4588C23.9824 8.67655 23.9826 9.32325 23.5283 9.54083L19.0439 11.6854C18.6856 11.3348 18.2859 11.0208 17.8457 10.7566L14.997 9.04864C14.9975 9.03258 15.0009 9.01611 15.0009 8.99981C15.0009 8.14097 14.3305 7.63241 13.8623 7.39825C13.3343 7.13426 12.6748 6.99982 12.0009 6.99981C11.3271 6.99981 10.6676 7.13426 10.1396 7.39825C9.67139 7.63239 9.00094 8.1409 9.00094 8.99981C9.00114 9.85855 9.67145 10.3673 10.1396 10.6014C10.6676 10.8653 11.3272 10.9998 12.0009 10.9998C12.1343 10.9998 12.2654 10.9945 12.3935 10.9842L15.9931 13.1443L12.2597 14.9305C12.0962 15.0086 11.9057 15.0085 11.7422 14.9305L0.4736 9.54083C0.0191936 9.32322 0.0192397 8.67646 0.4736 8.4588L11.7422 3.06915L11.8047 3.04376Z",fill:"currentColor"})),x=a;export{a as IconGraduateCap2,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGraduateCap2/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 IconGraduateCap2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.0009 7.99981C13.1055 7.99981 14.0009 8.44753 14.0009 8.99981C14.0009 9.17131 13.9139 9.3324 13.7617 9.47344L17.331 11.6141C18.9876 12.6081 20.0009 14.399 20.0009 16.3309V17.6346C20.2996 17.8076 20.5009 18.1299 20.5009 18.4998V20.9998C20.5008 21.552 20.0531 21.9998 19.5009 21.9998C18.9487 21.9998 18.5011 21.552 18.5009 20.9998V18.4998C18.5009 18.1299 18.7023 17.8076 19.0009 17.6346V16.3309C19.0009 14.7504 18.1715 13.2858 16.8164 12.4725L12.6152 9.95098C12.4216 9.98219 12.2153 9.99981 12.0009 9.99981C10.8965 9.99981 10.0012 9.55198 10.0009 8.99981C10.0009 8.44753 10.8964 7.99981 12.0009 7.99981Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.3105 15.8328C11.747 16.0414 12.255 16.0414 12.6914 15.8328L16.9238 13.8074C17.6031 14.4597 18.0009 15.3671 18.0009 16.3309V17.1775C17.6908 17.5288 17.5009 17.9914 17.5009 18.4998V19.3943C17.4871 19.4007 17.4739 19.4085 17.4599 19.4149C16.0083 20.0758 14.0598 20.4695 12.0009 20.4695C9.94215 20.4695 7.99357 20.0758 6.54196 19.4149C5.81695 19.0847 5.19353 18.6777 4.74508 18.2C4.29431 17.7196 4.00108 17.1439 4.00094 16.4998V12.3357L11.3105 15.8328Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.8047 3.04376C11.9318 2.99974 12.0701 2.99973 12.1972 3.04376L12.2597 3.06915L23.5283 8.4588C23.9824 8.67655 23.9826 9.32325 23.5283 9.54083L19.0439 11.6854C18.6856 11.3348 18.2859 11.0208 17.8457 10.7566L14.997 9.04864C14.9975 9.03258 15.0009 9.01611 15.0009 8.99981C15.0009 8.14097 14.3305 7.63241 13.8623 7.39825C13.3343 7.13426 12.6748 6.99982 12.0009 6.99981C11.3271 6.99981 10.6676 7.13426 10.1396 7.39825C9.67139 7.63239 9.00094 8.1409 9.00094 8.99981C9.00114 9.85855 9.67145 10.3673 10.1396 10.6014C10.6676 10.8653 11.3272 10.9998 12.0009 10.9998C12.1343 10.9998 12.2654 10.9945 12.3935 10.9842L15.9931 13.1443L12.2597 14.9305C12.0962 15.0086 11.9057 15.0085 11.7422 14.9305L0.4736 9.54083C0.0191936 9.32322 0.0192397 8.67646 0.4736 8.4588L11.7422 3.06915L11.8047 3.04376Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGraduateCap2;\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,+lBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ucACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kxBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGraduateCap2","props","React","CentralIconBase","IconGraduateCap2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var t=Object.defineProperty;var M=Object.getOwnPropertyDescriptor;var Z=Object.getOwnPropertyNames;var a=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(C,r)=>{for(var l in r)t(C,l,{get:r[l],enumerable:!0})},f=(C,r,l,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of Z(r))!B.call(C,e)&&e!==l&&t(C,e,{get:()=>r[e],enumerable:!(p=M(r,e))||p.enumerable});return C};var i=(C,r,l)=>(l=C!=null?c(a(C)):{},f(r||!C||!C.__esModule?t(l,"default",{value:C,enumerable:!0}):l,C)),v=C=>f(t({},"__esModule",{value:!0}),C);var P={};I(P,{IconSendLater:()=>s,default:()=>x});module.exports=v(P);var o=i(require("react"));var u=i(require("react")),d=require("react-native-svg"),m=({children:C,size:r=24,...l})=>u.default.createElement(d.Svg,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C);var n=require("react-native-svg"),s=C=>o.default.createElement(m,{...C},o.default.createElement(n.Path,{d:"M14.0039 20.7764C14.2732 20.7151 14.5413 20.8841 14.6025 21.1533C14.6635 21.4224 14.4947 21.6898 14.2256 21.751C13.5094 21.9138 12.7644 22 12 22C11.2356 22 10.4906 21.9138 9.77441 21.751C9.50529 21.6898 9.33652 21.4224 9.39746 21.1533C9.45868 20.8841 9.72682 20.7151 9.99609 20.7764C10.64 20.9227 11.3107 21 12 21C12.6893 21 13.36 20.9227 14.0039 20.7764Z",fill:"currentColor"}),o.default.createElement(n.Path,{d:"M3.68848 16.6318C3.92203 16.4848 4.2307 16.5547 4.37793 16.7881C5.09783 17.9314 6.06859 18.9022 7.21191 19.6221C7.44529 19.7693 7.51522 20.078 7.36816 20.3115C7.221 20.5451 6.91235 20.6149 6.67871 20.4678C5.40889 19.6682 4.3318 18.5911 3.53223 17.3213C3.38511 17.0876 3.45489 16.779 3.68848 16.6318Z",fill:"currentColor"}),o.default.createElement(n.Path,{d:"M19.6221 16.7881C19.7693 16.5547 20.078 16.4848 20.3115 16.6318C20.5451 16.779 20.6149 17.0876 20.4678 17.3213C19.6682 18.5911 18.5911 19.6682 17.3213 20.4678C17.0876 20.6149 16.779 20.5451 16.6318 20.3115C16.4848 20.078 16.5547 19.7693 16.7881 19.6221C17.9314 18.9022 18.9022 17.9314 19.6221 16.7881Z",fill:"currentColor"}),o.default.createElement(n.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 4.5C16.1421 4.5 19.5 7.85786 19.5 12C19.5 16.1421 16.1421 19.5 12 19.5C7.85786 19.5 4.5 16.1421 4.5 12C4.5 7.85786 7.85786 4.5 12 4.5ZM12 8C11.7239 8 11.5 8.22386 11.5 8.5V12C11.5 12.1326 11.5527 12.2597 11.6465 12.3535L14.1465 14.8535C14.3417 15.0488 14.6583 15.0488 14.8535 14.8535C15.0488 14.6583 15.0488 14.3417 14.8535 14.1465L12.5 11.793V8.5C12.5 8.22386 12.2761 8 12 8Z",fill:"currentColor"}),o.default.createElement(n.Path,{d:"M2.84668 9.39746C3.11595 9.45868 3.28485 9.72682 3.22363 9.99609C3.07725 10.64 3 11.3107 3 12C3 12.6893 3.07725 13.36 3.22363 14.0039C3.28485 14.2732 3.11595 14.5413 2.84668 14.6025C2.57755 14.6635 2.31021 14.4947 2.24902 14.2256C2.0862 13.5094 2 12.7644 2 12C2 11.2356 2.0862 10.4906 2.24902 9.77441C2.31021 9.50529 2.57755 9.33652 2.84668 9.39746Z",fill:"currentColor"}),o.default.createElement(n.Path,{d:"M21.1533 9.39746C21.4224 9.33652 21.6898 9.50529 21.751 9.77441C21.9138 10.4906 22 11.2356 22 12C22 12.7644 21.9138 13.5094 21.751 14.2256C21.6898 14.4947 21.4224 14.6635 21.1533 14.6025C20.8841 14.5413 20.7151 14.2732 20.7764 14.0039C20.9227 13.36 21 12.6893 21 12C21 11.3107 20.9227 10.64 20.7764 9.99609C20.7151 9.72682 20.8841 9.45868 21.1533 9.39746Z",fill:"currentColor"}),o.default.createElement(n.Path,{d:"M6.67871 3.53223C6.91235 3.38511 7.221 3.45489 7.36816 3.68848C7.51522 3.92203 7.44529 4.2307 7.21191 4.37793C6.06859 5.09783 5.09783 6.06859 4.37793 7.21191C4.2307 7.44529 3.92203 7.51522 3.68848 7.36816C3.45489 7.221 3.38511 6.91235 3.53223 6.67871C4.3318 5.40889 5.40889 4.3318 6.67871 3.53223Z",fill:"currentColor"}),o.default.createElement(n.Path,{d:"M16.6318 3.68848C16.779 3.45489 17.0876 3.38511 17.3213 3.53223C18.5911 4.3318 19.6682 5.40889 20.4678 6.67871C20.6149 6.91235 20.5451 7.221 20.3115 7.36816C20.078 7.51522 19.7693 7.44529 19.6221 7.21191C18.9022 6.06859 17.9314 5.09783 16.7881 4.37793C16.5547 4.2307 16.4848 3.92203 16.6318 3.68848Z",fill:"currentColor"}),o.default.createElement(n.Path,{d:"M12 2C12.7644 2 13.5094 2.0862 14.2256 2.24902C14.4947 2.31021 14.6635 2.57755 14.6025 2.84668C14.5413 3.11595 14.2732 3.28485 14.0039 3.22363C13.36 3.07725 12.6893 3 12 3C11.3107 3 10.64 3.07725 9.99609 3.22363C9.72682 3.28485 9.45868 3.11595 9.39746 2.84668C9.33652 2.57755 9.50529 2.31021 9.77441 2.24902C10.4906 2.0862 11.2356 2 12 2Z",fill:"currentColor"})),x=s;0&&(module.exports={IconSendLater});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSendLater/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 IconSendLater: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.0039 20.7764C14.2732 20.7151 14.5413 20.8841 14.6025 21.1533C14.6635 21.4224 14.4947 21.6898 14.2256 21.751C13.5094 21.9138 12.7644 22 12 22C11.2356 22 10.4906 21.9138 9.77441 21.751C9.50529 21.6898 9.33652 21.4224 9.39746 21.1533C9.45868 20.8841 9.72682 20.7151 9.99609 20.7764C10.64 20.9227 11.3107 21 12 21C12.6893 21 13.36 20.9227 14.0039 20.7764Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.68848 16.6318C3.92203 16.4848 4.2307 16.5547 4.37793 16.7881C5.09783 17.9314 6.06859 18.9022 7.21191 19.6221C7.44529 19.7693 7.51522 20.078 7.36816 20.3115C7.221 20.5451 6.91235 20.6149 6.67871 20.4678C5.40889 19.6682 4.3318 18.5911 3.53223 17.3213C3.38511 17.0876 3.45489 16.779 3.68848 16.6318Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.6221 16.7881C19.7693 16.5547 20.078 16.4848 20.3115 16.6318C20.5451 16.779 20.6149 17.0876 20.4678 17.3213C19.6682 18.5911 18.5911 19.6682 17.3213 20.4678C17.0876 20.6149 16.779 20.5451 16.6318 20.3115C16.4848 20.078 16.5547 19.7693 16.7881 19.6221C17.9314 18.9022 18.9022 17.9314 19.6221 16.7881Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 4.5C16.1421 4.5 19.5 7.85786 19.5 12C19.5 16.1421 16.1421 19.5 12 19.5C7.85786 19.5 4.5 16.1421 4.5 12C4.5 7.85786 7.85786 4.5 12 4.5ZM12 8C11.7239 8 11.5 8.22386 11.5 8.5V12C11.5 12.1326 11.5527 12.2597 11.6465 12.3535L14.1465 14.8535C14.3417 15.0488 14.6583 15.0488 14.8535 14.8535C15.0488 14.6583 15.0488 14.3417 14.8535 14.1465L12.5 11.793V8.5C12.5 8.22386 12.2761 8 12 8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.84668 9.39746C3.11595 9.45868 3.28485 9.72682 3.22363 9.99609C3.07725 10.64 3 11.3107 3 12C3 12.6893 3.07725 13.36 3.22363 14.0039C3.28485 14.2732 3.11595 14.5413 2.84668 14.6025C2.57755 14.6635 2.31021 14.4947 2.24902 14.2256C2.0862 13.5094 2 12.7644 2 12C2 11.2356 2.0862 10.4906 2.24902 9.77441C2.31021 9.50529 2.57755 9.33652 2.84668 9.39746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.1533 9.39746C21.4224 9.33652 21.6898 9.50529 21.751 9.77441C21.9138 10.4906 22 11.2356 22 12C22 12.7644 21.9138 13.5094 21.751 14.2256C21.6898 14.4947 21.4224 14.6635 21.1533 14.6025C20.8841 14.5413 20.7151 14.2732 20.7764 14.0039C20.9227 13.36 21 12.6893 21 12C21 11.3107 20.9227 10.64 20.7764 9.99609C20.7151 9.72682 20.8841 9.45868 21.1533 9.39746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.67871 3.53223C6.91235 3.38511 7.221 3.45489 7.36816 3.68848C7.51522 3.92203 7.44529 4.2307 7.21191 4.37793C6.06859 5.09783 5.09783 6.06859 4.37793 7.21191C4.2307 7.44529 3.92203 7.51522 3.68848 7.36816C3.45489 7.221 3.38511 6.91235 3.53223 6.67871C4.3318 5.40889 5.40889 4.3318 6.67871 3.53223Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.6318 3.68848C16.779 3.45489 17.0876 3.38511 17.3213 3.53223C18.5911 4.3318 19.6682 5.40889 20.4678 6.67871C20.6149 6.91235 20.5451 7.221 20.3115 7.36816C20.078 7.51522 19.7693 7.44529 19.6221 7.21191C18.9022 6.06859 17.9314 5.09783 16.7881 4.37793C16.5547 4.2307 16.4848 3.92203 16.6318 3.68848Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 2C12.7644 2 13.5094 2.0862 14.2256 2.24902C14.4947 2.31021 14.6635 2.57755 14.6025 2.84668C14.5413 3.11595 14.2732 3.28485 14.0039 3.22363C13.36 3.07725 12.6893 3 12 3C11.3107 3 10.64 3.07725 9.99609 3.22363C9.72682 3.28485 9.45868 3.11595 9.39746 2.84668C9.33652 2.57755 9.50529 2.31021 9.77441 2.24902C10.4906 2.0862 11.2356 2 12 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSendLater;\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,EAAE,sWACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gTACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+XACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gWACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sWACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8SACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qVACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSendLater_exports","__export","IconSendLater","IconSendLater_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSendLater","props","React","CentralIconBase","IconSendLater_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import C from"react";import t from"react";import{Svg as p}from"react-native-svg";var n=({children:l,size:o=24,...e})=>t.createElement(p,{...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 f=l=>C.createElement(n,{...l},C.createElement(r,{d:"M14.0039 20.7764C14.2732 20.7151 14.5413 20.8841 14.6025 21.1533C14.6635 21.4224 14.4947 21.6898 14.2256 21.751C13.5094 21.9138 12.7644 22 12 22C11.2356 22 10.4906 21.9138 9.77441 21.751C9.50529 21.6898 9.33652 21.4224 9.39746 21.1533C9.45868 20.8841 9.72682 20.7151 9.99609 20.7764C10.64 20.9227 11.3107 21 12 21C12.6893 21 13.36 20.9227 14.0039 20.7764Z",fill:"currentColor"}),C.createElement(r,{d:"M3.68848 16.6318C3.92203 16.4848 4.2307 16.5547 4.37793 16.7881C5.09783 17.9314 6.06859 18.9022 7.21191 19.6221C7.44529 19.7693 7.51522 20.078 7.36816 20.3115C7.221 20.5451 6.91235 20.6149 6.67871 20.4678C5.40889 19.6682 4.3318 18.5911 3.53223 17.3213C3.38511 17.0876 3.45489 16.779 3.68848 16.6318Z",fill:"currentColor"}),C.createElement(r,{d:"M19.6221 16.7881C19.7693 16.5547 20.078 16.4848 20.3115 16.6318C20.5451 16.779 20.6149 17.0876 20.4678 17.3213C19.6682 18.5911 18.5911 19.6682 17.3213 20.4678C17.0876 20.6149 16.779 20.5451 16.6318 20.3115C16.4848 20.078 16.5547 19.7693 16.7881 19.6221C17.9314 18.9022 18.9022 17.9314 19.6221 16.7881Z",fill:"currentColor"}),C.createElement(r,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 4.5C16.1421 4.5 19.5 7.85786 19.5 12C19.5 16.1421 16.1421 19.5 12 19.5C7.85786 19.5 4.5 16.1421 4.5 12C4.5 7.85786 7.85786 4.5 12 4.5ZM12 8C11.7239 8 11.5 8.22386 11.5 8.5V12C11.5 12.1326 11.5527 12.2597 11.6465 12.3535L14.1465 14.8535C14.3417 15.0488 14.6583 15.0488 14.8535 14.8535C15.0488 14.6583 15.0488 14.3417 14.8535 14.1465L12.5 11.793V8.5C12.5 8.22386 12.2761 8 12 8Z",fill:"currentColor"}),C.createElement(r,{d:"M2.84668 9.39746C3.11595 9.45868 3.28485 9.72682 3.22363 9.99609C3.07725 10.64 3 11.3107 3 12C3 12.6893 3.07725 13.36 3.22363 14.0039C3.28485 14.2732 3.11595 14.5413 2.84668 14.6025C2.57755 14.6635 2.31021 14.4947 2.24902 14.2256C2.0862 13.5094 2 12.7644 2 12C2 11.2356 2.0862 10.4906 2.24902 9.77441C2.31021 9.50529 2.57755 9.33652 2.84668 9.39746Z",fill:"currentColor"}),C.createElement(r,{d:"M21.1533 9.39746C21.4224 9.33652 21.6898 9.50529 21.751 9.77441C21.9138 10.4906 22 11.2356 22 12C22 12.7644 21.9138 13.5094 21.751 14.2256C21.6898 14.4947 21.4224 14.6635 21.1533 14.6025C20.8841 14.5413 20.7151 14.2732 20.7764 14.0039C20.9227 13.36 21 12.6893 21 12C21 11.3107 20.9227 10.64 20.7764 9.99609C20.7151 9.72682 20.8841 9.45868 21.1533 9.39746Z",fill:"currentColor"}),C.createElement(r,{d:"M6.67871 3.53223C6.91235 3.38511 7.221 3.45489 7.36816 3.68848C7.51522 3.92203 7.44529 4.2307 7.21191 4.37793C6.06859 5.09783 5.09783 6.06859 4.37793 7.21191C4.2307 7.44529 3.92203 7.51522 3.68848 7.36816C3.45489 7.221 3.38511 6.91235 3.53223 6.67871C4.3318 5.40889 5.40889 4.3318 6.67871 3.53223Z",fill:"currentColor"}),C.createElement(r,{d:"M16.6318 3.68848C16.779 3.45489 17.0876 3.38511 17.3213 3.53223C18.5911 4.3318 19.6682 5.40889 20.4678 6.67871C20.6149 6.91235 20.5451 7.221 20.3115 7.36816C20.078 7.51522 19.7693 7.44529 19.6221 7.21191C18.9022 6.06859 17.9314 5.09783 16.7881 4.37793C16.5547 4.2307 16.4848 3.92203 16.6318 3.68848Z",fill:"currentColor"}),C.createElement(r,{d:"M12 2C12.7644 2 13.5094 2.0862 14.2256 2.24902C14.4947 2.31021 14.6635 2.57755 14.6025 2.84668C14.5413 3.11595 14.2732 3.28485 14.0039 3.22363C13.36 3.07725 12.6893 3 12 3C11.3107 3 10.64 3.07725 9.99609 3.22363C9.72682 3.28485 9.45868 3.11595 9.39746 2.84668C9.33652 2.57755 9.50529 2.31021 9.77441 2.24902C10.4906 2.0862 11.2356 2 12 2Z",fill:"currentColor"})),B=f;export{f as IconSendLater,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSendLater/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 IconSendLater: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.0039 20.7764C14.2732 20.7151 14.5413 20.8841 14.6025 21.1533C14.6635 21.4224 14.4947 21.6898 14.2256 21.751C13.5094 21.9138 12.7644 22 12 22C11.2356 22 10.4906 21.9138 9.77441 21.751C9.50529 21.6898 9.33652 21.4224 9.39746 21.1533C9.45868 20.8841 9.72682 20.7151 9.99609 20.7764C10.64 20.9227 11.3107 21 12 21C12.6893 21 13.36 20.9227 14.0039 20.7764Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.68848 16.6318C3.92203 16.4848 4.2307 16.5547 4.37793 16.7881C5.09783 17.9314 6.06859 18.9022 7.21191 19.6221C7.44529 19.7693 7.51522 20.078 7.36816 20.3115C7.221 20.5451 6.91235 20.6149 6.67871 20.4678C5.40889 19.6682 4.3318 18.5911 3.53223 17.3213C3.38511 17.0876 3.45489 16.779 3.68848 16.6318Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.6221 16.7881C19.7693 16.5547 20.078 16.4848 20.3115 16.6318C20.5451 16.779 20.6149 17.0876 20.4678 17.3213C19.6682 18.5911 18.5911 19.6682 17.3213 20.4678C17.0876 20.6149 16.779 20.5451 16.6318 20.3115C16.4848 20.078 16.5547 19.7693 16.7881 19.6221C17.9314 18.9022 18.9022 17.9314 19.6221 16.7881Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 4.5C16.1421 4.5 19.5 7.85786 19.5 12C19.5 16.1421 16.1421 19.5 12 19.5C7.85786 19.5 4.5 16.1421 4.5 12C4.5 7.85786 7.85786 4.5 12 4.5ZM12 8C11.7239 8 11.5 8.22386 11.5 8.5V12C11.5 12.1326 11.5527 12.2597 11.6465 12.3535L14.1465 14.8535C14.3417 15.0488 14.6583 15.0488 14.8535 14.8535C15.0488 14.6583 15.0488 14.3417 14.8535 14.1465L12.5 11.793V8.5C12.5 8.22386 12.2761 8 12 8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.84668 9.39746C3.11595 9.45868 3.28485 9.72682 3.22363 9.99609C3.07725 10.64 3 11.3107 3 12C3 12.6893 3.07725 13.36 3.22363 14.0039C3.28485 14.2732 3.11595 14.5413 2.84668 14.6025C2.57755 14.6635 2.31021 14.4947 2.24902 14.2256C2.0862 13.5094 2 12.7644 2 12C2 11.2356 2.0862 10.4906 2.24902 9.77441C2.31021 9.50529 2.57755 9.33652 2.84668 9.39746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.1533 9.39746C21.4224 9.33652 21.6898 9.50529 21.751 9.77441C21.9138 10.4906 22 11.2356 22 12C22 12.7644 21.9138 13.5094 21.751 14.2256C21.6898 14.4947 21.4224 14.6635 21.1533 14.6025C20.8841 14.5413 20.7151 14.2732 20.7764 14.0039C20.9227 13.36 21 12.6893 21 12C21 11.3107 20.9227 10.64 20.7764 9.99609C20.7151 9.72682 20.8841 9.45868 21.1533 9.39746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.67871 3.53223C6.91235 3.38511 7.221 3.45489 7.36816 3.68848C7.51522 3.92203 7.44529 4.2307 7.21191 4.37793C6.06859 5.09783 5.09783 6.06859 4.37793 7.21191C4.2307 7.44529 3.92203 7.51522 3.68848 7.36816C3.45489 7.221 3.38511 6.91235 3.53223 6.67871C4.3318 5.40889 5.40889 4.3318 6.67871 3.53223Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.6318 3.68848C16.779 3.45489 17.0876 3.38511 17.3213 3.53223C18.5911 4.3318 19.6682 5.40889 20.4678 6.67871C20.6149 6.91235 20.5451 7.221 20.3115 7.36816C20.078 7.51522 19.7693 7.44529 19.6221 7.21191C18.9022 6.06859 17.9314 5.09783 16.7881 4.37793C16.5547 4.2307 16.4848 3.92203 16.6318 3.68848Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 2C12.7644 2 13.5094 2.0862 14.2256 2.24902C14.4947 2.31021 14.6635 2.57755 14.6025 2.84668C14.5413 3.11595 14.2732 3.28485 14.0039 3.22363C13.36 3.07725 12.6893 3 12 3C11.3107 3 10.64 3.07725 9.99609 3.22363C9.72682 3.28485 9.45868 3.11595 9.39746 2.84668C9.33652 2.57755 9.50529 2.31021 9.77441 2.24902C10.4906 2.0862 11.2356 2 12 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSendLater;\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,EAAE,sWACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gTACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,+XACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gWACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sWACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8SACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qVACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSendLater","props","React","CentralIconBase","IconSendLater_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=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?i(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 h={};x(h,{IconShortcut:()=>u,default:()=>g});module.exports=P(h);var p=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"),u=o=>p.default.createElement(s,{...o},p.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V4.5C3 3.67157 3.67157 3 4.5 3H19.5ZM13.6826 6.66406C13.7536 6.40252 13.4156 6.23073 13.2461 6.44238L8.3252 12.5938C8.19424 12.7574 8.31088 13 8.52051 13H11.1729C11.3375 13.0001 11.4571 13.1566 11.4141 13.3154L10.3174 17.3359C10.2464 17.5975 10.5844 17.7693 10.7539 17.5576L15.6748 11.4062C15.8058 11.2426 15.6891 11 15.4795 11H12.8271C12.6625 10.9999 12.5429 10.8434 12.5859 10.6846L13.6826 6.66406Z",fill:"currentColor"})),g=u;0&&(module.exports={IconShortcut});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShortcut/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 IconShortcut: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V4.5C3 3.67157 3.67157 3 4.5 3H19.5ZM13.6826 6.66406C13.7536 6.40252 13.4156 6.23073 13.2461 6.44238L8.3252 12.5938C8.19424 12.7574 8.31088 13 8.52051 13H11.1729C11.3375 13.0001 11.4571 13.1566 11.4141 13.3154L10.3174 17.3359C10.2464 17.5975 10.5844 17.7693 10.7539 17.5576L15.6748 11.4062C15.8058 11.2426 15.6891 11 15.4795 11H12.8271C12.6625 10.9999 12.5429 10.8434 12.5859 10.6846L13.6826 6.66406Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShortcut;\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,SAAS,UACT,SAAS,UACT,EAAE,yfACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconShortcut_exports","__export","IconShortcut","IconShortcut_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconShortcut","props","React","CentralIconBase","IconShortcut_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:"M19.5 3C20.3284 3 21 3.67157 21 4.5V19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V4.5C3 3.67157 3.67157 3 4.5 3H19.5ZM13.6826 6.66406C13.7536 6.40252 13.4156 6.23073 13.2461 6.44238L8.3252 12.5938C8.19424 12.7574 8.31088 13 8.52051 13H11.1729C11.3375 13.0001 11.4571 13.1566 11.4141 13.3154L10.3174 17.3359C10.2464 17.5975 10.5844 17.7693 10.7539 17.5576L15.6748 11.4062C15.8058 11.2426 15.6891 11 15.4795 11H12.8271C12.6625 10.9999 12.5429 10.8434 12.5859 10.6846L13.6826 6.66406Z",fill:"currentColor"})),v=a;export{a as IconShortcut,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconShortcut/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 IconShortcut: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V4.5C3 3.67157 3.67157 3 4.5 3H19.5ZM13.6826 6.66406C13.7536 6.40252 13.4156 6.23073 13.2461 6.44238L8.3252 12.5938C8.19424 12.7574 8.31088 13 8.52051 13H11.1729C11.3375 13.0001 11.4571 13.1566 11.4141 13.3154L10.3174 17.3359C10.2464 17.5975 10.5844 17.7693 10.7539 17.5576L15.6748 11.4062C15.8058 11.2426 15.6891 11 15.4795 11H12.8271C12.6625 10.9999 12.5429 10.8434 12.5859 10.6846L13.6826 6.66406Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconShortcut;\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,SAAS,UACT,SAAS,UACT,EAAE,yfACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconShortcut","props","React","CentralIconBase","IconShortcut_default"]}
|
package/README.md
CHANGED
|
@@ -494,7 +494,6 @@ Below is a complete list of available icons:
|
|
|
494
494
|
- IconPullRequestSimple
|
|
495
495
|
- IconPush
|
|
496
496
|
- IconRequestClosed
|
|
497
|
-
- IconRunShortcut
|
|
498
497
|
- IconSandbox
|
|
499
498
|
- IconShip
|
|
500
499
|
- IconSpeedDots
|
|
@@ -1081,8 +1080,10 @@ Below is a complete list of available icons:
|
|
|
1081
1080
|
- IconCheckCircleDashed
|
|
1082
1081
|
- IconChecklist
|
|
1083
1082
|
- IconCheckmark1
|
|
1083
|
+
- IconCheckmark1Medium
|
|
1084
1084
|
- IconCheckmark1Small
|
|
1085
1085
|
- IconCheckmark2
|
|
1086
|
+
- IconCheckmark2Medium
|
|
1086
1087
|
- IconCheckmark2Small
|
|
1087
1088
|
- IconCircleArrowDown
|
|
1088
1089
|
- IconCircleBanSign
|
|
@@ -1243,7 +1244,9 @@ Below is a complete list of available icons:
|
|
|
1243
1244
|
- IconOpt
|
|
1244
1245
|
- IconOptAlt
|
|
1245
1246
|
- IconOptionKey
|
|
1247
|
+
- IconRunShortcut
|
|
1246
1248
|
- IconShift
|
|
1249
|
+
- IconShortcut
|
|
1247
1250
|
- IconSpacebar
|
|
1248
1251
|
|
|
1249
1252
|
### Layout
|
|
@@ -1926,6 +1929,7 @@ Below is a complete list of available icons:
|
|
|
1926
1929
|
- IconGold
|
|
1927
1930
|
- IconGoldMedal
|
|
1928
1931
|
- IconGraduateCap
|
|
1932
|
+
- IconGraduateCap2
|
|
1929
1933
|
- IconInfinity
|
|
1930
1934
|
- IconInjection
|
|
1931
1935
|
- IconJudgeGavel
|
|
@@ -2047,6 +2051,7 @@ Below is a complete list of available icons:
|
|
|
2047
2051
|
- IconHistory
|
|
2048
2052
|
- IconHourglass
|
|
2049
2053
|
- IconHourglass2
|
|
2054
|
+
- IconSendLater
|
|
2050
2055
|
- IconSleep
|
|
2051
2056
|
- IconStopwatch
|
|
2052
2057
|
- IconTimeFlies
|
package/filtered-icons.json
CHANGED
|
@@ -6188,6 +6188,20 @@
|
|
|
6188
6188
|
"packageName": "round-filled-radius-1-stroke-1",
|
|
6189
6189
|
"componentName": "IconCheckmark1"
|
|
6190
6190
|
},
|
|
6191
|
+
{
|
|
6192
|
+
"category": "Interface General",
|
|
6193
|
+
"svg": "<path d=\"M17.1905 6.41296C17.5146 5.96596 18.1399 5.8664 18.587 6.1903C19.034 6.51435 19.1336 7.13962 18.8097 7.58679L10.8419 18.5868C10.6726 18.8204 10.4105 18.9697 10.1232 18.996C9.83575 19.0221 9.55073 18.9227 9.34192 18.7235L5.30969 14.8729C4.91027 14.4915 4.89509 13.8583 5.27649 13.4589C5.65786 13.0595 6.29111 13.0453 6.69055 13.4266L9.89367 16.4852L17.1905 6.41296Z\" fill=\"currentColor\"/>",
|
|
6194
|
+
"iconName": "checkmark-1-medium",
|
|
6195
|
+
"variant": {
|
|
6196
|
+
"join": "round",
|
|
6197
|
+
"filled": "on",
|
|
6198
|
+
"radius": "1",
|
|
6199
|
+
"stroke": "1"
|
|
6200
|
+
},
|
|
6201
|
+
"createdAt": "2026-04-16T11:02:34.130784+00:00",
|
|
6202
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
6203
|
+
"componentName": "IconCheckmark1Medium"
|
|
6204
|
+
},
|
|
6191
6205
|
{
|
|
6192
6206
|
"category": "Interface General",
|
|
6193
6207
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.765 7.07607C16.9992 7.22242 17.0704 7.5309 16.924 7.76507L11.299 16.7651C11.2182 16.8943 11.083 16.9796 10.9316 16.9969C10.7802 17.0141 10.6292 16.9614 10.5214 16.8536L7.14645 13.4786C6.95118 13.2834 6.95118 12.9668 7.14645 12.7715C7.34171 12.5763 7.65829 12.5763 7.85355 12.7715L10.7841 15.7021L16.076 7.23507C16.2224 7.0009 16.5308 6.92971 16.765 7.07607Z\" fill=\"currentColor\"/>",
|
|
@@ -6216,6 +6230,20 @@
|
|
|
6216
6230
|
"packageName": "round-filled-radius-1-stroke-1",
|
|
6217
6231
|
"componentName": "IconCheckmark2"
|
|
6218
6232
|
},
|
|
6233
|
+
{
|
|
6234
|
+
"category": "Interface General",
|
|
6235
|
+
"svg": "<path d=\"M18.4403 6.50117C18.7159 6.19215 19.1898 6.16516 19.4989 6.44062C19.808 6.71619 19.8349 7.19003 19.5595 7.49921L9.75968 18.4992C9.62316 18.6523 9.42957 18.7434 9.22452 18.7502C9.01963 18.7569 8.82103 18.6789 8.67472 18.5353L4.47452 14.4103C4.17904 14.1201 4.17462 13.6453 4.46476 13.3498C4.75497 13.0543 5.22978 13.0499 5.5253 13.34L9.163 16.9123L18.4403 6.50117Z\" fill=\"currentColor\"/>",
|
|
6236
|
+
"iconName": "checkmark-2-medium",
|
|
6237
|
+
"variant": {
|
|
6238
|
+
"join": "round",
|
|
6239
|
+
"filled": "on",
|
|
6240
|
+
"radius": "1",
|
|
6241
|
+
"stroke": "1"
|
|
6242
|
+
},
|
|
6243
|
+
"createdAt": "2026-04-16T11:02:34.130784+00:00",
|
|
6244
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
6245
|
+
"componentName": "IconCheckmark2Medium"
|
|
6246
|
+
},
|
|
6219
6247
|
{
|
|
6220
6248
|
"category": "Interface General",
|
|
6221
6249
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.825 7.12008C18.0349 7.2996 18.0594 7.61523 17.8799 7.82506L10.1799 16.8251C10.0887 16.9317 9.95686 16.9951 9.81661 16.9997C9.67636 17.0044 9.5406 16.9499 9.4425 16.8496L6.1425 13.4746C5.94944 13.2771 5.953 12.9606 6.15044 12.7675C6.34789 12.5744 6.66445 12.578 6.8575 12.7755L9.77539 15.7597L17.1201 7.17496C17.2996 6.96513 17.6152 6.94056 17.825 7.12008Z\" fill=\"currentColor\"/>",
|
|
@@ -12964,6 +12992,20 @@
|
|
|
12964
12992
|
"packageName": "round-filled-radius-1-stroke-1",
|
|
12965
12993
|
"componentName": "IconGraduateCap"
|
|
12966
12994
|
},
|
|
12995
|
+
{
|
|
12996
|
+
"category": "Things",
|
|
12997
|
+
"svg": "<path d=\"M12.0009 7.99981C13.1055 7.99981 14.0009 8.44753 14.0009 8.99981C14.0009 9.17131 13.9139 9.3324 13.7617 9.47344L17.331 11.6141C18.9876 12.6081 20.0009 14.399 20.0009 16.3309V17.6346C20.2996 17.8076 20.5009 18.1299 20.5009 18.4998V20.9998C20.5008 21.552 20.0531 21.9998 19.5009 21.9998C18.9487 21.9998 18.5011 21.552 18.5009 20.9998V18.4998C18.5009 18.1299 18.7023 17.8076 19.0009 17.6346V16.3309C19.0009 14.7504 18.1715 13.2858 16.8164 12.4725L12.6152 9.95098C12.4216 9.98219 12.2153 9.99981 12.0009 9.99981C10.8965 9.99981 10.0012 9.55198 10.0009 8.99981C10.0009 8.44753 10.8964 7.99981 12.0009 7.99981Z\" fill=\"currentColor\"/><path d=\"M11.3105 15.8328C11.747 16.0414 12.255 16.0414 12.6914 15.8328L16.9238 13.8074C17.6031 14.4597 18.0009 15.3671 18.0009 16.3309V17.1775C17.6908 17.5288 17.5009 17.9914 17.5009 18.4998V19.3943C17.4871 19.4007 17.4739 19.4085 17.4599 19.4149C16.0083 20.0758 14.0598 20.4695 12.0009 20.4695C9.94215 20.4695 7.99357 20.0758 6.54196 19.4149C5.81695 19.0847 5.19353 18.6777 4.74508 18.2C4.29431 17.7196 4.00108 17.1439 4.00094 16.4998V12.3357L11.3105 15.8328Z\" fill=\"currentColor\"/><path d=\"M11.8047 3.04376C11.9318 2.99974 12.0701 2.99973 12.1972 3.04376L12.2597 3.06915L23.5283 8.4588C23.9824 8.67655 23.9826 9.32325 23.5283 9.54083L19.0439 11.6854C18.6856 11.3348 18.2859 11.0208 17.8457 10.7566L14.997 9.04864C14.9975 9.03258 15.0009 9.01611 15.0009 8.99981C15.0009 8.14097 14.3305 7.63241 13.8623 7.39825C13.3343 7.13426 12.6748 6.99982 12.0009 6.99981C11.3271 6.99981 10.6676 7.13426 10.1396 7.39825C9.67139 7.63239 9.00094 8.1409 9.00094 8.99981C9.00114 9.85855 9.67145 10.3673 10.1396 10.6014C10.6676 10.8653 11.3272 10.9998 12.0009 10.9998C12.1343 10.9998 12.2654 10.9945 12.3935 10.9842L15.9931 13.1443L12.2597 14.9305C12.0962 15.0086 11.9057 15.0085 11.7422 14.9305L0.4736 9.54083C0.0191936 9.32322 0.0192397 8.67646 0.4736 8.4588L11.7422 3.06915L11.8047 3.04376Z\" fill=\"currentColor\"/>",
|
|
12998
|
+
"iconName": "graduate-cap-2, study, education, academic, student",
|
|
12999
|
+
"variant": {
|
|
13000
|
+
"join": "round",
|
|
13001
|
+
"filled": "on",
|
|
13002
|
+
"radius": "1",
|
|
13003
|
+
"stroke": "1"
|
|
13004
|
+
},
|
|
13005
|
+
"createdAt": "2026-04-16T11:02:34.130784+00:00",
|
|
13006
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
13007
|
+
"componentName": "IconGraduateCap2"
|
|
13008
|
+
},
|
|
12967
13009
|
{
|
|
12968
13010
|
"category": "Social Media & Brands",
|
|
12969
13011
|
"svg": "<path d=\"M19.5895 18.931C19.1575 19.4158 18.7873 19.7094 18.5833 19.8497C18.4874 19.9135 18.4274 20.0027 18.3434 20.0792C17.8994 20.4619 17.4182 20.5758 17.0822 20.8437C16.6262 21.2009 14.9227 21.6256 14.4386 21.7746C13.6195 21.9607 12.698 22.0279 11.69 21.9897C11.4718 21.9897 11.2701 21.9896 11.0848 21.9752C11.0095 21.9693 10.934 21.9887 10.8585 21.9896C10.8555 21.9897 10.8527 21.9897 10.85 21.9897C10.842 21.9897 10.8287 21.9839 10.8099 21.9725C10.7887 21.9596 10.7647 21.9513 10.7398 21.9513C10.7333 21.9513 10.7267 21.9507 10.7203 21.9499C10.6187 21.936 10.5646 21.9716 10.5256 21.9914C10.496 22.0064 10.4638 21.9938 10.4357 21.9761C10.3471 21.9198 10.1494 21.7933 10.0821 21.7729C10.0158 21.7527 10.0093 21.7802 9.97401 21.7864C9.95039 21.7906 9.92582 21.7823 9.90806 21.7662C9.88818 21.7482 9.86691 21.7222 9.81809 21.6962C9.72831 21.6485 9.6805 21.7569 9.5471 21.6356C9.52772 21.6179 9.51634 21.5833 9.49019 21.5816C9.48364 21.5812 9.4789 21.5808 9.47245 21.5796C9.33815 21.5535 9.09411 21.5036 8.93011 21.4538C8.73811 21.4027 8.79795 21.3646 8.71394 21.3263C7.58596 20.9053 5.97808 20.076 5.39008 19.4892C5.17409 19.2723 4.92212 18.7748 4.76611 18.6472C4.6461 18.5451 4.40606 18.341 4.34605 18.239C4.29806 18.1497 4.34596 17.9839 4.262 17.8691C4.154 17.7287 3.93795 17.6521 3.73396 17.3332C3.50597 16.976 3.37398 16.504 3.146 16.0192C2.95399 15.5982 2.41407 14.2204 2.41406 11.7072C2.41406 10.0232 3.19406 7.68854 3.53006 7.36962C3.74599 7.16548 3.72197 6.71905 3.87793 6.50218C5.65816 4.02725 8.77401 2.20645 12.482 2.01509C12.6327 2.00735 12.7835 2.00253 12.9343 2.00077C13.8491 1.99009 14.766 2.09016 15.6551 2.30699C16.5433 2.52363 17.3925 2.86169 18.2203 3.24601C18.2203 3.24601 18.3186 3.2538 18.3445 3.26652C18.3877 3.28775 18.4059 3.32642 18.4491 3.34768C18.4922 3.36891 18.5547 3.3509 18.6018 3.36055C18.7573 3.39239 18.7852 3.48472 18.8139 3.5215C18.8487 3.56617 18.8905 3.58324 18.9696 3.60594C19.1758 3.66513 19.2029 3.73329 19.231 3.76468C19.2534 3.78977 19.2631 3.8223 19.2743 3.85146C19.2857 3.8811 19.3082 3.90816 19.3399 3.91558C19.4082 3.93159 19.5011 4.01525 19.5204 4.12936C19.5329 4.20376 19.6133 4.23582 19.5914 4.37538C19.5842 4.42058 19.6324 4.48741 19.3794 4.73678C19.1265 4.98616 18.5957 5.14335 18.2726 5.01948C17.1556 4.5913 16.99 4.50889 16.5413 4.38651C15.7221 4.16311 15.0242 4.01132 14.1741 4.02732C12.8181 4.05284 11.75 4.18042 10.466 4.62693C9.90314 4.82637 8.84057 5.36909 8.30738 5.7917C7.7742 6.21431 7.00227 6.79803 6.68368 7.33837C6.57212 7.52758 6.44656 7.7083 6.18258 8.00171C5.79859 8.42268 5.35413 9.64041 5.2101 10.2273C5.17409 10.3548 5.26994 10.4952 5.22197 10.6228C5.17396 10.7631 4.94595 10.827 4.92195 10.9418C4.82597 11.3501 4.84997 11.8731 4.84997 12.3195C4.84997 12.5619 4.92201 12.8935 5.00601 13.0849C5.06599 13.2125 5.25809 13.3018 5.28209 13.4294C5.29407 13.5187 5.17422 13.6207 5.17412 13.6972C5.17412 13.761 5.282 14.6287 5.34201 14.7563C5.42605 14.9093 5.69007 15.1007 5.76207 15.2792C5.81005 15.4068 5.67793 15.5345 5.77393 15.662C5.83392 15.7386 6.02608 15.7385 6.09808 15.8405C6.19406 15.9681 6.39799 16.3379 6.49401 16.4528C6.56601 16.5421 6.69803 16.5806 6.75802 16.6188C6.93797 16.7464 6.78211 16.8611 6.95006 17.0524C7.47805 17.652 8.29409 18.3921 9.0741 18.7238C9.19443 18.7749 10.4292 19.2464 10.502 19.2468C12.2419 19.5033 14.1987 19.4793 15.8907 18.5353C16.2868 18.3183 18.5301 16.7591 18.9022 14.9093C18.9861 14.5394 19.0941 13.6462 19.0461 13.289C18.8541 11.9623 18.0366 10.0539 16.538 9.34714C15.7397 8.97065 15.134 8.97713 14.978 9.00265C14.5221 9.09193 14.3661 8.82402 13.9461 8.86227C12.6621 8.96434 11.4021 9.3216 10.4181 10.3549C9.51812 11.3117 9.33795 12.5364 9.79396 13.3147C9.84196 13.4167 9.81796 13.5443 9.72196 13.6081C9.67999 13.6336 9.641 13.6655 9.62301 13.699C9.58721 13.7656 9.69071 13.8012 9.76207 13.8261C10.2612 14.0008 10.4412 14.843 11.102 14.8073H11.246C11.246 14.8073 11.522 14.8072 11.63 14.6796C11.7188 14.5748 11.7184 14.4527 11.6555 14.3984C11.6274 14.3742 11.592 14.3597 11.5837 14.3236C11.5747 14.2837 11.5701 14.2313 11.5701 14.2077C11.5701 14.1822 11.6061 14.1693 11.6061 14.1438C11.606 14.0673 11.5221 14.0035 11.5341 13.927C11.5418 13.8862 11.5984 13.8299 11.6383 13.7878C11.6686 13.7559 11.669 13.7151 11.6492 13.6758C11.6485 13.6744 11.6477 13.673 11.647 13.6715C11.6278 13.632 11.6242 13.5852 11.6373 13.5433C11.6448 13.5192 11.6539 13.4934 11.654 13.4677C11.666 13.3529 11.6181 13.3019 11.6061 13.2126C11.6061 13.1811 11.777 13.1062 11.8373 13.0594C11.8551 13.0456 11.857 13.0225 11.8511 13.0008C11.8386 12.9545 11.8221 12.9401 11.8221 12.8554C11.8221 12.835 11.8393 12.8065 11.86 12.7796C11.9016 12.7254 11.94 12.6677 11.9588 12.6019L11.992 12.4862C12.0058 12.4378 12.0426 12.3993 12.0903 12.3833C12.173 12.3555 12.1347 12.2207 12.2134 12.1831C12.2364 12.1722 12.2939 12.1861 12.3861 12.1665C12.578 12.1282 12.4461 12.0644 12.482 11.9624C12.4988 11.8999 12.5508 11.9061 12.6011 11.9111C12.6414 11.9151 12.6807 11.9019 12.7097 11.8736C12.7383 11.8457 12.7671 11.8131 12.8059 11.7966C12.8546 11.7759 12.9822 11.7719 13.0735 11.7711C13.1111 11.7708 13.1484 11.7654 13.1857 11.761C13.2876 11.749 13.4323 11.7562 13.5021 11.7456C13.5861 11.7328 13.634 11.6562 13.706 11.6562C13.766 11.6562 13.8501 11.7583 13.9101 11.7583C13.9701 11.7582 14.0301 11.7072 14.0901 11.7072C14.1261 11.7072 14.1381 11.7709 14.198 11.771H14.222C14.222 11.771 14.774 11.7837 15.35 12.1408C15.746 12.3832 16.0341 12.9702 16.0341 12.9702C16.3101 13.4422 16.0039 13.9274 16.0039 14.3612C16.0039 14.5398 16.0638 14.6929 16.0279 14.8587C16.0038 14.9863 15.9078 15.0884 15.8718 15.1905C15.8359 15.2798 15.8359 15.3946 15.716 15.5604C15.62 15.7007 15.5719 15.7007 15.5479 15.7262C15.5119 15.7644 15.2011 16.2343 14.9971 16.4129C14.4571 16.8977 13.958 17.0397 13.226 17.0524C12.902 17.0652 12.866 17.1291 12.818 17.1291C12.65 17.1418 11.8822 17.1036 11.6421 17.0654C11.6421 17.0654 10.5742 16.8613 10.1541 16.6572C9.9261 16.5551 8.42599 15.4451 8.08999 14.82C7.04598 12.8554 7.28607 10.7631 8.36607 9.35984C9.14608 8.33924 10.43 7.01248 13.478 6.75729C15.026 6.62973 16.4061 6.83391 17.4861 7.34421C19.0101 8.05863 20.1261 9.32157 20.8221 10.8142C22.0101 13.3656 21.9415 16.252 19.5895 18.931Z\" fill=\"currentColor\"/>",
|
|
@@ -20735,9 +20777,9 @@
|
|
|
20735
20777
|
"componentName": "IconRuler"
|
|
20736
20778
|
},
|
|
20737
20779
|
{
|
|
20738
|
-
"category": "
|
|
20780
|
+
"category": "Keyboard",
|
|
20739
20781
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 4.5C3 3.67157 3.67157 3 4.5 3H19.5C20.3284 3 21 3.67157 21 4.5V19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V4.5ZM14.7069 6.04482C14.9583 6.15909 15.0695 6.45551 14.9552 6.7069L9.95518 17.7069C9.84091 17.9583 9.54449 18.0695 9.2931 17.9552C9.04171 17.8409 8.93055 17.5445 9.04482 17.2931L14.0448 6.2931C14.1591 6.04171 14.4555 5.93055 14.7069 6.04482Z\" fill=\"currentColor\"/>",
|
|
20740
|
-
"iconName": "run-shortcut,slash",
|
|
20782
|
+
"iconName": "run-shortcut, slash, skills",
|
|
20741
20783
|
"variant": {
|
|
20742
20784
|
"join": "round",
|
|
20743
20785
|
"filled": "on",
|
|
@@ -21126,6 +21168,20 @@
|
|
|
21126
21168
|
"packageName": "round-filled-radius-1-stroke-1",
|
|
21127
21169
|
"componentName": "IconSend"
|
|
21128
21170
|
},
|
|
21171
|
+
{
|
|
21172
|
+
"category": "Time & Date",
|
|
21173
|
+
"svg": "<path d=\"M14.0039 20.7764C14.2732 20.7151 14.5413 20.8841 14.6025 21.1533C14.6635 21.4224 14.4947 21.6898 14.2256 21.751C13.5094 21.9138 12.7644 22 12 22C11.2356 22 10.4906 21.9138 9.77441 21.751C9.50529 21.6898 9.33652 21.4224 9.39746 21.1533C9.45868 20.8841 9.72682 20.7151 9.99609 20.7764C10.64 20.9227 11.3107 21 12 21C12.6893 21 13.36 20.9227 14.0039 20.7764Z\" fill=\"currentColor\"/><path d=\"M3.68848 16.6318C3.92203 16.4848 4.2307 16.5547 4.37793 16.7881C5.09783 17.9314 6.06859 18.9022 7.21191 19.6221C7.44529 19.7693 7.51522 20.078 7.36816 20.3115C7.221 20.5451 6.91235 20.6149 6.67871 20.4678C5.40889 19.6682 4.3318 18.5911 3.53223 17.3213C3.38511 17.0876 3.45489 16.779 3.68848 16.6318Z\" fill=\"currentColor\"/><path d=\"M19.6221 16.7881C19.7693 16.5547 20.078 16.4848 20.3115 16.6318C20.5451 16.779 20.6149 17.0876 20.4678 17.3213C19.6682 18.5911 18.5911 19.6682 17.3213 20.4678C17.0876 20.6149 16.779 20.5451 16.6318 20.3115C16.4848 20.078 16.5547 19.7693 16.7881 19.6221C17.9314 18.9022 18.9022 17.9314 19.6221 16.7881Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 4.5C16.1421 4.5 19.5 7.85786 19.5 12C19.5 16.1421 16.1421 19.5 12 19.5C7.85786 19.5 4.5 16.1421 4.5 12C4.5 7.85786 7.85786 4.5 12 4.5ZM12 8C11.7239 8 11.5 8.22386 11.5 8.5V12C11.5 12.1326 11.5527 12.2597 11.6465 12.3535L14.1465 14.8535C14.3417 15.0488 14.6583 15.0488 14.8535 14.8535C15.0488 14.6583 15.0488 14.3417 14.8535 14.1465L12.5 11.793V8.5C12.5 8.22386 12.2761 8 12 8Z\" fill=\"currentColor\"/><path d=\"M2.84668 9.39746C3.11595 9.45868 3.28485 9.72682 3.22363 9.99609C3.07725 10.64 3 11.3107 3 12C3 12.6893 3.07725 13.36 3.22363 14.0039C3.28485 14.2732 3.11595 14.5413 2.84668 14.6025C2.57755 14.6635 2.31021 14.4947 2.24902 14.2256C2.0862 13.5094 2 12.7644 2 12C2 11.2356 2.0862 10.4906 2.24902 9.77441C2.31021 9.50529 2.57755 9.33652 2.84668 9.39746Z\" fill=\"currentColor\"/><path d=\"M21.1533 9.39746C21.4224 9.33652 21.6898 9.50529 21.751 9.77441C21.9138 10.4906 22 11.2356 22 12C22 12.7644 21.9138 13.5094 21.751 14.2256C21.6898 14.4947 21.4224 14.6635 21.1533 14.6025C20.8841 14.5413 20.7151 14.2732 20.7764 14.0039C20.9227 13.36 21 12.6893 21 12C21 11.3107 20.9227 10.64 20.7764 9.99609C20.7151 9.72682 20.8841 9.45868 21.1533 9.39746Z\" fill=\"currentColor\"/><path d=\"M6.67871 3.53223C6.91235 3.38511 7.221 3.45489 7.36816 3.68848C7.51522 3.92203 7.44529 4.2307 7.21191 4.37793C6.06859 5.09783 5.09783 6.06859 4.37793 7.21191C4.2307 7.44529 3.92203 7.51522 3.68848 7.36816C3.45489 7.221 3.38511 6.91235 3.53223 6.67871C4.3318 5.40889 5.40889 4.3318 6.67871 3.53223Z\" fill=\"currentColor\"/><path d=\"M16.6318 3.68848C16.779 3.45489 17.0876 3.38511 17.3213 3.53223C18.5911 4.3318 19.6682 5.40889 20.4678 6.67871C20.6149 6.91235 20.5451 7.221 20.3115 7.36816C20.078 7.51522 19.7693 7.44529 19.6221 7.21191C18.9022 6.06859 17.9314 5.09783 16.7881 4.37793C16.5547 4.2307 16.4848 3.92203 16.6318 3.68848Z\" fill=\"currentColor\"/><path d=\"M12 2C12.7644 2 13.5094 2.0862 14.2256 2.24902C14.4947 2.31021 14.6635 2.57755 14.6025 2.84668C14.5413 3.11595 14.2732 3.28485 14.0039 3.22363C13.36 3.07725 12.6893 3 12 3C11.3107 3 10.64 3.07725 9.99609 3.22363C9.72682 3.28485 9.45868 3.11595 9.39746 2.84668C9.33652 2.57755 9.50529 2.31021 9.77441 2.24902C10.4906 2.0862 11.2356 2 12 2Z\" fill=\"currentColor\"/>",
|
|
21174
|
+
"iconName": "send-later, timeslot, clock",
|
|
21175
|
+
"variant": {
|
|
21176
|
+
"join": "round",
|
|
21177
|
+
"filled": "on",
|
|
21178
|
+
"radius": "1",
|
|
21179
|
+
"stroke": "1"
|
|
21180
|
+
},
|
|
21181
|
+
"createdAt": "2026-04-16T11:02:34.130784+00:00",
|
|
21182
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
21183
|
+
"componentName": "IconSendLater"
|
|
21184
|
+
},
|
|
21129
21185
|
{
|
|
21130
21186
|
"category": "AI & Magic",
|
|
21131
21187
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5 2C13.7761 2 14 2.22386 14 2.5V21.5C14 21.7761 13.7761 22 13.5 22C13.2239 22 13 21.7761 13 21.5V19H3.5C2.67157 19 2 18.3284 2 17.5V6.5C2 5.67157 2.67157 5 3.5 5H13V2.5C13 2.22386 13.2239 2 13.5 2ZM4.5 16C4.22386 16 4 16.2239 4 16.5C4 16.7761 4.22386 17 4.5 17H5.5C5.77614 17 6 16.7761 6 16.5C6 16.2239 5.77614 16 5.5 16H4.5ZM7.5 16C7.22386 16 7 16.2239 7 16.5C7 16.7761 7.22386 17 7.5 17H8.5C8.77614 17 9 16.7761 9 16.5C9 16.2239 8.77614 16 8.5 16H7.5ZM10.5 16C10.2239 16 10 16.2239 10 16.5C10 16.7761 10.2239 17 10.5 17H11.5C11.7761 17 12 16.7761 12 16.5C12 16.2239 11.7761 16 11.5 16H10.5ZM4.5 7C4.22386 7 4 7.22386 4 7.5C4 7.77614 4.22386 8 4.5 8H5.5C5.77614 8 6 7.77614 6 7.5C6 7.22386 5.77614 7 5.5 7H4.5ZM7.5 7C7.22386 7 7 7.22386 7 7.5C7 7.77614 7.22386 8 7.5 8H8.5C8.77614 8 9 7.77614 9 7.5C9 7.22386 8.77614 7 8.5 7H7.5ZM10.5 7C10.2239 7 10 7.22386 10 7.5C10 7.77614 10.2239 8 10.5 8H11.5C11.7761 8 12 7.77614 12 7.5C12 7.22386 11.7761 7 11.5 7H10.5Z\" fill=\"currentColor\"/><path d=\"M19.5 5C19.7761 5 20 5.22386 20 5.5V18.5C20 18.7761 19.7761 19 19.5 19C19.2239 19 19 18.7761 19 18.5V5.5C19 5.22386 19.2239 5 19.5 5Z\" fill=\"currentColor\"/><path d=\"M16.5 8C16.7761 8 17 8.22386 17 8.5V15.5C17 15.7761 16.7761 16 16.5 16C16.2239 16 16 15.7761 16 15.5V8.5C16 8.22386 16.2239 8 16.5 8Z\" fill=\"currentColor\"/><path d=\"M22.5 10C22.7761 10 23 10.2239 23 10.5V13.5C23 13.7761 22.7761 14 22.5 14C22.2239 14 22 13.7761 22 13.5V10.5C22 10.2239 22.2239 10 22.5 10Z\" fill=\"currentColor\"/>",
|
|
@@ -21770,6 +21826,20 @@
|
|
|
21770
21826
|
"packageName": "round-filled-radius-1-stroke-1",
|
|
21771
21827
|
"componentName": "IconShoppingBagLike2"
|
|
21772
21828
|
},
|
|
21829
|
+
{
|
|
21830
|
+
"category": "Keyboard",
|
|
21831
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V4.5C3 3.67157 3.67157 3 4.5 3H19.5ZM13.6826 6.66406C13.7536 6.40252 13.4156 6.23073 13.2461 6.44238L8.3252 12.5938C8.19424 12.7574 8.31088 13 8.52051 13H11.1729C11.3375 13.0001 11.4571 13.1566 11.4141 13.3154L10.3174 17.3359C10.2464 17.5975 10.5844 17.7693 10.7539 17.5576L15.6748 11.4062C15.8058 11.2426 15.6891 11 15.4795 11H12.8271C12.6625 10.9999 12.5429 10.8434 12.5859 10.6846L13.6826 6.66406Z\" fill=\"currentColor\"/>",
|
|
21832
|
+
"iconName": "shortcut, hotkey, powerkey, skill",
|
|
21833
|
+
"variant": {
|
|
21834
|
+
"join": "round",
|
|
21835
|
+
"filled": "on",
|
|
21836
|
+
"radius": "1",
|
|
21837
|
+
"stroke": "1"
|
|
21838
|
+
},
|
|
21839
|
+
"createdAt": "2026-04-16T12:02:20.982379+00:00",
|
|
21840
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
21841
|
+
"componentName": "IconShortcut"
|
|
21842
|
+
},
|
|
21773
21843
|
{
|
|
21774
21844
|
"category": "Things",
|
|
21775
21845
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.2345 3.14556C18.043 2.95401 17.7337 2.95001 17.5372 3.13654L16.1008 4.50051C15.1666 5.43939 15.1681 6.95779 16.1051 7.89487C17.0422 8.83195 18.5606 8.8334 19.4995 7.89922L20.8635 6.46277C21.05 6.26632 21.046 5.95701 20.8544 5.76546L18.2345 3.14556ZM16.8492 2.41193C17.4385 1.85234 18.3664 1.86435 18.9411 2.439L21.561 5.0589C22.1357 5.63356 22.1477 6.56148 21.5881 7.15081L20.2105 8.60155C19.0015 9.81054 17.109 9.91939 15.7768 8.92834C15.7697 8.93644 15.7622 8.94435 15.7545 8.95208L11.3206 13.386L14.0487 16.1141C14.6318 16.6971 14.64 17.6538 14.0336 18.2343C10.7869 21.3426 7.33584 22.9211 2.88015 21.4359C2.73096 21.3861 2.61389 21.2691 2.56416 21.1199C1.0789 16.6642 2.65723 13.213 5.76563 9.96635C6.34616 9.36001 7.30279 9.36818 7.88586 9.95125L10.614 12.6794L15.048 8.24552C15.0557 8.23779 15.0636 8.23037 15.0717 8.22326C14.0806 6.89106 14.1896 4.99859 15.3986 3.78959L15.4077 3.78044L16.8492 2.41193Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -441,8 +441,10 @@ export type CentralIconName =
|
|
|
441
441
|
| "IconCheckCircleDashed"
|
|
442
442
|
| "IconChecklist"
|
|
443
443
|
| "IconCheckmark1"
|
|
444
|
+
| "IconCheckmark1Medium"
|
|
444
445
|
| "IconCheckmark1Small"
|
|
445
446
|
| "IconCheckmark2"
|
|
447
|
+
| "IconCheckmark2Medium"
|
|
446
448
|
| "IconCheckmark2Small"
|
|
447
449
|
| "IconCheeseburger"
|
|
448
450
|
| "IconCherry"
|
|
@@ -925,6 +927,7 @@ export type CentralIconName =
|
|
|
925
927
|
| "IconGoose"
|
|
926
928
|
| "IconGovernment"
|
|
927
929
|
| "IconGraduateCap"
|
|
930
|
+
| "IconGraduateCap2"
|
|
928
931
|
| "IconGranola"
|
|
929
932
|
| "IconGrass"
|
|
930
933
|
| "IconGreenPower"
|
|
@@ -1508,6 +1511,7 @@ export type CentralIconName =
|
|
|
1508
1511
|
| "IconSelectLasso"
|
|
1509
1512
|
| "IconSelectLassoDashed"
|
|
1510
1513
|
| "IconSend"
|
|
1514
|
+
| "IconSendLater"
|
|
1511
1515
|
| "IconSeparateVideoVoice"
|
|
1512
1516
|
| "IconServer"
|
|
1513
1517
|
| "IconServer1"
|
|
@@ -1554,6 +1558,7 @@ export type CentralIconName =
|
|
|
1554
1558
|
| "IconShoppingBagEdit2"
|
|
1555
1559
|
| "IconShoppingBagLike1"
|
|
1556
1560
|
| "IconShoppingBagLike2"
|
|
1561
|
+
| "IconShortcut"
|
|
1557
1562
|
| "IconShovel"
|
|
1558
1563
|
| "IconShredder"
|
|
1559
1564
|
| "IconShuffle"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-1-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.196",
|
|
4
4
|
"style": "round-filled-radius-1-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-1-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": 1951,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 77,
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
]
|
|
318
318
|
},
|
|
319
319
|
"Code": {
|
|
320
|
-
"count":
|
|
320
|
+
"count": 64,
|
|
321
321
|
"icons": [
|
|
322
322
|
"IconAgent",
|
|
323
323
|
"IconAgenticCoding",
|
|
@@ -376,7 +376,6 @@
|
|
|
376
376
|
"IconPullRequestSimple",
|
|
377
377
|
"IconPush",
|
|
378
378
|
"IconRequestClosed",
|
|
379
|
-
"IconRunShortcut",
|
|
380
379
|
"IconSandbox",
|
|
381
380
|
"IconShip",
|
|
382
381
|
"IconSpeedDots",
|
|
@@ -939,7 +938,7 @@
|
|
|
939
938
|
]
|
|
940
939
|
},
|
|
941
940
|
"Interface General": {
|
|
942
|
-
"count":
|
|
941
|
+
"count": 198,
|
|
943
942
|
"icons": [
|
|
944
943
|
"IconAnchor1",
|
|
945
944
|
"IconAnchor2",
|
|
@@ -989,8 +988,10 @@
|
|
|
989
988
|
"IconCheckCircleDashed",
|
|
990
989
|
"IconChecklist",
|
|
991
990
|
"IconCheckmark1",
|
|
991
|
+
"IconCheckmark1Medium",
|
|
992
992
|
"IconCheckmark1Small",
|
|
993
993
|
"IconCheckmark2",
|
|
994
|
+
"IconCheckmark2Medium",
|
|
994
995
|
"IconCheckmark2Small",
|
|
995
996
|
"IconCircleArrowDown",
|
|
996
997
|
"IconCircleBanSign",
|
|
@@ -1140,7 +1141,7 @@
|
|
|
1140
1141
|
]
|
|
1141
1142
|
},
|
|
1142
1143
|
"Keyboard": {
|
|
1143
|
-
"count":
|
|
1144
|
+
"count": 15,
|
|
1144
1145
|
"icons": [
|
|
1145
1146
|
"IconAt",
|
|
1146
1147
|
"IconBackward",
|
|
@@ -1153,7 +1154,9 @@
|
|
|
1153
1154
|
"IconOpt",
|
|
1154
1155
|
"IconOptAlt",
|
|
1155
1156
|
"IconOptionKey",
|
|
1157
|
+
"IconRunShortcut",
|
|
1156
1158
|
"IconShift",
|
|
1159
|
+
"IconShortcut",
|
|
1157
1160
|
"IconSpacebar"
|
|
1158
1161
|
]
|
|
1159
1162
|
},
|
|
@@ -1803,7 +1806,7 @@
|
|
|
1803
1806
|
]
|
|
1804
1807
|
},
|
|
1805
1808
|
"Things": {
|
|
1806
|
-
"count":
|
|
1809
|
+
"count": 137,
|
|
1807
1810
|
"icons": [
|
|
1808
1811
|
"IconAnvil",
|
|
1809
1812
|
"IconApps",
|
|
@@ -1860,6 +1863,7 @@
|
|
|
1860
1863
|
"IconGold",
|
|
1861
1864
|
"IconGoldMedal",
|
|
1862
1865
|
"IconGraduateCap",
|
|
1866
|
+
"IconGraduateCap2",
|
|
1863
1867
|
"IconInfinity",
|
|
1864
1868
|
"IconInjection",
|
|
1865
1869
|
"IconJudgeGavel",
|
|
@@ -1944,7 +1948,7 @@
|
|
|
1944
1948
|
]
|
|
1945
1949
|
},
|
|
1946
1950
|
"Time & Date": {
|
|
1947
|
-
"count":
|
|
1951
|
+
"count": 42,
|
|
1948
1952
|
"icons": [
|
|
1949
1953
|
"IconCalendar1",
|
|
1950
1954
|
"IconCalendar2",
|
|
@@ -1983,6 +1987,7 @@
|
|
|
1983
1987
|
"IconHistory",
|
|
1984
1988
|
"IconHourglass",
|
|
1985
1989
|
"IconHourglass2",
|
|
1990
|
+
"IconSendLater",
|
|
1986
1991
|
"IconSleep",
|
|
1987
1992
|
"IconStopwatch",
|
|
1988
1993
|
"IconTimeFlies",
|
|
@@ -2590,8 +2595,10 @@
|
|
|
2590
2595
|
"IconCheckCircleDashed": "check-circle-dashed, done, confirm, save, success",
|
|
2591
2596
|
"IconChecklist": "checklist, list",
|
|
2592
2597
|
"IconCheckmark1": "checkmark-1",
|
|
2598
|
+
"IconCheckmark1Medium": "checkmark-1-medium",
|
|
2593
2599
|
"IconCheckmark1Small": "checkmark-1-small",
|
|
2594
2600
|
"IconCheckmark2": "checkmark-2",
|
|
2601
|
+
"IconCheckmark2Medium": "checkmark-2-medium",
|
|
2595
2602
|
"IconCheckmark2Small": "checkmark-2-small",
|
|
2596
2603
|
"IconCheeseburger": "cheeseburger, hamburger, sandwich",
|
|
2597
2604
|
"IconCherry": "cherry",
|
|
@@ -3074,6 +3081,7 @@
|
|
|
3074
3081
|
"IconGoose": "goose",
|
|
3075
3082
|
"IconGovernment": "government, bank, building",
|
|
3076
3083
|
"IconGraduateCap": "graduate-cap, study, education, academic, student",
|
|
3084
|
+
"IconGraduateCap2": "graduate-cap-2, study, education, academic, student",
|
|
3077
3085
|
"IconGranola": "granola",
|
|
3078
3086
|
"IconGrass": "grass, logout, signout",
|
|
3079
3087
|
"IconGreenPower": "green-power, green-energy",
|
|
@@ -3629,7 +3637,7 @@
|
|
|
3629
3637
|
"IconRoulette2": "roulette-2, coincidence, gambling",
|
|
3630
3638
|
"IconRssFeed": "rss-feed",
|
|
3631
3639
|
"IconRuler": "ruler",
|
|
3632
|
-
"IconRunShortcut": "run-shortcut, slash",
|
|
3640
|
+
"IconRunShortcut": "run-shortcut, slash, skills",
|
|
3633
3641
|
"IconSafari": "safari",
|
|
3634
3642
|
"IconSafeSimple": "safe-simple, save",
|
|
3635
3643
|
"IconSandbox": "sandbox, playground",
|
|
@@ -3657,6 +3665,7 @@
|
|
|
3657
3665
|
"IconSelectLasso": "select-lasso, circle-to-search, encircle, mark",
|
|
3658
3666
|
"IconSelectLassoDashed": "select-lasso-dashed, circle-to-search-dashed, encircle, mark",
|
|
3659
3667
|
"IconSend": "send, email, paper-plane, arrow",
|
|
3668
|
+
"IconSendLater": "send-later, timeslot, clock",
|
|
3660
3669
|
"IconSeparateVideoVoice": "separate-video-voice, video-audio",
|
|
3661
3670
|
"IconServer": "server, data, storage",
|
|
3662
3671
|
"IconServer1": "server-1, storage, data, coins, money",
|
|
@@ -3703,6 +3712,7 @@
|
|
|
3703
3712
|
"IconShoppingBagEdit2": "shopping-bag-edit-2",
|
|
3704
3713
|
"IconShoppingBagLike1": "shopping-bag-like-1",
|
|
3705
3714
|
"IconShoppingBagLike2": "shopping-bag-like-2",
|
|
3715
|
+
"IconShortcut": "shortcut, hotkey, powerkey, skill",
|
|
3706
3716
|
"IconShovel": "shovel, spade, pick",
|
|
3707
3717
|
"IconShredder": "shredder, permanently",
|
|
3708
3718
|
"IconShuffle": "shuffle, random",
|