@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.140 → 1.1.142
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/IconDeepDive/index.d.ts +4 -0
- package/IconDeepDive/index.js +2 -0
- package/IconDeepDive/index.js.map +1 -0
- package/IconDeepDive/index.mjs +2 -0
- package/IconDeepDive/index.mjs.map +1 -0
- package/IconEinstein/index.js +1 -1
- package/IconEinstein/index.js.map +1 -1
- package/IconEinstein/index.mjs +1 -1
- package/IconEinstein/index.mjs.map +1 -1
- package/IconHapticFeedback/index.d.ts +4 -0
- package/IconHapticFeedback/index.js +2 -0
- package/IconHapticFeedback/index.js.map +1 -0
- package/IconHapticFeedback/index.mjs +2 -0
- package/IconHapticFeedback/index.mjs.map +1 -0
- package/IconSurfing/index.js +1 -1
- package/IconSurfing/index.js.map +1 -1
- package/IconSurfing/index.mjs +1 -1
- package/IconSurfing/index.mjs.map +1 -1
- package/IconUserKey/index.js +1 -1
- package/IconUserKey/index.js.map +1 -1
- package/IconUserKey/index.mjs +1 -1
- package/IconUserKey/index.mjs.map +1 -1
- package/IconVoiceCircle/index.d.ts +4 -0
- package/IconVoiceCircle/index.js +2 -0
- package/IconVoiceCircle/index.js.map +1 -0
- package/IconVoiceCircle/index.mjs +2 -0
- package/IconVoiceCircle/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +45 -3
- package/icons/index.d.ts +3 -0
- package/icons-index.json +11 -5
- package/index.d.ts +3 -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 +24 -3
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var m=(r,o,e)=>(e=r!=null?f(x(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>C(n({},"__esModule",{value:!0}),r);var k={};d(k,{IconDeepDive:()=>u,default:()=>h});module.exports=g(k);var p=m(require("react"));var c=m(require("react")),l=require("react-native-svg"),i=({children:r,size:o=24,...e})=>c.default.createElement(l.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 s=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(s.Path,{d:"M14.3944 19.25C14.3944 11.9733 23.4916 13.4655 21.0991 4C17.9144 7.68103 14.8732 6 12.0004 8.5C9.12756 6 6.08545 7.68103 2.90074 4C0.508731 14.5172 9.60634 11.9733 9.60634 19.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),p.default.createElement(s.Path,{d:"M3 20.25C9.28654 17.25 13.7917 22.5 21 18.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),h=u;0&&(module.exports={IconDeepDive});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDeepDive/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 IconDeepDive: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.3944 19.25C14.3944 11.9733 23.4916 13.4655 21.0991 4C17.9144 7.68103 14.8732 6 12.0004 8.5C9.12756 6 6.08545 7.68103 2.90074 4C0.508731 14.5172 9.60634 11.9733 9.60634 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M3 20.25C9.28654 17.25 13.7917 22.5 21 18.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDeepDive;\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,oLACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+CACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconDeepDive_exports","__export","IconDeepDive","IconDeepDive_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDeepDive","props","React","CentralIconBase","IconDeepDive_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import s from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>s.createElement(a,{...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 n}from"react-native-svg";var C=o=>e.createElement(t,{...o},e.createElement(n,{d:"M14.3944 19.25C14.3944 11.9733 23.4916 13.4655 21.0991 4C17.9144 7.68103 14.8732 6 12.0004 8.5C9.12756 6 6.08545 7.68103 2.90074 4C0.508731 14.5172 9.60634 11.9733 9.60634 19.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement(n,{d:"M3 20.25C9.28654 17.25 13.7917 22.5 21 18.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),P=C;export{C as IconDeepDive,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDeepDive/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 IconDeepDive: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.3944 19.25C14.3944 11.9733 23.4916 13.4655 21.0991 4C17.9144 7.68103 14.8732 6 12.0004 8.5C9.12756 6 6.08545 7.68103 2.90074 4C0.508731 14.5172 9.60634 11.9733 9.60634 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M3 20.25C9.28654 17.25 13.7917 22.5 21 18.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDeepDive;\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,oLACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+CACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDeepDive","props","React","CentralIconBase","IconDeepDive_default"]}
|
package/IconEinstein/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var d=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},c=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!L.call(r,s)&&s!==t&&p(r,s,{get:()=>o[s],enumerable:!(C=k(o,s))||C.enumerable});return r};var i=(r,o,t)=>(t=r!=null?d(x(r)):{},c(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>c(p({},"__esModule",{value:!0}),r);var P={};h(P,{IconEinstein:()=>u,default:()=>I});module.exports=B(P);var e=i(require("react"));var l=i(require("react")),a=require("react-native-svg"),m=({children:r,size:o=24,...t})=>l.default.createElement(a.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),u=r=>e.default.createElement(m,{...r},e.default.createElement(n.Circle,{cx:"7",cy:"7",r:"3",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Circle,{cx:"17",cy:"7",r:"3",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(n.Path,{d:"M6.5 19.
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},c=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!L.call(r,s)&&s!==t&&p(r,s,{get:()=>o[s],enumerable:!(C=k(o,s))||C.enumerable});return r};var i=(r,o,t)=>(t=r!=null?d(x(r)):{},c(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>c(p({},"__esModule",{value:!0}),r);var P={};h(P,{IconEinstein:()=>u,default:()=>I});module.exports=B(P);var e=i(require("react"));var l=i(require("react")),a=require("react-native-svg"),m=({children:r,size:o=24,...t})=>l.default.createElement(a.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),u=r=>e.default.createElement(m,{...r},e.default.createElement(n.Circle,{cx:"7",cy:"7",r:"3",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Circle,{cx:"17",cy:"7",r:"3",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(n.Path,{d:"M6.5 19.5006H4C4 14.9164 8.00116 12.1421 12 14.548C16.1941 12.3667 19.9643 14.6379 20 19.5006H17.5C16.7771 18.6331 15.5356 18.4101 14.556 18.9717L14.5 19.0038L13.5243 18.4282C12.5838 17.8734 11.4162 17.8734 10.4757 18.4282L9.5 19.0038L9.44401 18.9717C8.46437 18.4101 7.22287 18.6331 6.5 19.5006Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),I=u;0&&(module.exports={IconEinstein});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEinstein/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconEinstein: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"7\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"17\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 19.
|
|
1
|
+
{"version":3,"sources":["../src/IconEinstein/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconEinstein: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"7\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"17\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 19.5006H4C4 14.9164 8.00116 12.1421 12 14.548C16.1941 12.3667 19.9643 14.6379 20 19.5006H17.5C16.7771 18.6331 15.5356 18.4101 14.556 18.9717L14.5 19.0038L13.5243 18.4282C12.5838 17.8734 11.4162 17.8734 10.4757 18.4282L9.5 19.0038L9.44401 18.9717C8.46437 18.4101 7.22287 18.6331 6.5 19.5006Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEinstein;\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,EAA6B,4BAEhBC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,IAAI,GAAG,IAAI,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EAClE,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,IAAI,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACnE,EAAAA,QAAA,cAAC,QACC,EAAE,6EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0SACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconEinstein_exports","__export","IconEinstein","IconEinstein_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEinstein","props","React","CentralIconBase","IconEinstein_default"]}
|
package/IconEinstein/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import C from"react";import{Svg as c}from"react-native-svg";var e=({children:t,size:r=24,...p})=>C.createElement(c,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as n,Path as s}from"react-native-svg";var i=t=>o.createElement(e,{...t},o.createElement(n,{cx:"7",cy:"7",r:"3",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{cx:"17",cy:"7",r:"3",stroke:"currentColor",strokeWidth:"2"}),o.createElement(s,{d:"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(s,{d:"M6.5 19.
|
|
1
|
+
import o from"react";import C from"react";import{Svg as c}from"react-native-svg";var e=({children:t,size:r=24,...p})=>C.createElement(c,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as n,Path as s}from"react-native-svg";var i=t=>o.createElement(e,{...t},o.createElement(n,{cx:"7",cy:"7",r:"3",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{cx:"17",cy:"7",r:"3",stroke:"currentColor",strokeWidth:"2"}),o.createElement(s,{d:"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(s,{d:"M6.5 19.5006H4C4 14.9164 8.00116 12.1421 12 14.548C16.1941 12.3667 19.9643 14.6379 20 19.5006H17.5C16.7771 18.6331 15.5356 18.4101 14.556 18.9717L14.5 19.0038L13.5243 18.4282C12.5838 17.8734 11.4162 17.8734 10.4757 18.4282L9.5 19.0038L9.44401 18.9717C8.46437 18.4101 7.22287 18.6331 6.5 19.5006Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),h=i;export{i as IconEinstein,h as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEinstein/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconEinstein: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"7\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"17\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 19.
|
|
1
|
+
{"version":3,"sources":["../src/IconEinstein/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconEinstein: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"7\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"17\" cy=\"7\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 19.5006H4C4 14.9164 8.00116 12.1421 12 14.548C16.1941 12.3667 19.9643 14.6379 20 19.5006H17.5C16.7771 18.6331 15.5356 18.4101 14.556 18.9717L14.5 19.0038L13.5243 18.4282C12.5838 17.8734 11.4162 17.8734 10.4757 18.4282L9.5 19.0038L9.44401 18.9717C8.46437 18.4101 7.22287 18.6331 6.5 19.5006Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEinstein;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,IAAI,GAAG,IAAI,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EAClEI,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,IAAI,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACnEI,EAAA,cAACH,EAAA,CACC,EAAE,6EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0SACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconEinstein","props","React","CentralIconBase","IconEinstein_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var s=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,c)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!d.call(r,e)&&e!==t&&s(r,e,{get:()=>o[e],enumerable:!(c=x(o,e))||c.enumerable});return r};var C=(r,o,t)=>(t=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),k=r=>a(s({},"__esModule",{value:!0}),r);var g={};h(g,{IconHapticFeedback:()=>f,default:()=>P});module.exports=k(g);var n=C(require("react"));var l=C(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...t})=>l.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),f=r=>n.default.createElement(i,{...r},n.default.createElement(p.Path,{d:"M18 2H6V22H18V2Z",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(p.Circle,{cx:"12",cy:"12",r:"6",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(p.Circle,{cx:"12",cy:"12",r:"2.5",stroke:"currentColor",strokeWidth:"2"})),P=f;0&&(module.exports={IconHapticFeedback});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHapticFeedback/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconHapticFeedback: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M18 2H6V22H18V2Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"12\" cy=\"12\" r=\"6\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"12\" cy=\"12\" r=\"2.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconHapticFeedback;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,wBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjE,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,CACxE,EAIGE,EAAQJ","names":["IconHapticFeedback_exports","__export","IconHapticFeedback","IconHapticFeedback_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconHapticFeedback","props","React","CentralIconBase","IconHapticFeedback_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as c}from"react-native-svg";var e=({children:t,size:r=24,...p})=>s.createElement(c,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as n,Path as a}from"react-native-svg";var C=t=>o.createElement(e,{...t},o.createElement(a,{d:"M18 2H6V22H18V2Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{cx:"12",cy:"12",r:"6",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{cx:"12",cy:"12",r:"2.5",stroke:"currentColor",strokeWidth:"2"})),h=C;export{C as IconHapticFeedback,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHapticFeedback/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconHapticFeedback: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M18 2H6V22H18V2Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"12\" cy=\"12\" r=\"6\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"12\" cy=\"12\" r=\"2.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconHapticFeedback;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjEG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,CACxE,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconHapticFeedback","props","React","CentralIconBase","IconHapticFeedback_default"]}
|
package/IconSurfing/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var f=Object.create;var e=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var
|
|
1
|
+
"use strict";var f=Object.create;var e=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var V=Object.getPrototypeOf,c=Object.prototype.hasOwnProperty;var H=(L,C)=>{for(var r in C)e(L,r,{get:C[r],enumerable:!0})},n=(L,C,r,Z)=>{if(C&&typeof C=="object"||typeof C=="function")for(let t of u(C))!c.call(L,t)&&t!==r&&e(L,t,{get:()=>C[t],enumerable:!(Z=i(C,t))||Z.enumerable});return L};var p=(L,C,r)=>(r=L!=null?f(V(L)):{},n(C||!L||!L.__esModule?e(r,"default",{value:L,enumerable:!0}):r,L)),d=L=>n(e({},"__esModule",{value:!0}),L);var I={};H(I,{IconSurfing:()=>a,default:()=>B});module.exports=d(I);var o=p(require("react"));var s=p(require("react")),l=require("react-native-svg"),m=({children:L,size:C=24,...r})=>s.default.createElement(l.Svg,{...r,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},L);var M=require("react-native-svg"),a=L=>o.default.createElement(m,{...L},o.default.createElement(M.Path,{d:"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z",stroke:"currentColor",strokeWidth:"1.8"}),o.default.createElement(M.Path,{d:"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176V10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688V14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738V15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668V9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529V9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z",fill:"currentColor"}),o.default.createElement(M.Path,{d:"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5",stroke:"currentColor",strokeWidth:"1.8"}),o.default.createElement(M.Path,{d:"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2",stroke:"currentColor",strokeWidth:"1.8"})),B=a;0&&(module.exports={IconSurfing});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconSurfing/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconSurfing/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 IconSurfing: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n <Path\n d=\"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n <Path\n d=\"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSurfing;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8IACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,
|
|
1
|
+
{"version":3,"sources":["../src/IconSurfing/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 IconSurfing: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n <Path\n d=\"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176V10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688V14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738V15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668V9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529V9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n <Path\n d=\"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSurfing;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8IACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+rIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8DACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gHACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconSurfing_exports","__export","IconSurfing","IconSurfing_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSurfing","props","React","CentralIconBase","IconSurfing_default"]}
|
package/IconSurfing/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import C from"react";import e from"react";import{Svg as Z}from"react-native-svg";var t=({children:o,size:L=24,...M})=>e.createElement(Z,{...M,width:typeof L=="number"?`${L}px`:L,height:typeof L=="number"?`${L}px`:L,viewBox:"0 0 24 24",fill:"none"},o);import{Path as r}from"react-native-svg";var n=o=>C.createElement(t,{...o},C.createElement(r,{d:"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z",stroke:"currentColor",strokeWidth:"1.8"}),C.createElement(r,{d:"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z",fill:"currentColor"}),C.createElement(r,{d:"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5",stroke:"currentColor",strokeWidth:"1.8"}),C.createElement(r,{d:"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2",stroke:"currentColor",strokeWidth:"1.8"})),
|
|
1
|
+
import C from"react";import e from"react";import{Svg as Z}from"react-native-svg";var t=({children:o,size:L=24,...M})=>e.createElement(Z,{...M,width:typeof L=="number"?`${L}px`:L,height:typeof L=="number"?`${L}px`:L,viewBox:"0 0 24 24",fill:"none"},o);import{Path as r}from"react-native-svg";var n=o=>C.createElement(t,{...o},C.createElement(r,{d:"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z",stroke:"currentColor",strokeWidth:"1.8"}),C.createElement(r,{d:"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176V10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688V14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738V15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668V9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529V9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z",fill:"currentColor"}),C.createElement(r,{d:"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5",stroke:"currentColor",strokeWidth:"1.8"}),C.createElement(r,{d:"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2",stroke:"currentColor",strokeWidth:"1.8"})),c=n;export{n as IconSurfing,c as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconSurfing/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 IconSurfing: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n <Path\n d=\"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n <Path\n d=\"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSurfing;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8IACF,OAAO,eACP,YAAY,MACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,
|
|
1
|
+
{"version":3,"sources":["../src/IconSurfing/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 IconSurfing: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n <Path\n d=\"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176V10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688V14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738V15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668V9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529V9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n <Path\n d=\"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSurfing;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8IACF,OAAO,eACP,YAAY,MACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+rIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,OAAO,eACP,YAAY,MACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gHACF,OAAO,eACP,YAAY,MACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSurfing","props","React","CentralIconBase","IconSurfing_default"]}
|
package/IconUserKey/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var u=Object.create;var p=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of B(o))!d.call(r,C)&&C!==t&&p(r,C,{get:()=>o[C],enumerable:!(s=x(o,C))||s.enumerable});return r};var c=(r,o,t)=>(t=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),y=r=>l(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconUserKey:()=>f,default:()=>P});module.exports=y(g);var e=c(require("react"));var m=c(require("react")),a=require("react-native-svg"),i=({children:r,size:o=24,...t})=>m.default.createElement(a.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),f=r=>e.default.createElement(i,{...r},e.default.createElement(n.Path,{d:"
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of B(o))!d.call(r,C)&&C!==t&&p(r,C,{get:()=>o[C],enumerable:!(s=x(o,C))||s.enumerable});return r};var c=(r,o,t)=>(t=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),y=r=>l(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconUserKey:()=>f,default:()=>P});module.exports=y(g);var e=c(require("react"));var m=c(require("react")),a=require("react-native-svg"),i=({children:r,size:o=24,...t})=>m.default.createElement(a.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),f=r=>e.default.createElement(i,{...r},e.default.createElement(n.Path,{d:"M11 20H5V19C5 15.134 8.13401 12 12 12",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Circle,{cx:"12",cy:"7.75",r:"4.25",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Circle,{cx:"19.0992",cy:"15.4",r:"0.9",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M18.8496 12.5498C20.5617 12.5498 21.9502 13.9383 21.9502 15.6504C21.95 17.3623 20.5616 18.75 18.8496 18.75C18.5179 18.75 18.199 18.6961 17.8994 18.5996L16 20.5H14V18.5L15.8994 16.5996C15.8032 16.3004 15.75 15.9816 15.75 15.6504C15.75 13.9384 17.1377 12.55 18.8496 12.5498Z",stroke:"currentColor",strokeWidth:"2"})),P=f;0&&(module.exports={IconUserKey});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconUserKey/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconUserKey/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconUserKey: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconUserKey/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconUserKey: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11 20H5V19C5 15.134 8.13401 12 12 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Circle\n cx=\"12\"\n cy=\"7.75\"\n r=\"4.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Circle cx=\"19.0992\" cy=\"15.4\" r=\"0.9\" fill=\"currentColor\" />\n <Path\n d=\"M18.8496 12.5498C20.5617 12.5498 21.9502 13.9383 21.9502 15.6504C21.95 17.3623 20.5616 18.75 18.8496 18.75C18.5179 18.75 18.199 18.6961 17.8994 18.5996L16 20.5H14V18.5L15.8994 16.5996C15.8032 16.3004 15.75 15.9816 15.75 15.6504C15.75 13.9384 17.1377 12.55 18.8496 12.5498Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUserKey;\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,iBAAAE,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,EAA6B,4BAEhBC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wCACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,OACH,EAAE,OACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EAC3D,EAAAA,QAAA,cAAC,QACC,EAAE,mRACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconUserKey_exports","__export","IconUserKey","IconUserKey_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconUserKey","props","React","CentralIconBase","IconUserKey_default"]}
|
package/IconUserKey/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import s from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...p})=>s.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as n,Path as C}from"react-native-svg";var c=t=>o.createElement(e,{...t},o.createElement(C,{d:"
|
|
1
|
+
import o from"react";import s from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...p})=>s.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as n,Path as C}from"react-native-svg";var c=t=>o.createElement(e,{...t},o.createElement(C,{d:"M11 20H5V19C5 15.134 8.13401 12 12 12",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{cx:"12",cy:"7.75",r:"4.25",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{cx:"19.0992",cy:"15.4",r:"0.9",fill:"currentColor"}),o.createElement(C,{d:"M18.8496 12.5498C20.5617 12.5498 21.9502 13.9383 21.9502 15.6504C21.95 17.3623 20.5616 18.75 18.8496 18.75C18.5179 18.75 18.199 18.6961 17.8994 18.5996L16 20.5H14V18.5L15.8994 16.5996C15.8032 16.3004 15.75 15.9816 15.75 15.6504C15.75 13.9384 17.1377 12.55 18.8496 12.5498Z",stroke:"currentColor",strokeWidth:"2"})),h=c;export{c as IconUserKey,h as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconUserKey/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconUserKey: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconUserKey/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconUserKey: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11 20H5V19C5 15.134 8.13401 12 12 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Circle\n cx=\"12\"\n cy=\"7.75\"\n r=\"4.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Circle cx=\"19.0992\" cy=\"15.4\" r=\"0.9\" fill=\"currentColor\" />\n <Path\n d=\"M18.8496 12.5498C20.5617 12.5498 21.9502 13.9383 21.9502 15.6504C21.95 17.3623 20.5616 18.75 18.8496 18.75C18.5179 18.75 18.199 18.6961 17.8994 18.5996L16 20.5H14V18.5L15.8994 16.5996C15.8032 16.3004 15.75 15.9816 15.75 15.6504C15.75 13.9384 17.1377 12.55 18.8496 12.5498Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUserKey;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wCACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,OACH,EAAE,OACF,OAAO,eACP,YAAY,IACd,EACAI,EAAA,cAACJ,EAAA,CAAO,GAAG,UAAU,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EAC3DI,EAAA,cAACH,EAAA,CACC,EAAE,mRACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconUserKey","props","React","CentralIconBase","IconUserKey_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var s=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of k(o))!B.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(C=f(o,t))||C.enumerable});return r};var c=(r,o,e)=>(e=r!=null?d(x(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>i(s({},"__esModule",{value:!0}),r);var g={};I(g,{IconVoiceCircle:()=>u,default:()=>P});module.exports=h(g);var n=c(require("react"));var l=c(require("react")),a=require("react-native-svg"),m=({children:r,size:o=24,...e})=>l.default.createElement(a.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 p=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(p.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(p.Path,{d:"M3.42871 14.5714C12.4287 -1.28575 13.5633 23.4791 20.5716 14.5714",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M4.03027 16.2857C9.49878 12.347 12.7096 19.9209 17.5713 19.0765",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),P=u;0&&(module.exports={IconVoiceCircle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconVoiceCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M3.42871 14.5714C12.4287 -1.28575 13.5633 23.4791 20.5716 14.5714\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.03027 16.2857C9.49878 12.347 12.7096 19.9209 17.5713 19.0765\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceCircle;\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,qBAAAE,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,EAA6B,4BAEhBC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,oEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconVoiceCircle_exports","__export","IconVoiceCircle","IconVoiceCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceCircle","props","React","CentralIconBase","IconVoiceCircle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as i,Path as n}from"react-native-svg";var c=e=>o.createElement(t,{...e},o.createElement(i,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{d:"M3.42871 14.5714C12.4287 -1.28575 13.5633 23.4791 20.5716 14.5714",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),o.createElement(n,{d:"M4.03027 16.2857C9.49878 12.347 12.7096 19.9209 17.5713 19.0765",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),I=c;export{c as IconVoiceCircle,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconVoiceCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M3.42871 14.5714C12.4287 -1.28575 13.5633 23.4791 20.5716 14.5714\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.03027 16.2857C9.49878 12.347 12.7096 19.9209 17.5713 19.0765\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceCircle;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,oEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconVoiceCircle","props","React","CentralIconBase","IconVoiceCircle_default"]}
|
package/README.md
CHANGED
|
@@ -212,6 +212,7 @@ Below is a complete list of available icons:
|
|
|
212
212
|
- IconTextToSpeach
|
|
213
213
|
- IconVisualIntelligence
|
|
214
214
|
- IconVoice2
|
|
215
|
+
- IconVoiceCircle
|
|
215
216
|
- IconVoiceSparkle
|
|
216
217
|
- IconWindowSparkle
|
|
217
218
|
- IconWizardHat
|
|
@@ -571,6 +572,7 @@ Below is a complete list of available icons:
|
|
|
571
572
|
- IconFullscreen2
|
|
572
573
|
- IconGyroscopeSensor
|
|
573
574
|
- IconHaptic
|
|
575
|
+
- IconHapticFeedback
|
|
574
576
|
- IconImac
|
|
575
577
|
- IconKeyboardCable
|
|
576
578
|
- IconKeyboardDown
|
|
@@ -1791,6 +1793,7 @@ Below is a complete list of available icons:
|
|
|
1791
1793
|
- IconDashboardFast
|
|
1792
1794
|
- IconDashboardLow
|
|
1793
1795
|
- IconDashboardMiddle
|
|
1796
|
+
- IconDeepDive
|
|
1794
1797
|
- IconDeskLamp
|
|
1795
1798
|
- IconDiamond
|
|
1796
1799
|
- IconDiamondShine
|
package/filtered-icons.json
CHANGED
|
@@ -8358,6 +8358,20 @@
|
|
|
8358
8358
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
8359
8359
|
"componentName": "IconDecimalNumberDot"
|
|
8360
8360
|
},
|
|
8361
|
+
{
|
|
8362
|
+
"category": "Things",
|
|
8363
|
+
"svg": "<path d=\"M14.3944 19.25C14.3944 11.9733 23.4916 13.4655 21.0991 4C17.9144 7.68103 14.8732 6 12.0004 8.5C9.12756 6 6.08545 7.68103 2.90074 4C0.508731 14.5172 9.60634 11.9733 9.60634 19.25\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M3 20.25C9.28654 17.25 13.7917 22.5 21 18.75\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
8364
|
+
"iconName": "deep-dive, dive-in, fin",
|
|
8365
|
+
"variant": {
|
|
8366
|
+
"join": "square",
|
|
8367
|
+
"filled": "off",
|
|
8368
|
+
"radius": "0",
|
|
8369
|
+
"stroke": "2"
|
|
8370
|
+
},
|
|
8371
|
+
"createdAt": "2026-02-24T13:00:43.457418+00:00",
|
|
8372
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
8373
|
+
"componentName": "IconDeepDive"
|
|
8374
|
+
},
|
|
8361
8375
|
{
|
|
8362
8376
|
"category": "Interface General",
|
|
8363
8377
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"4\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M15 15L17.75 17.75\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M8.5 3.70591C9.57589 3.25134 10.7586 3 12 3C13.2414 3 14.4241 3.25134 15.5 3.70591M15.5 20.2941C14.4241 20.7487 13.2414 21 12 21C10.7586 21 9.57589 20.7487 8.5 20.2941M3.70591 15.5C3.25134 14.4241 3 13.2414 3 12C3 10.7586 3.25134 9.57589 3.70591 8.5M20.2941 8.5C20.7487 9.57589 21 10.7586 21 12C21 13.2414 20.7487 14.4241 20.2941 15.5\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
@@ -9270,7 +9284,7 @@
|
|
|
9270
9284
|
},
|
|
9271
9285
|
{
|
|
9272
9286
|
"category": "People",
|
|
9273
|
-
"svg": "<circle cx=\"7\" cy=\"7\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"17\" cy=\"7\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 19.
|
|
9287
|
+
"svg": "<circle cx=\"7\" cy=\"7\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"17\" cy=\"7\" r=\"3\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M10 7L10.2111 6.89443C11.3373 6.33137 12.6627 6.33137 13.7889 6.89443L14 7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 19.5006H4C4 14.9164 8.00116 12.1421 12 14.548C16.1941 12.3667 19.9643 14.6379 20 19.5006H17.5C16.7771 18.6331 15.5356 18.4101 14.556 18.9717L14.5 19.0038L13.5243 18.4282C12.5838 17.8734 11.4162 17.8734 10.4757 18.4282L9.5 19.0038L9.44401 18.9717C8.46437 18.4101 7.22287 18.6331 6.5 19.5006Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
9274
9288
|
"iconName": "einstein, thinking, physics",
|
|
9275
9289
|
"variant": {
|
|
9276
9290
|
"join": "square",
|
|
@@ -12544,6 +12558,20 @@
|
|
|
12544
12558
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
12545
12559
|
"componentName": "IconHaptic"
|
|
12546
12560
|
},
|
|
12561
|
+
{
|
|
12562
|
+
"category": "Devices & Signals",
|
|
12563
|
+
"svg": "<path d=\"M18 2H6V22H18V2Z\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"12\" cy=\"12\" r=\"6\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"12\" cy=\"12\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
12564
|
+
"iconName": "haptic-feedback, vibration",
|
|
12565
|
+
"variant": {
|
|
12566
|
+
"join": "square",
|
|
12567
|
+
"filled": "off",
|
|
12568
|
+
"radius": "0",
|
|
12569
|
+
"stroke": "2"
|
|
12570
|
+
},
|
|
12571
|
+
"createdAt": "2026-02-23T08:00:35.605032+00:00",
|
|
12572
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
12573
|
+
"componentName": "IconHapticFeedback"
|
|
12574
|
+
},
|
|
12547
12575
|
{
|
|
12548
12576
|
"category": "Keyboard",
|
|
12549
12577
|
"svg": "<path d=\"M9 4L7 20M17 4L15 20M4 8H20M20 16H4\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
@@ -22472,7 +22500,7 @@
|
|
|
22472
22500
|
},
|
|
22473
22501
|
{
|
|
22474
22502
|
"category": "People",
|
|
22475
|
-
"svg": "<path d=\"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z\" stroke=\"currentColor\" stroke-width=\"1.8\"/><path d=\"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z\" fill=\"currentColor\"/><path d=\"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5\" stroke=\"currentColor\" stroke-width=\"1.8\"/><path d=\"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2\" stroke=\"currentColor\" stroke-width=\"1.8\"/>",
|
|
22503
|
+
"svg": "<path d=\"M17.5 5.25C17.5 6.49264 16.4926 7.5 15.25 7.5C14.0074 7.5 13 6.49264 13 5.25C13 4.00736 14.0074 3 15.25 3C16.4926 3 17.5 4.00736 17.5 5.25Z\" stroke=\"currentColor\" stroke-width=\"1.8\"/><path d=\"M14.5 7.5019L14.8475 6.6717V6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176V10.2176L17 9.5019ZM19.7956 11.0136L20.1533 10.1878V10.1878L19.7956 11.0136ZM18.9184 13.3298L18.5925 14.1688V14.1688L18.9184 13.3298ZM15.5 12.0019L15.8259 11.163C15.3928 10.9947 14.9028 11.1838 14.695 11.5994L15.5 12.0019ZM14.5 14.0019L13.695 13.5994C13.5218 13.9459 13.5897 14.3644 13.8636 14.6383L14.5 14.0019ZM16.8083 16.3102L17.4447 15.6738V15.6738L16.8083 16.3102ZM8.20117 10.8094L7.9186 9.95488L7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.40739 9.60668V9.60668L9.5 10.5019ZM11 10.5019L11.7717 10.9649C11.9331 10.6959 11.9428 10.3623 11.7973 10.0844C11.6518 9.80649 11.372 9.62441 11.059 9.60384L11 10.5019ZM9.78501 12.5269L9.01327 12.0638L9.01327 12.0638L9.78501 12.5269ZM17.3787 17.9725L18.2717 18.0841V18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529V9.47529L7.07869 8.68128ZM20.4716 12.6898L21.2939 13.0556V13.0556L20.4716 12.6898ZM14.5 7.5019L14.1525 8.3321C14.5866 8.51384 14.8704 8.74225 15.1839 9.04554C15.4866 9.3383 15.9012 9.7958 16.4543 10.2176L17 9.5019L17.5457 8.78624C17.1046 8.44986 16.8458 8.14876 16.4354 7.75174C16.0358 7.36527 15.5667 6.97274 14.8475 6.6717L14.5 7.5019ZM17 9.5019L16.4543 10.2176C17.2983 10.8612 18.5549 11.4571 19.4378 11.8395L19.7956 11.0136L20.1533 10.1878C19.2754 9.80754 18.1993 9.28458 17.5457 8.78624L17 9.5019ZM18.9184 13.3298L19.2443 12.4909L15.8259 11.163L15.5 12.0019L15.1741 12.8408L18.5925 14.1688L18.9184 13.3298ZM15.5 12.0019L14.695 11.5994L13.695 13.5994L14.5 14.0019L15.305 14.4044L16.305 12.4044L15.5 12.0019ZM14.5 14.0019L13.8636 14.6383L16.1719 16.9466L16.8083 16.3102L17.4447 15.6738L15.1364 13.3655L14.5 14.0019ZM8.20117 10.8094L8.48373 11.6639C8.89526 11.5278 9.28461 11.429 9.59261 11.3971L9.5 10.5019L9.40739 9.60668C8.91173 9.65795 8.38118 9.80191 7.9186 9.95488L8.20117 10.8094ZM9.5 10.5019L9.59261 11.3971C9.82374 11.3732 10.1509 11.3717 10.4461 11.379C10.5882 11.3826 10.7135 11.3879 10.8031 11.3923C10.8477 11.3945 10.8832 11.3965 10.907 11.3979C10.9189 11.3986 10.9279 11.3991 10.9337 11.3995C10.9366 11.3997 10.9386 11.3998 10.9399 11.3999C10.9405 11.3999 10.9409 11.4 10.9411 11.4C10.9412 11.4 10.9412 11.4 10.9412 11.4C10.9412 11.4 10.9412 11.4 10.9411 11.4C10.9411 11.4 10.9411 11.4 10.9411 11.4C10.941 11.4 10.941 11.4 11 10.5019C11.059 9.60384 11.059 9.60383 11.0589 9.60383C11.0589 9.60383 11.0588 9.60383 11.0588 9.60382C11.0587 9.60382 11.0586 9.60381 11.0585 9.6038C11.0582 9.60379 11.0579 9.60377 11.0576 9.60374C11.0569 9.6037 11.056 9.60364 11.0548 9.60357C11.0526 9.60342 11.0494 9.60322 11.0454 9.60297C11.0375 9.60248 11.0262 9.60179 11.0119 9.60096C10.9833 9.59929 10.9425 9.59702 10.8921 9.59453C10.7914 9.58954 10.651 9.58357 10.4909 9.57958C10.1818 9.57187 9.75894 9.57031 9.40739 9.60668L9.5 10.5019ZM9.5 13.5559H8.6V14.0019H9.5H10.4V13.5559H9.5ZM11 10.5019L10.2283 10.0389L9.01327 12.0638L9.78501 12.5269L10.5568 12.9899L11.7717 10.9649L11 10.5019ZM17.3787 17.9725L16.4856 17.8609L16.2164 20.015L17.1094 20.1267L18.0025 20.2383L18.2717 18.0841L17.3787 17.9725ZM7.07869 8.68128L7.50242 9.47529C8.56343 8.90908 9.74315 8.40634 10.9138 8.1584C12.0842 7.9105 13.1888 7.9287 14.1525 8.3321L14.5 7.5019L14.8475 6.6717C13.44 6.08249 11.9368 6.1018 10.5408 6.39746C9.14511 6.69307 7.79979 7.27633 6.65497 7.88727L7.07869 8.68128ZM16.8083 16.3102L16.1719 16.9466C16.412 17.1867 16.5277 17.5241 16.4856 17.8609L17.3787 17.9725L18.2717 18.0841C18.3827 17.1961 18.0775 16.3066 17.4447 15.6738L16.8083 16.3102ZM20.4716 12.6898L19.6493 12.324C19.5805 12.4788 19.4022 12.5523 19.2443 12.4909L18.9184 13.3298L18.5925 14.1688C19.6458 14.5779 20.8347 14.088 21.2939 13.0556L20.4716 12.6898ZM6.5 9.66389H5.6C5.6 11.2123 7.18337 12.0939 8.48373 11.6639L8.20117 10.8094L7.9186 9.95488C7.79443 9.99594 7.65389 9.97467 7.54377 9.9022C7.4392 9.83338 7.4 9.74737 7.4 9.66389H6.5ZM19.7956 11.0136L19.4378 11.8395C19.6496 11.9312 19.7209 12.1631 19.6493 12.324L20.4716 12.6898L21.2939 13.0556C21.7944 11.9306 21.2331 10.6555 20.1533 10.1878L19.7956 11.0136ZM9.5 13.5559H10.4C10.4 13.3565 10.4542 13.1609 10.5568 12.9899L9.78501 12.5269L9.01327 12.0638C8.74285 12.5145 8.6 13.0303 8.6 13.5559H9.5ZM6.5 9.66389H7.4C7.4 9.57027 7.44855 9.50404 7.50242 9.47529L7.07869 8.68128L6.65497 7.88727C5.98631 8.24409 5.6 8.93854 5.6 9.66389H6.5Z\" fill=\"currentColor\"/><path d=\"M4.98801 20.3473C1.0575 8.15609 12.696 14.8429 16.1875 20.5\" stroke=\"currentColor\" stroke-width=\"1.8\"/><path d=\"M2 21.2C3.5 21.2 4.5 21.5 6 20C7.5 21.5 10.5 21.5 12 20C13.5 21.5 16.5 21.5 18 20C19.5 21.5 20.5 21.2 22 21.2\" stroke=\"currentColor\" stroke-width=\"1.8\"/>",
|
|
22476
22504
|
"iconName": "surfing, wave, vibe",
|
|
22477
22505
|
"variant": {
|
|
22478
22506
|
"join": "square",
|
|
@@ -24082,7 +24110,7 @@
|
|
|
24082
24110
|
},
|
|
24083
24111
|
{
|
|
24084
24112
|
"category": "People",
|
|
24085
|
-
"svg": "<path d=\"
|
|
24113
|
+
"svg": "<path d=\"M11 20H5V19C5 15.134 8.13401 12 12 12\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"12\" cy=\"7.75\" r=\"4.25\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"19.0992\" cy=\"15.4\" r=\"0.9\" fill=\"currentColor\"/><path d=\"M18.8496 12.5498C20.5617 12.5498 21.9502 13.9383 21.9502 15.6504C21.95 17.3623 20.5616 18.75 18.8496 18.75C18.5179 18.75 18.199 18.6961 17.8994 18.5996L16 20.5H14V18.5L15.8994 16.5996C15.8032 16.3004 15.75 15.9816 15.75 15.6504C15.75 13.9384 17.1377 12.55 18.8496 12.5498Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
24086
24114
|
"iconName": "user-key, people, person, member, passkeys, access",
|
|
24087
24115
|
"variant": {
|
|
24088
24116
|
"join": "square",
|
|
@@ -24626,6 +24654,20 @@
|
|
|
24626
24654
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
24627
24655
|
"componentName": "IconVoiceAndVideo"
|
|
24628
24656
|
},
|
|
24657
|
+
{
|
|
24658
|
+
"category": "AI & Magic",
|
|
24659
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M3.42871 14.5714C12.4287 -1.28575 13.5633 23.4791 20.5716 14.5714\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M4.03027 16.2857C9.49878 12.347 12.7096 19.9209 17.5713 19.0765\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
24660
|
+
"iconName": "voice-circle, waves",
|
|
24661
|
+
"variant": {
|
|
24662
|
+
"join": "square",
|
|
24663
|
+
"filled": "off",
|
|
24664
|
+
"radius": "0",
|
|
24665
|
+
"stroke": "2"
|
|
24666
|
+
},
|
|
24667
|
+
"createdAt": "2026-02-24T13:00:43.457418+00:00",
|
|
24668
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
24669
|
+
"componentName": "IconVoiceCircle"
|
|
24670
|
+
},
|
|
24629
24671
|
{
|
|
24630
24672
|
"category": "Sound & Music",
|
|
24631
24673
|
"svg": "<path d=\"M8 4V20M4 10V14M12 8V16M16 6V18M20 10V14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -596,6 +596,7 @@ export type CentralIconName =
|
|
|
596
596
|
| "IconDebugger"
|
|
597
597
|
| "IconDecimalNumberComma"
|
|
598
598
|
| "IconDecimalNumberDot"
|
|
599
|
+
| "IconDeepDive"
|
|
599
600
|
| "IconDeepSearch"
|
|
600
601
|
| "IconDeepseek"
|
|
601
602
|
| "IconDeliveryBike"
|
|
@@ -895,6 +896,7 @@ export type CentralIconName =
|
|
|
895
896
|
| "IconHandBell"
|
|
896
897
|
| "IconHandshake"
|
|
897
898
|
| "IconHaptic"
|
|
899
|
+
| "IconHapticFeedback"
|
|
898
900
|
| "IconHashtag"
|
|
899
901
|
| "IconHatBunny"
|
|
900
902
|
| "IconHatSparkle"
|
|
@@ -1758,6 +1760,7 @@ export type CentralIconName =
|
|
|
1758
1760
|
| "IconVoice2"
|
|
1759
1761
|
| "IconVoice3"
|
|
1760
1762
|
| "IconVoiceAndVideo"
|
|
1763
|
+
| "IconVoiceCircle"
|
|
1761
1764
|
| "IconVoiceHigh"
|
|
1762
1765
|
| "IconVoiceLow"
|
|
1763
1766
|
| "IconVoiceMid"
|