@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.151 → 1.1.153
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/IconAddImage/index.d.ts +4 -0
- package/IconAddImage/index.js +2 -0
- package/IconAddImage/index.js.map +1 -0
- package/IconAddImage/index.mjs +2 -0
- package/IconAddImage/index.mjs.map +1 -0
- package/IconClock3OClock/index.d.ts +4 -0
- package/IconClock3OClock/index.js +2 -0
- package/IconClock3OClock/index.js.map +1 -0
- package/IconClock3OClock/index.mjs +2 -0
- package/IconClock3OClock/index.mjs.map +1 -0
- package/IconClock9OClock/index.d.ts +4 -0
- package/IconClock9OClock/index.js +2 -0
- package/IconClock9OClock/index.js.map +1 -0
- package/IconClock9OClock/index.mjs +2 -0
- package/IconClock9OClock/index.mjs.map +1 -0
- package/IconScanVoice/index.d.ts +4 -0
- package/IconScanVoice/index.js +2 -0
- package/IconScanVoice/index.js.map +1 -0
- package/IconScanVoice/index.mjs +2 -0
- package/IconScanVoice/index.mjs.map +1 -0
- package/IconVoiceMemo/index.d.ts +4 -0
- package/IconVoiceMemo/index.js +2 -0
- package/IconVoiceMemo/index.js.map +1 -0
- package/IconVoiceMemo/index.mjs +2 -0
- package/IconVoiceMemo/index.mjs.map +1 -0
- package/README.md +5 -0
- package/filtered-icons.json +70 -0
- package/icons/index.d.ts +5 -0
- package/icons-index.json +15 -5
- 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 +35 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var t=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,V=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of H(o))!V.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(C=u(o,n))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?i(I(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(t({},"__esModule",{value:!0}),r);var x={};B(x,{IconAddImage:()=>d,default:()=>v});module.exports=g(x);var p=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>f.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 l=require("react-native-svg"),d=r=>p.default.createElement(c,{...r},p.default.createElement(l.Path,{d:"M19 17H22V19H19V22H17V19H14V17H17V14H19V17Z",fill:"currentColor"}),p.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8 12L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H3V3H21V12.498ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z",fill:"currentColor"})),v=d;0&&(module.exports={IconAddImage});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAddImage/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 IconAddImage: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19 17H22V19H19V22H17V19H14V17H17V14H19V17Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8 12L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H3V3H21V12.498ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAddImage;\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,8CACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kTACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAddImage_exports","__export","IconAddImage","IconAddImage_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAddImage","props","React","CentralIconBase","IconAddImage_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import l from"react";import{Svg as C}from"react-native-svg";var n=({children:o,size:r=24,...p})=>l.createElement(C,{...p,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 t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M19 17H22V19H19V22H17V19H14V17H17V14H19V17Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8 12L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H3V3H21V12.498ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z",fill:"currentColor"})),V=a;export{a as IconAddImage,V as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAddImage/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 IconAddImage: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19 17H22V19H19V22H17V19H14V17H17V14H19V17Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8 12L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H3V3H21V12.498ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAddImage;\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,8CACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,kTACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAddImage","props","React","CentralIconBase","IconAddImage_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,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},C=(o,r,e,l)=>{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:!(l=B(r,t))||l.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},C(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>C(n({},"__esModule",{value:!0}),o);var h={};x(h,{IconClock3OClock:()=>i,default:()=>g});module.exports=P(h);var p=a(require("react"));var c=a(require("react")),m=require("react-native-svg"),s=({children:o,size:r=24,...e})=>c.default.createElement(m.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(s,{...o},p.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V13H17V11H13V6H11Z",fill:"currentColor"})),g=i;0&&(module.exports={IconClock3OClock});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconClock3OClock/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 IconClock3OClock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V13H17V11H13V6H11Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconClock3OClock;\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,SAAS,UACT,SAAS,UACT,EAAE,0IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconClock3OClock_exports","__export","IconClock3OClock","IconClock3OClock_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconClock3OClock","props","React","CentralIconBase","IconClock3OClock_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(l,{...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 C}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V13H17V11H13V6H11Z",fill:"currentColor"})),v=a;export{a as IconClock3OClock,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconClock3OClock/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 IconClock3OClock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V13H17V11H13V6H11Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconClock3OClock;\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,SAAS,UACT,SAAS,UACT,EAAE,0IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconClock3OClock","props","React","CentralIconBase","IconClock3OClock_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,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},C=(o,r,e,l)=>{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:!(l=B(r,t))||l.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},C(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>C(n({},"__esModule",{value:!0}),o);var h={};x(h,{IconClock9OClock:()=>i,default:()=>g});module.exports=P(h);var p=a(require("react"));var c=a(require("react")),m=require("react-native-svg"),s=({children:o,size:r=24,...e})=>c.default.createElement(m.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(s,{...o},p.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V11H7V13H13V6H11Z",fill:"currentColor"})),g=i;0&&(module.exports={IconClock9OClock});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconClock9OClock/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 IconClock9OClock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V11H7V13H13V6H11Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconClock9OClock;\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,SAAS,UACT,SAAS,UACT,EAAE,yIACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconClock9OClock_exports","__export","IconClock9OClock","IconClock9OClock_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconClock9OClock","props","React","CentralIconBase","IconClock9OClock_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(l,{...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 C}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V11H7V13H13V6H11Z",fill:"currentColor"})),v=a;export{a as IconClock9OClock,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconClock9OClock/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 IconClock9OClock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V11H7V13H13V6H11Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconClock9OClock;\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,SAAS,UACT,SAAS,UACT,EAAE,yIACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconClock9OClock","props","React","CentralIconBase","IconClock9OClock_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var p=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var a=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var l in o)p(r,l,{get:o[l],enumerable:!0})},H=(r,o,l,V)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!B.call(r,e)&&e!==l&&p(r,e,{get:()=>o[e],enumerable:!(V=s(o,e))||V.enumerable});return r};var C=(r,o,l)=>(l=r!=null?c(a(r)):{},H(o||!r||!r.__esModule?p(l,"default",{value:r,enumerable:!0}):l,r)),M=r=>H(p({},"__esModule",{value:!0}),r);var x={};I(x,{IconScanVoice:()=>m,default:()=>Z});module.exports=M(x);var n=C(require("react"));var f=C(require("react")),i=require("react-native-svg"),u=({children:r,size:o=24,...l})=>f.default.createElement(i.Svg,{...l,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),m=r=>n.default.createElement(u,{...r},n.default.createElement(t.Path,{d:"M5 19H9V21H3V15H5V19Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21 21H15V19H19V15H21V21Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M11.2305 17H9.42969V7H11.2305V17Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M17.9004 15.5H16.0996V8.5H17.9004V15.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M7.90039 14H6.09961V10H7.90039V14Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14.5703 14H12.7695V10H14.5703V14Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M9 5H5V9H3V3H9V5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21 9H19V5H15V3H21V9Z",fill:"currentColor"})),Z=m;0&&(module.exports={IconScanVoice});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScanVoice/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 IconScanVoice: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M5 19H9V21H3V15H5V19Z\" fill=\"currentColor\" />\n <Path d=\"M21 21H15V19H19V15H21V21Z\" fill=\"currentColor\" />\n <Path d=\"M11.2305 17H9.42969V7H11.2305V17Z\" fill=\"currentColor\" />\n <Path d=\"M17.9004 15.5H16.0996V8.5H17.9004V15.5Z\" fill=\"currentColor\" />\n <Path d=\"M7.90039 14H6.09961V10H7.90039V14Z\" fill=\"currentColor\" />\n <Path d=\"M14.5703 14H12.7695V10H14.5703V14Z\" fill=\"currentColor\" />\n <Path d=\"M9 5H5V9H3V3H9V5Z\" fill=\"currentColor\" />\n <Path d=\"M21 9H19V5H15V3H21V9Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconScanVoice;\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,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,oCAAoC,KAAK,eAAe,EAChE,EAAAA,QAAA,cAAC,QAAK,EAAE,0CAA0C,KAAK,eAAe,EACtE,EAAAA,QAAA,cAAC,QAAK,EAAE,qCAAqC,KAAK,eAAe,EACjE,EAAAA,QAAA,cAAC,QAAK,EAAE,qCAAqC,KAAK,eAAe,EACjE,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,EAIGE,EAAQJ","names":["IconScanVoice_exports","__export","IconScanVoice","IconScanVoice_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconScanVoice","props","React","CentralIconBase","IconScanVoice_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as V}from"react-native-svg";var t=({children:n,size:l=24,...e})=>p.createElement(V,{...e,width:typeof l=="number"?`${l}px`:l,height:typeof l=="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},n);import{Path as o}from"react-native-svg";var H=n=>r.createElement(t,{...n},r.createElement(o,{d:"M5 19H9V21H3V15H5V19Z",fill:"currentColor"}),r.createElement(o,{d:"M21 21H15V19H19V15H21V21Z",fill:"currentColor"}),r.createElement(o,{d:"M11.2305 17H9.42969V7H11.2305V17Z",fill:"currentColor"}),r.createElement(o,{d:"M17.9004 15.5H16.0996V8.5H17.9004V15.5Z",fill:"currentColor"}),r.createElement(o,{d:"M7.90039 14H6.09961V10H7.90039V14Z",fill:"currentColor"}),r.createElement(o,{d:"M14.5703 14H12.7695V10H14.5703V14Z",fill:"currentColor"}),r.createElement(o,{d:"M9 5H5V9H3V3H9V5Z",fill:"currentColor"}),r.createElement(o,{d:"M21 9H19V5H15V3H21V9Z",fill:"currentColor"})),B=H;export{H as IconScanVoice,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScanVoice/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 IconScanVoice: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M5 19H9V21H3V15H5V19Z\" fill=\"currentColor\" />\n <Path d=\"M21 21H15V19H19V15H21V21Z\" fill=\"currentColor\" />\n <Path d=\"M11.2305 17H9.42969V7H11.2305V17Z\" fill=\"currentColor\" />\n <Path d=\"M17.9004 15.5H16.0996V8.5H17.9004V15.5Z\" fill=\"currentColor\" />\n <Path d=\"M7.90039 14H6.09961V10H7.90039V14Z\" fill=\"currentColor\" />\n <Path d=\"M14.5703 14H12.7695V10H14.5703V14Z\" fill=\"currentColor\" />\n <Path d=\"M9 5H5V9H3V3H9V5Z\" fill=\"currentColor\" />\n <Path d=\"M21 9H19V5H15V3H21V9Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconScanVoice;\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,CAAK,EAAE,wBAAwB,KAAK,eAAe,EACpDG,EAAA,cAACH,EAAA,CAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDG,EAAA,cAACH,EAAA,CAAK,EAAE,oCAAoC,KAAK,eAAe,EAChEG,EAAA,cAACH,EAAA,CAAK,EAAE,0CAA0C,KAAK,eAAe,EACtEG,EAAA,cAACH,EAAA,CAAK,EAAE,qCAAqC,KAAK,eAAe,EACjEG,EAAA,cAACH,EAAA,CAAK,EAAE,qCAAqC,KAAK,eAAe,EACjEG,EAAA,cAACH,EAAA,CAAK,EAAE,oBAAoB,KAAK,eAAe,EAChDG,EAAA,cAACH,EAAA,CAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconScanVoice","props","React","CentralIconBase","IconScanVoice_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var C=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var H=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of B(o))!I.call(r,l)&&l!==n&&C(r,l,{get:()=>o[l],enumerable:!(p=V(o,l))||p.enumerable});return r};var m=(r,o,n)=>(n=r!=null?u(H(r)):{},f(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>f(C({},"__esModule",{value:!0}),r);var g={};d(g,{IconVoiceMemo:()=>c,default:()=>P});module.exports=x(g);var e=m(require("react"));var i=m(require("react")),s=require("react-native-svg"),a=({children:r,size:o=24,...n})=>i.default.createElement(s.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>e.default.createElement(a,{...r},e.default.createElement(t.Path,{d:"M16 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M9 20H7V4H9V20Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M5 15H3V9H5V15Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M13 15H11V9H13V15Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M21 14H19V10H21V14Z",fill:"currentColor"})),P=c;0&&(module.exports={IconVoiceMemo});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMemo/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 IconVoiceMemo: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M9 20H7V4H9V20Z\" fill=\"currentColor\" />\n <Path d=\"M5 15H3V9H5V15Z\" fill=\"currentColor\" />\n <Path d=\"M13 15H11V9H13V15Z\" fill=\"currentColor\" />\n <Path d=\"M21 14H19V10H21V14Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMemo;\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,gRACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,CACpD,EAIGE,EAAQJ","names":["IconVoiceMemo_exports","__export","IconVoiceMemo","IconVoiceMemo_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceMemo","props","React","CentralIconBase","IconVoiceMemo_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...l})=>C.createElement(p,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var f=e=>o.createElement(t,{...e},o.createElement(n,{d:"M16 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z",fill:"currentColor"}),o.createElement(n,{d:"M9 20H7V4H9V20Z",fill:"currentColor"}),o.createElement(n,{d:"M5 15H3V9H5V15Z",fill:"currentColor"}),o.createElement(n,{d:"M13 15H11V9H13V15Z",fill:"currentColor"}),o.createElement(n,{d:"M21 14H19V10H21V14Z",fill:"currentColor"})),I=f;export{f as IconVoiceMemo,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMemo/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 IconVoiceMemo: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M9 20H7V4H9V20Z\" fill=\"currentColor\" />\n <Path d=\"M5 15H3V9H5V15Z\" fill=\"currentColor\" />\n <Path d=\"M13 15H11V9H13V15Z\" fill=\"currentColor\" />\n <Path d=\"M21 14H19V10H21V14Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMemo;\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,gRACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9CG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9CG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CAAK,EAAE,sBAAsB,KAAK,eAAe,CACpD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceMemo","props","React","CentralIconBase","IconVoiceMemo_default"]}
|
package/README.md
CHANGED
|
@@ -1351,6 +1351,7 @@ Below is a complete list of available icons:
|
|
|
1351
1351
|
### Photography & Video
|
|
1352
1352
|
|
|
1353
1353
|
- Icon4k
|
|
1354
|
+
- IconAddImage
|
|
1354
1355
|
- IconAdjustPhoto
|
|
1355
1356
|
- IconAlt
|
|
1356
1357
|
- IconAspectRatio11
|
|
@@ -1707,6 +1708,7 @@ Below is a complete list of available icons:
|
|
|
1707
1708
|
- IconRewind15s
|
|
1708
1709
|
- IconRewind30s
|
|
1709
1710
|
- IconRewind5s
|
|
1711
|
+
- IconScanVoice
|
|
1710
1712
|
- IconShuffle
|
|
1711
1713
|
- IconSkip
|
|
1712
1714
|
- IconSoundFx
|
|
@@ -1717,6 +1719,7 @@ Below is a complete list of available icons:
|
|
|
1717
1719
|
- IconVoice3
|
|
1718
1720
|
- IconVoiceHigh
|
|
1719
1721
|
- IconVoiceLow
|
|
1722
|
+
- IconVoiceMemo
|
|
1720
1723
|
- IconVoiceMid
|
|
1721
1724
|
- IconVoiceMode
|
|
1722
1725
|
- IconVoiceRecord
|
|
@@ -1928,6 +1931,8 @@ Below is a complete list of available icons:
|
|
|
1928
1931
|
- IconCalenderToday
|
|
1929
1932
|
- IconCalenderTomorrow
|
|
1930
1933
|
- IconClock
|
|
1934
|
+
- IconClock3OClock
|
|
1935
|
+
- IconClock9OClock
|
|
1931
1936
|
- IconClockAlert
|
|
1932
1937
|
- IconClockSnooze
|
|
1933
1938
|
- IconClockSquare
|
package/filtered-icons.json
CHANGED
|
@@ -84,6 +84,20 @@
|
|
|
84
84
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
85
85
|
"componentName": "Icon4k"
|
|
86
86
|
},
|
|
87
|
+
{
|
|
88
|
+
"category": "Photography & Video",
|
|
89
|
+
"svg": "<path d=\"M19 17H22V19H19V22H17V19H14V17H17V14H19V17Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 12.498C20.2304 12.1771 19.3859 12 18.5 12C15.6596 12 13.2458 13.8223 12.3613 16.3613L8 12L5 15V19H12.0215C12.0751 19.704 12.239 20.3765 12.499 21H3V3H21V12.498ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\" fill=\"currentColor\"/>",
|
|
90
|
+
"iconName": "add-image, upload-image",
|
|
91
|
+
"variant": {
|
|
92
|
+
"join": "square",
|
|
93
|
+
"filled": "on",
|
|
94
|
+
"radius": "0",
|
|
95
|
+
"stroke": "2"
|
|
96
|
+
},
|
|
97
|
+
"createdAt": "2026-03-04T09:00:36.81334+00:00",
|
|
98
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
99
|
+
"componentName": "IconAddImage"
|
|
100
|
+
},
|
|
87
101
|
{
|
|
88
102
|
"category": "Edit",
|
|
89
103
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.08594 12.0001L12.0002 1.08594L22.9144 12.0001L12.0002 22.9144L1.08594 12.0001ZM13 8H11V11H8V13H11V16H13V13H16V11H13V8Z\" fill=\"currentColor\"/>",
|
|
@@ -6692,6 +6706,34 @@
|
|
|
6692
6706
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
6693
6707
|
"componentName": "IconClock"
|
|
6694
6708
|
},
|
|
6709
|
+
{
|
|
6710
|
+
"category": "Time & Date",
|
|
6711
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V13H17V11H13V6H11Z\" fill=\"currentColor\"/>",
|
|
6712
|
+
"iconName": "clock-3-o-clock, time, 3-00",
|
|
6713
|
+
"variant": {
|
|
6714
|
+
"join": "square",
|
|
6715
|
+
"filled": "on",
|
|
6716
|
+
"radius": "0",
|
|
6717
|
+
"stroke": "2"
|
|
6718
|
+
},
|
|
6719
|
+
"createdAt": "2026-03-05T09:00:40.799819+00:00",
|
|
6720
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
6721
|
+
"componentName": "IconClock3OClock"
|
|
6722
|
+
},
|
|
6723
|
+
{
|
|
6724
|
+
"category": "Time & Date",
|
|
6725
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11 6V11H7V13H13V6H11Z\" fill=\"currentColor\"/>",
|
|
6726
|
+
"iconName": "clock-9-o-clock, time, 9-00",
|
|
6727
|
+
"variant": {
|
|
6728
|
+
"join": "square",
|
|
6729
|
+
"filled": "on",
|
|
6730
|
+
"radius": "0",
|
|
6731
|
+
"stroke": "2"
|
|
6732
|
+
},
|
|
6733
|
+
"createdAt": "2026-03-05T09:00:40.799819+00:00",
|
|
6734
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
6735
|
+
"componentName": "IconClock9OClock"
|
|
6736
|
+
},
|
|
6695
6737
|
{
|
|
6696
6738
|
"category": "Time & Date",
|
|
6697
6739
|
"svg": "<path d=\"M5.00015 0.835693L0.585938 5.24991L2.00015 6.66412L6.41436 2.24991L5.00015 0.835693Z\" fill=\"currentColor\"/><path d=\"M23.4144 5.24991L19.0002 0.835693L17.5859 2.24991L22.0002 6.66412L23.4144 5.24991Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22 11.9999C22 17.5228 17.5228 21.9999 12 21.9999C6.47715 21.9999 2 17.5228 2 11.9999C2 6.47706 6.47715 1.99991 12 1.99991C17.5228 1.99991 22 6.47706 22 11.9999ZM13 6.99991V11.5857L15.9142 14.4999L14.5 15.9141L11 12.4141V6.99991H13Z\" fill=\"currentColor\"/>",
|
|
@@ -19782,6 +19824,20 @@
|
|
|
19782
19824
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
19783
19825
|
"componentName": "IconScanTextSparkle"
|
|
19784
19826
|
},
|
|
19827
|
+
{
|
|
19828
|
+
"category": "Sound & Music",
|
|
19829
|
+
"svg": "<path d=\"M5 19H9V21H3V15H5V19Z\" fill=\"currentColor\"/><path d=\"M21 21H15V19H19V15H21V21Z\" fill=\"currentColor\"/><path d=\"M11.2305 17H9.42969V7H11.2305V17Z\" fill=\"currentColor\"/><path d=\"M17.9004 15.5H16.0996V8.5H17.9004V15.5Z\" fill=\"currentColor\"/><path d=\"M7.90039 14H6.09961V10H7.90039V14Z\" fill=\"currentColor\"/><path d=\"M14.5703 14H12.7695V10H14.5703V14Z\" fill=\"currentColor\"/><path d=\"M9 5H5V9H3V3H9V5Z\" fill=\"currentColor\"/><path d=\"M21 9H19V5H15V3H21V9Z\" fill=\"currentColor\"/>",
|
|
19830
|
+
"iconName": "scan-voice",
|
|
19831
|
+
"variant": {
|
|
19832
|
+
"join": "square",
|
|
19833
|
+
"filled": "on",
|
|
19834
|
+
"radius": "0",
|
|
19835
|
+
"stroke": "2"
|
|
19836
|
+
},
|
|
19837
|
+
"createdAt": "2026-03-04T09:00:36.81334+00:00",
|
|
19838
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
19839
|
+
"componentName": "IconScanVoice"
|
|
19840
|
+
},
|
|
19785
19841
|
{
|
|
19786
19842
|
"category": "Building",
|
|
19787
19843
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 4H18V18H19V8H22V18H23V20H1V18H2V8H5V18H6V4ZM14 18V15H10V18H14Z\" fill=\"currentColor\"/>",
|
|
@@ -24822,6 +24878,20 @@
|
|
|
24822
24878
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
24823
24879
|
"componentName": "IconVoiceLow"
|
|
24824
24880
|
},
|
|
24881
|
+
{
|
|
24882
|
+
"category": "Sound & Music",
|
|
24883
|
+
"svg": "<path d=\"M16 2C17.6569 2 19 3.34315 19 5C19 6.30574 18.1645 7.41299 17 7.8252V16.1738C18.1647 16.5859 19 17.6941 19 19C19 20.6569 17.6569 22 16 22C14.3431 22 13 20.6569 13 19C13 17.6941 13.8353 16.5859 15 16.1738V7.8252C13.8355 7.41299 13 6.30574 13 5C13 3.34315 14.3431 2 16 2Z\" fill=\"currentColor\"/><path d=\"M9 20H7V4H9V20Z\" fill=\"currentColor\"/><path d=\"M5 15H3V9H5V15Z\" fill=\"currentColor\"/><path d=\"M13 15H11V9H13V15Z\" fill=\"currentColor\"/><path d=\"M21 14H19V10H21V14Z\" fill=\"currentColor\"/>",
|
|
24884
|
+
"iconName": "voice-memo, voice-control",
|
|
24885
|
+
"variant": {
|
|
24886
|
+
"join": "square",
|
|
24887
|
+
"filled": "on",
|
|
24888
|
+
"radius": "0",
|
|
24889
|
+
"stroke": "2"
|
|
24890
|
+
},
|
|
24891
|
+
"createdAt": "2026-03-04T09:00:36.81334+00:00",
|
|
24892
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
24893
|
+
"componentName": "IconVoiceMemo"
|
|
24894
|
+
},
|
|
24825
24895
|
{
|
|
24826
24896
|
"category": "Sound & Music",
|
|
24827
24897
|
"svg": "<path d=\"M9 19H7V5H9V19Z\" fill=\"currentColor\"/><path d=\"M17 17H15V7H17V17Z\" fill=\"currentColor\"/><path d=\"M13 15H11V9H13V15Z\" fill=\"currentColor\"/><path d=\"M5 14H3V10H5V14Z\" fill=\"currentColor\"/><path d=\"M21 14H19V10H21V14Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export type CentralIconName =
|
|
|
5
5
|
| "Icon3dPackage"
|
|
6
6
|
| "Icon3dSphere"
|
|
7
7
|
| "Icon4k"
|
|
8
|
+
| "IconAddImage"
|
|
8
9
|
| "IconAddKeyframe"
|
|
9
10
|
| "IconAddToBasket"
|
|
10
11
|
| "IconAddToBasket2"
|
|
@@ -477,6 +478,8 @@ export type CentralIconName =
|
|
|
477
478
|
| "IconClipboard2"
|
|
478
479
|
| "IconClipboard2Sparkle"
|
|
479
480
|
| "IconClock"
|
|
481
|
+
| "IconClock3OClock"
|
|
482
|
+
| "IconClock9OClock"
|
|
480
483
|
| "IconClockAlert"
|
|
481
484
|
| "IconClockSnooze"
|
|
482
485
|
| "IconClockSquare"
|
|
@@ -1412,6 +1415,7 @@ export type CentralIconName =
|
|
|
1412
1415
|
| "IconSatellite2"
|
|
1413
1416
|
| "IconScanCode"
|
|
1414
1417
|
| "IconScanTextSparkle"
|
|
1418
|
+
| "IconScanVoice"
|
|
1415
1419
|
| "IconSchool"
|
|
1416
1420
|
| "IconScissors1"
|
|
1417
1421
|
| "IconScissors2"
|
|
@@ -1772,6 +1776,7 @@ export type CentralIconName =
|
|
|
1772
1776
|
| "IconVoiceCircle"
|
|
1773
1777
|
| "IconVoiceHigh"
|
|
1774
1778
|
| "IconVoiceLow"
|
|
1779
|
+
| "IconVoiceMemo"
|
|
1775
1780
|
| "IconVoiceMid"
|
|
1776
1781
|
| "IconVoiceMode"
|
|
1777
1782
|
| "IconVoiceRecord"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.153",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-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": 1840,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 70,
|
|
@@ -1268,9 +1268,10 @@
|
|
|
1268
1268
|
]
|
|
1269
1269
|
},
|
|
1270
1270
|
"Photography & Video": {
|
|
1271
|
-
"count":
|
|
1271
|
+
"count": 84,
|
|
1272
1272
|
"icons": [
|
|
1273
1273
|
"Icon4k",
|
|
1274
|
+
"IconAddImage",
|
|
1274
1275
|
"IconAdjustPhoto",
|
|
1275
1276
|
"IconAlt",
|
|
1276
1277
|
"IconAspectRatio11",
|
|
@@ -1599,7 +1600,7 @@
|
|
|
1599
1600
|
]
|
|
1600
1601
|
},
|
|
1601
1602
|
"Sound & Music": {
|
|
1602
|
-
"count":
|
|
1603
|
+
"count": 56,
|
|
1603
1604
|
"icons": [
|
|
1604
1605
|
"IconAirpodLeft",
|
|
1605
1606
|
"IconAirpodRight",
|
|
@@ -1635,6 +1636,7 @@
|
|
|
1635
1636
|
"IconRewind15s",
|
|
1636
1637
|
"IconRewind30s",
|
|
1637
1638
|
"IconRewind5s",
|
|
1639
|
+
"IconScanVoice",
|
|
1638
1640
|
"IconShuffle",
|
|
1639
1641
|
"IconSkip",
|
|
1640
1642
|
"IconSoundFx",
|
|
@@ -1645,6 +1647,7 @@
|
|
|
1645
1647
|
"IconVoice3",
|
|
1646
1648
|
"IconVoiceHigh",
|
|
1647
1649
|
"IconVoiceLow",
|
|
1650
|
+
"IconVoiceMemo",
|
|
1648
1651
|
"IconVoiceMid",
|
|
1649
1652
|
"IconVoiceMode",
|
|
1650
1653
|
"IconVoiceRecord",
|
|
@@ -1839,7 +1842,7 @@
|
|
|
1839
1842
|
]
|
|
1840
1843
|
},
|
|
1841
1844
|
"Time & Date": {
|
|
1842
|
-
"count":
|
|
1845
|
+
"count": 40,
|
|
1843
1846
|
"icons": [
|
|
1844
1847
|
"IconCalendar1",
|
|
1845
1848
|
"IconCalendar2",
|
|
@@ -1864,6 +1867,8 @@
|
|
|
1864
1867
|
"IconCalenderToday",
|
|
1865
1868
|
"IconCalenderTomorrow",
|
|
1866
1869
|
"IconClock",
|
|
1870
|
+
"IconClock3OClock",
|
|
1871
|
+
"IconClock9OClock",
|
|
1867
1872
|
"IconClockAlert",
|
|
1868
1873
|
"IconClockSnooze",
|
|
1869
1874
|
"IconClockSquare",
|
|
@@ -2043,6 +2048,7 @@
|
|
|
2043
2048
|
"Icon3dPackage": "3d-package, box",
|
|
2044
2049
|
"Icon3dSphere": "3d-sphere",
|
|
2045
2050
|
"Icon4k": "4k",
|
|
2051
|
+
"IconAddImage": "add-image, upload-image",
|
|
2046
2052
|
"IconAddKeyframe": "add-keyframe, rhombus",
|
|
2047
2053
|
"IconAddToBasket": "add-to-basket",
|
|
2048
2054
|
"IconAddToBasket2": "add-to-basket-2",
|
|
@@ -2515,6 +2521,8 @@
|
|
|
2515
2521
|
"IconClipboard2": "clipboard-2, copy, list",
|
|
2516
2522
|
"IconClipboard2Sparkle": "clipboard 2-sparkle, copy, list, auto-fill, form-fill",
|
|
2517
2523
|
"IconClock": "clock, time, timer",
|
|
2524
|
+
"IconClock3OClock": "clock-3-o-clock, time, 3-00",
|
|
2525
|
+
"IconClock9OClock": "clock-9-o-clock, time, 9-00",
|
|
2518
2526
|
"IconClockAlert": "clock-alert, timer",
|
|
2519
2527
|
"IconClockSnooze": "clock-snooze, timer, snooze, zz",
|
|
2520
2528
|
"IconClockSquare": "clock-square, time, timer",
|
|
@@ -3450,6 +3458,7 @@
|
|
|
3450
3458
|
"IconSatellite2": "satellite-2, radar, feed",
|
|
3451
3459
|
"IconScanCode": "scan-code, barcode",
|
|
3452
3460
|
"IconScanTextSparkle": "scan-text-sparkle, scan, arrows-all-sides, focus, list",
|
|
3461
|
+
"IconScanVoice": "scan-voice",
|
|
3453
3462
|
"IconSchool": "school, building",
|
|
3454
3463
|
"IconScissors1": "scissors-1, cut",
|
|
3455
3464
|
"IconScissors2": "scissors-2, cut",
|
|
@@ -3810,6 +3819,7 @@
|
|
|
3810
3819
|
"IconVoiceCircle": "voice-circle, waves",
|
|
3811
3820
|
"IconVoiceHigh": "voice-high, wave",
|
|
3812
3821
|
"IconVoiceLow": "voice-low, wave",
|
|
3822
|
+
"IconVoiceMemo": "voice-memo, voice-control",
|
|
3813
3823
|
"IconVoiceMid": "voice-mid, wave",
|
|
3814
3824
|
"IconVoiceMode": "voice-mode, voice-settings",
|
|
3815
3825
|
"IconVoiceRecord": "voice-record",
|
package/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { Icon3dBoxTop, default as Icon3dBoxTopDefault } from "./Icon3dBoxTop";
|
|
|
4
4
|
export { Icon3dPackage, default as Icon3dPackageDefault, } from "./Icon3dPackage";
|
|
5
5
|
export { Icon3dSphere, default as Icon3dSphereDefault } from "./Icon3dSphere";
|
|
6
6
|
export { Icon4k, default as Icon4kDefault } from "./Icon4k";
|
|
7
|
+
export { IconAddImage, default as IconAddImageDefault } from "./IconAddImage";
|
|
7
8
|
export { IconAddKeyframe, default as IconAddKeyframeDefault, } from "./IconAddKeyframe";
|
|
8
9
|
export { IconAddToBasket, default as IconAddToBasketDefault, } from "./IconAddToBasket";
|
|
9
10
|
export { IconAddToBasket2, default as IconAddToBasket2Default, } from "./IconAddToBasket2";
|
|
@@ -476,6 +477,8 @@ export { IconClipboard, default as IconClipboardDefault, } from "./IconClipboard
|
|
|
476
477
|
export { IconClipboard2, default as IconClipboard2Default, } from "./IconClipboard2";
|
|
477
478
|
export { IconClipboard2Sparkle, default as IconClipboard2SparkleDefault, } from "./IconClipboard2Sparkle";
|
|
478
479
|
export { IconClock, default as IconClockDefault } from "./IconClock";
|
|
480
|
+
export { IconClock3OClock, default as IconClock3OClockDefault, } from "./IconClock3OClock";
|
|
481
|
+
export { IconClock9OClock, default as IconClock9OClockDefault, } from "./IconClock9OClock";
|
|
479
482
|
export { IconClockAlert, default as IconClockAlertDefault, } from "./IconClockAlert";
|
|
480
483
|
export { IconClockSnooze, default as IconClockSnoozeDefault, } from "./IconClockSnooze";
|
|
481
484
|
export { IconClockSquare, default as IconClockSquareDefault, } from "./IconClockSquare";
|
|
@@ -1411,6 +1414,7 @@ export { IconSatellite1, default as IconSatellite1Default, } from "./IconSatelli
|
|
|
1411
1414
|
export { IconSatellite2, default as IconSatellite2Default, } from "./IconSatellite2";
|
|
1412
1415
|
export { IconScanCode, default as IconScanCodeDefault } from "./IconScanCode";
|
|
1413
1416
|
export { IconScanTextSparkle, default as IconScanTextSparkleDefault, } from "./IconScanTextSparkle";
|
|
1417
|
+
export { IconScanVoice, default as IconScanVoiceDefault, } from "./IconScanVoice";
|
|
1414
1418
|
export { IconSchool, default as IconSchoolDefault } from "./IconSchool";
|
|
1415
1419
|
export { IconScissors1, default as IconScissors1Default, } from "./IconScissors1";
|
|
1416
1420
|
export { IconScissors2, default as IconScissors2Default, } from "./IconScissors2";
|
|
@@ -1771,6 +1775,7 @@ export { IconVoiceAndVideo, default as IconVoiceAndVideoDefault, } from "./IconV
|
|
|
1771
1775
|
export { IconVoiceCircle, default as IconVoiceCircleDefault, } from "./IconVoiceCircle";
|
|
1772
1776
|
export { IconVoiceHigh, default as IconVoiceHighDefault, } from "./IconVoiceHigh";
|
|
1773
1777
|
export { IconVoiceLow, default as IconVoiceLowDefault } from "./IconVoiceLow";
|
|
1778
|
+
export { IconVoiceMemo, default as IconVoiceMemoDefault, } from "./IconVoiceMemo";
|
|
1774
1779
|
export { IconVoiceMid, default as IconVoiceMidDefault } from "./IconVoiceMid";
|
|
1775
1780
|
export { IconVoiceMode, default as IconVoiceModeDefault, } from "./IconVoiceMode";
|
|
1776
1781
|
export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoiceRecord";
|