@central-icons-react-native/round-outlined-radius-3-stroke-1 1.1.103 → 1.1.104
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/IconFormCapsule/index.d.ts +4 -0
- package/IconFormCapsule/index.js +2 -0
- package/IconFormCapsule/index.js.map +1 -0
- package/IconFormCapsule/index.mjs +2 -0
- package/IconFormCapsule/index.mjs.map +1 -0
- package/IconFormCircle/index.d.ts +4 -0
- package/IconFormCircle/index.js +2 -0
- package/IconFormCircle/index.js.map +1 -0
- package/IconFormCircle/index.mjs +2 -0
- package/IconFormCircle/index.mjs.map +1 -0
- package/IconFormDiamond/index.d.ts +4 -0
- package/IconFormDiamond/index.js +2 -0
- package/IconFormDiamond/index.js.map +1 -0
- package/IconFormDiamond/index.mjs +2 -0
- package/IconFormDiamond/index.mjs.map +1 -0
- package/IconFormHexagon/index.d.ts +4 -0
- package/IconFormHexagon/index.js +2 -0
- package/IconFormHexagon/index.js.map +1 -0
- package/IconFormHexagon/index.mjs +2 -0
- package/IconFormHexagon/index.mjs.map +1 -0
- package/IconFormOctagonRotate/index.d.ts +4 -0
- package/IconFormOctagonRotate/index.js +2 -0
- package/IconFormOctagonRotate/index.js.map +1 -0
- package/IconFormOctagonRotate/index.mjs +2 -0
- package/IconFormOctagonRotate/index.mjs.map +1 -0
- package/IconFormOval/index.d.ts +4 -0
- package/IconFormOval/index.js +2 -0
- package/IconFormOval/index.js.map +1 -0
- package/IconFormOval/index.mjs +2 -0
- package/IconFormOval/index.mjs.map +1 -0
- package/IconFormPentagon/index.d.ts +4 -0
- package/IconFormPentagon/index.js +2 -0
- package/IconFormPentagon/index.js.map +1 -0
- package/IconFormPentagon/index.mjs +2 -0
- package/IconFormPentagon/index.mjs.map +1 -0
- package/IconFormRectangle/index.d.ts +4 -0
- package/IconFormRectangle/index.js +2 -0
- package/IconFormRectangle/index.js.map +1 -0
- package/IconFormRectangle/index.mjs +2 -0
- package/IconFormRectangle/index.mjs.map +1 -0
- package/IconFormSquare/index.d.ts +4 -0
- package/IconFormSquare/index.js +2 -0
- package/IconFormSquare/index.js.map +1 -0
- package/IconFormSquare/index.mjs +2 -0
- package/IconFormSquare/index.mjs.map +1 -0
- package/README.md +12 -0
- package/filtered-icons.json +126 -0
- package/icons/index.d.ts +9 -0
- package/icons-index.json +25 -2
- package/index.d.ts +9 -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 +63 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of x(o))!g.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=I(o,e))||C.enumerable});return r};var m=(r,o,t)=>(t=r!=null?B(P(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var h={};i(h,{IconFormCapsule:()=>u,default:()=>F});module.exports=v(h);var p=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(l.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 f=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M14.5 4.5H9.5C5.35786 4.5 2 7.85786 2 12C2 16.1421 5.35786 19.5 9.5 19.5H14.5C18.6421 19.5 22 16.1421 22 12C22 7.85786 18.6421 4.5 14.5 4.5Z",stroke:"currentColor"})),F=u;0&&(module.exports={IconFormCapsule});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormCapsule/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 IconFormCapsule: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.5 4.5H9.5C5.35786 4.5 2 7.85786 2 12C2 16.1421 5.35786 19.5 9.5 19.5H14.5C18.6421 19.5 22 16.1421 22 12C22 7.85786 18.6421 4.5 14.5 4.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormCapsule;\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,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+IACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconFormCapsule_exports","__export","IconFormCapsule","IconFormCapsule_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormCapsule","props","React","CentralIconBase","IconFormCapsule_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(a,{d:"M14.5 4.5H9.5C5.35786 4.5 2 7.85786 2 12C2 16.1421 5.35786 19.5 9.5 19.5H14.5C18.6421 19.5 22 16.1421 22 12C22 7.85786 18.6421 4.5 14.5 4.5Z",stroke:"currentColor"})),g=m;export{m as IconFormCapsule,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormCapsule/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 IconFormCapsule: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.5 4.5H9.5C5.35786 4.5 2 7.85786 2 12C2 16.1421 5.35786 19.5 9.5 19.5H14.5C18.6421 19.5 22 16.1421 22 12C22 7.85786 18.6421 4.5 14.5 4.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormCapsule;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+IACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFormCapsule","props","React","CentralIconBase","IconFormCapsule_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var x=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},c=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!g.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?x(u(r)):{},c(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>c(n({},"__esModule",{value:!0}),r);var F={};P(F,{IconFormCircle:()=>i,default:()=>y});module.exports=v(F);var p=m(require("react"));var C=m(require("react")),l=require("react-native-svg"),s=({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 f=require("react-native-svg"),i=r=>p.default.createElement(s,{...r},p.default.createElement(f.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),y=i;0&&(module.exports={IconFormCircle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle } from \"react-native-svg\";\n\nexport const IconFormCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFormCircle;\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,oBAAAE,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,EAAuB,4BAEVC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGE,EAAQJ","names":["IconFormCircle_exports","__export","IconFormCircle","IconFormCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormCircle","props","React","CentralIconBase","IconFormCircle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as c}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(c,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),g=m;export{m as IconFormCircle,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle } from \"react-native-svg\";\n\nexport const IconFormCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFormCircle;\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,MAAc,mBAEhB,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","IconFormCircle","props","React","CentralIconBase","IconFormCircle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},C=(o,r,t,a)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of I(r))!P.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(a=B(r,e))||a.enumerable});return o};var m=(o,r,t)=>(t=o!=null?u(x(o)):{},C(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),d=o=>C(n({},"__esModule",{value:!0}),o);var F={};g(F,{IconFormDiamond:()=>i,default:()=>v});module.exports=d(F);var p=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:o,size:r=24,...t})=>s.default.createElement(l.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>p.default.createElement(c,{...o},p.default.createElement(f.Path,{d:"M14.1213 3.12132C12.9497 1.94975 11.0503 1.94975 9.87868 3.12132L3.12132 9.87868C1.94975 11.0503 1.94975 12.9498 3.12132 14.1213L9.87868 20.8787C11.0503 22.0503 12.9498 22.0503 14.1213 20.8787L20.8787 14.1213C22.0503 12.9497 22.0503 11.0503 20.8787 9.87868L14.1213 3.12132Z",stroke:"currentColor",strokeLinejoin:"round"})),v=i;0&&(module.exports={IconFormDiamond});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormDiamond/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 IconFormDiamond: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.1213 3.12132C12.9497 1.94975 11.0503 1.94975 9.87868 3.12132L3.12132 9.87868C1.94975 11.0503 1.94975 12.9498 3.12132 14.1213L9.87868 20.8787C11.0503 22.0503 12.9498 22.0503 14.1213 20.8787L20.8787 14.1213C22.0503 12.9497 22.0503 11.0503 20.8787 9.87868L14.1213 3.12132Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormDiamond;\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,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oRACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFormDiamond_exports","__export","IconFormDiamond","IconFormDiamond_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormDiamond","props","React","CentralIconBase","IconFormDiamond_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({children:r,size:o=24,...n})=>p.createElement(a,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as C}from"react-native-svg";var m=r=>e.createElement(t,{...r},e.createElement(C,{d:"M14.1213 3.12132C12.9497 1.94975 11.0503 1.94975 9.87868 3.12132L3.12132 9.87868C1.94975 11.0503 1.94975 12.9498 3.12132 14.1213L9.87868 20.8787C11.0503 22.0503 12.9498 22.0503 14.1213 20.8787L20.8787 14.1213C22.0503 12.9497 22.0503 11.0503 20.8787 9.87868L14.1213 3.12132Z",stroke:"currentColor",strokeLinejoin:"round"})),P=m;export{m as IconFormDiamond,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormDiamond/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 IconFormDiamond: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M14.1213 3.12132C12.9497 1.94975 11.0503 1.94975 9.87868 3.12132L3.12132 9.87868C1.94975 11.0503 1.94975 12.9498 3.12132 14.1213L9.87868 20.8787C11.0503 22.0503 12.9498 22.0503 14.1213 20.8787L20.8787 14.1213C22.0503 12.9497 22.0503 11.0503 20.8787 9.87868L14.1213 3.12132Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormDiamond;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oRACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFormDiamond","props","React","CentralIconBase","IconFormDiamond_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of B(r))!g.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(C=x(r,t))||C.enumerable});return o};var m=(o,r,e)=>(e=o!=null?u(I(o)):{},a(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),v=o=>a(n({},"__esModule",{value:!0}),o);var L={};P(L,{IconFormHexagon:()=>i,default:()=>F});module.exports=v(L);var p=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:o,size:r=24,...e})=>s.default.createElement(l.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>p.default.createElement(c,{...o},p.default.createElement(f.Path,{d:"M10.5 2.86603C11.4282 2.33013 12.5718 2.33013 13.5 2.86603L19.1603 6.13397C20.0885 6.66987 20.6603 7.66025 20.6603 8.73205V15.2679C20.6603 16.3397 20.0885 17.3301 19.1603 17.866L13.5 21.134C12.5718 21.6699 11.4282 21.6699 10.5 21.134L4.83975 17.866C3.91154 17.3301 3.33975 16.3397 3.33975 15.2679V8.73205C3.33975 7.66025 3.91154 6.66987 4.83975 6.13397L10.5 2.86603Z",stroke:"currentColor",strokeLinejoin:"round"})),F=i;0&&(module.exports={IconFormHexagon});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormHexagon/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 IconFormHexagon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5 2.86603C11.4282 2.33013 12.5718 2.33013 13.5 2.86603L19.1603 6.13397C20.0885 6.66987 20.6603 7.66025 20.6603 8.73205V15.2679C20.6603 16.3397 20.0885 17.3301 19.1603 17.866L13.5 21.134C12.5718 21.6699 11.4282 21.6699 10.5 21.134L4.83975 17.866C3.91154 17.3301 3.33975 16.3397 3.33975 15.2679V8.73205C3.33975 7.66025 3.91154 6.66987 4.83975 6.13397L10.5 2.86603Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormHexagon;\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,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iXACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFormHexagon_exports","__export","IconFormHexagon","IconFormHexagon_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormHexagon","props","React","CentralIconBase","IconFormHexagon_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(C,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var m=r=>t.createElement(e,{...r},t.createElement(a,{d:"M10.5 2.86603C11.4282 2.33013 12.5718 2.33013 13.5 2.86603L19.1603 6.13397C20.0885 6.66987 20.6603 7.66025 20.6603 8.73205V15.2679C20.6603 16.3397 20.0885 17.3301 19.1603 17.866L13.5 21.134C12.5718 21.6699 11.4282 21.6699 10.5 21.134L4.83975 17.866C3.91154 17.3301 3.33975 16.3397 3.33975 15.2679V8.73205C3.33975 7.66025 3.91154 6.66987 4.83975 6.13397L10.5 2.86603Z",stroke:"currentColor",strokeLinejoin:"round"})),g=m;export{m as IconFormHexagon,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormHexagon/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 IconFormHexagon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5 2.86603C11.4282 2.33013 12.5718 2.33013 13.5 2.86603L19.1603 6.13397C20.0885 6.66987 20.6603 7.66025 20.6603 8.73205V15.2679C20.6603 16.3397 20.0885 17.3301 19.1603 17.866L13.5 21.134C12.5718 21.6699 11.4282 21.6699 10.5 21.134L4.83975 17.866C3.91154 17.3301 3.33975 16.3397 3.33975 15.2679V8.73205C3.33975 7.66025 3.91154 6.66987 4.83975 6.13397L10.5 2.86603Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormHexagon;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iXACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFormHexagon","props","React","CentralIconBase","IconFormHexagon_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of B(r))!g.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(C=u(r,e))||C.enumerable});return o};var m=(o,r,t)=>(t=o!=null?i(I(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),P=o=>a(n({},"__esModule",{value:!0}),o);var F={};x(F,{IconFormOctagonRotate:()=>L,default:()=>v});module.exports=P(F);var p=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),l=({children:o,size:r=24,...t})=>s.default.createElement(c.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),L=o=>p.default.createElement(l,{...o},p.default.createElement(f.Path,{d:"M10.8519 2.72554C11.587 2.42106 12.413 2.42106 13.1481 2.72554L17.7462 4.63017C18.4813 4.93465 19.0653 5.51867 19.3698 6.25376L21.2745 10.8519C21.5789 11.587 21.5789 12.413 21.2745 13.1481L19.3698 17.7462C19.0653 18.4813 18.4813 19.0653 17.7462 19.3698L13.1481 21.2745C12.413 21.5789 11.587 21.5789 10.8519 21.2745L6.25376 19.3698C5.51867 19.0653 4.93465 18.4813 4.63017 17.7462L2.72554 13.1481C2.42106 12.413 2.42106 11.587 2.72554 10.8519L4.63017 6.25376C4.93465 5.51867 5.51867 4.93465 6.25376 4.63017L10.8519 2.72554Z",stroke:"currentColor",strokeLinejoin:"round"})),v=L;0&&(module.exports={IconFormOctagonRotate});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormOctagonRotate/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 IconFormOctagonRotate: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.8519 2.72554C11.587 2.42106 12.413 2.42106 13.1481 2.72554L17.7462 4.63017C18.4813 4.93465 19.0653 5.51867 19.3698 6.25376L21.2745 10.8519C21.5789 11.587 21.5789 12.413 21.2745 13.1481L19.3698 17.7462C19.0653 18.4813 18.4813 19.0653 17.7462 19.3698L13.1481 21.2745C12.413 21.5789 11.587 21.5789 10.8519 21.2745L6.25376 19.3698C5.51867 19.0653 4.93465 18.4813 4.63017 17.7462L2.72554 13.1481C2.42106 12.413 2.42106 11.587 2.72554 10.8519L4.63017 6.25376C4.93465 5.51867 5.51867 4.93465 6.25376 4.63017L10.8519 2.72554Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormOctagonRotate;\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,2BAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4gBACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFormOctagonRotate_exports","__export","IconFormOctagonRotate","IconFormOctagonRotate_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormOctagonRotate","props","React","CentralIconBase","IconFormOctagonRotate_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:r,size:o=24,...n})=>p.createElement(C,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var m=r=>e.createElement(t,{...r},e.createElement(a,{d:"M10.8519 2.72554C11.587 2.42106 12.413 2.42106 13.1481 2.72554L17.7462 4.63017C18.4813 4.93465 19.0653 5.51867 19.3698 6.25376L21.2745 10.8519C21.5789 11.587 21.5789 12.413 21.2745 13.1481L19.3698 17.7462C19.0653 18.4813 18.4813 19.0653 17.7462 19.3698L13.1481 21.2745C12.413 21.5789 11.587 21.5789 10.8519 21.2745L6.25376 19.3698C5.51867 19.0653 4.93465 18.4813 4.63017 17.7462L2.72554 13.1481C2.42106 12.413 2.42106 11.587 2.72554 10.8519L4.63017 6.25376C4.93465 5.51867 5.51867 4.93465 6.25376 4.63017L10.8519 2.72554Z",stroke:"currentColor",strokeLinejoin:"round"})),g=m;export{m as IconFormOctagonRotate,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormOctagonRotate/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 IconFormOctagonRotate: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.8519 2.72554C11.587 2.42106 12.413 2.42106 13.1481 2.72554L17.7462 4.63017C18.4813 4.93465 19.0653 5.51867 19.3698 6.25376L21.2745 10.8519C21.5789 11.587 21.5789 12.413 21.2745 13.1481L19.3698 17.7462C19.0653 18.4813 18.4813 19.0653 17.7462 19.3698L13.1481 21.2745C12.413 21.5789 11.587 21.5789 10.8519 21.2745L6.25376 19.3698C5.51867 19.0653 4.93465 18.4813 4.63017 17.7462L2.72554 13.1481C2.42106 12.413 2.42106 11.587 2.72554 10.8519L4.63017 6.25376C4.93465 5.51867 5.51867 4.93465 6.25376 4.63017L10.8519 2.72554Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormOctagonRotate;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4gBACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFormOctagonRotate","props","React","CentralIconBase","IconFormOctagonRotate_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of i(o))!g.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=I(o,t))||a.enumerable});return r};var m=(r,o,e)=>(e=r!=null?B(u(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),y=r=>l(n({},"__esModule",{value:!0}),r);var F={};v(F,{IconFormOval:()=>x,default:()=>P});module.exports=y(F);var p=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),C=({children:r,size:o=24,...e})=>s.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),x=r=>p.default.createElement(C,{...r},p.default.createElement(f.Ellipse,{cx:"11.75",cy:"12",rx:"9.75",ry:"7.75",stroke:"currentColor"})),P=x;0&&(module.exports={IconFormOval});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormOval/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Ellipse } from \"react-native-svg\";\n\nexport const IconFormOval: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Ellipse cx=\"11.75\" cy=\"12\" rx=\"9.75\" ry=\"7.75\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFormOval;\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,EAAwB,4BAEXC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,WAAQ,GAAG,QAAQ,GAAG,KAAK,GAAG,OAAO,GAAG,OAAO,OAAO,eAAe,CACxE,EAIGE,EAAQJ","names":["IconFormOval_exports","__export","IconFormOval","IconFormOval_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormOval","props","React","CentralIconBase","IconFormOval_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Ellipse as l}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(l,{cx:"11.75",cy:"12",rx:"9.75",ry:"7.75",stroke:"currentColor"})),g=m;export{m as IconFormOval,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormOval/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Ellipse } from \"react-native-svg\";\n\nexport const IconFormOval: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Ellipse cx=\"11.75\" cy=\"12\" rx=\"9.75\" ry=\"7.75\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFormOval;\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,WAAAG,MAAe,mBAEjB,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAQ,GAAG,QAAQ,GAAG,KAAK,GAAG,OAAO,GAAG,OAAO,OAAO,eAAe,CACxE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Ellipse","IconFormOval","props","React","CentralIconBase","IconFormOval_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of I(r))!g.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(C=B(r,e))||C.enumerable});return o};var m=(o,r,t)=>(t=o!=null?u(P(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),v=o=>a(n({},"__esModule",{value:!0}),o);var L={};x(L,{IconFormPentagon:()=>i,default:()=>F});module.exports=v(L);var p=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:o,size:r=24,...t})=>s.default.createElement(l.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>p.default.createElement(c,{...o},p.default.createElement(f.Path,{d:"M10.2366 3.03115C11.2881 2.26722 12.7119 2.26722 13.7634 3.03115L19.985 7.55142C21.0364 8.31535 21.4764 9.66946 21.0748 10.9055L18.6983 18.2195C18.2967 19.4555 17.1449 20.2924 15.8452 20.2924H8.15483C6.85515 20.2924 5.70328 19.4555 5.30166 18.2195L2.92521 10.9055C2.52359 9.66946 2.96356 8.31535 4.01503 7.55142L10.2366 3.03115Z",stroke:"currentColor",strokeLinejoin:"round"})),F=i;0&&(module.exports={IconFormPentagon});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormPentagon/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 IconFormPentagon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.2366 3.03115C11.2881 2.26722 12.7119 2.26722 13.7634 3.03115L19.985 7.55142C21.0364 8.31535 21.4764 9.66946 21.0748 10.9055L18.6983 18.2195C18.2967 19.4555 17.1449 20.2924 15.8452 20.2924H8.15483C6.85515 20.2924 5.70328 19.4555 5.30166 18.2195L2.92521 10.9055C2.52359 9.66946 2.96356 8.31535 4.01503 7.55142L10.2366 3.03115Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormPentagon;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,sBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2UACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconFormPentagon_exports","__export","IconFormPentagon","IconFormPentagon_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormPentagon","props","React","CentralIconBase","IconFormPentagon_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:r,size:o=24,...n})=>p.createElement(C,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var m=r=>e.createElement(t,{...r},e.createElement(a,{d:"M10.2366 3.03115C11.2881 2.26722 12.7119 2.26722 13.7634 3.03115L19.985 7.55142C21.0364 8.31535 21.4764 9.66946 21.0748 10.9055L18.6983 18.2195C18.2967 19.4555 17.1449 20.2924 15.8452 20.2924H8.15483C6.85515 20.2924 5.70328 19.4555 5.30166 18.2195L2.92521 10.9055C2.52359 9.66946 2.96356 8.31535 4.01503 7.55142L10.2366 3.03115Z",stroke:"currentColor",strokeLinejoin:"round"})),g=m;export{m as IconFormPentagon,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormPentagon/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 IconFormPentagon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.2366 3.03115C11.2881 2.26722 12.7119 2.26722 13.7634 3.03115L19.985 7.55142C21.0364 8.31535 21.4764 9.66946 21.0748 10.9055L18.6983 18.2195C18.2967 19.4555 17.1449 20.2924 15.8452 20.2924H8.15483C6.85515 20.2924 5.70328 19.4555 5.30166 18.2195L2.92521 10.9055C2.52359 9.66946 2.96356 8.31535 4.01503 7.55142L10.2366 3.03115Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormPentagon;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2UACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFormPentagon","props","React","CentralIconBase","IconFormPentagon_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=g(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?I(x(r)):{},C(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>C(n({},"__esModule",{value:!0}),r);var h={};i(h,{IconFormRectangle:()=>B,default:()=>F});module.exports=v(h);var p=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(l.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 f=require("react-native-svg"),B=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M18.5 4.5H5.5C3.84315 4.5 2.5 5.84315 2.5 7.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H18.5C20.1569 19.5 21.5 18.1569 21.5 16.5V7.5C21.5 5.84315 20.1569 4.5 18.5 4.5Z",stroke:"currentColor"})),F=B;0&&(module.exports={IconFormRectangle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormRectangle/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 IconFormRectangle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.5 4.5H5.5C3.84315 4.5 2.5 5.84315 2.5 7.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H18.5C20.1569 19.5 21.5 18.1569 21.5 16.5V7.5C21.5 5.84315 20.1569 4.5 18.5 4.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormRectangle;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uKACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconFormRectangle_exports","__export","IconFormRectangle","IconFormRectangle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormRectangle","props","React","CentralIconBase","IconFormRectangle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(a,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as C}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(C,{d:"M18.5 4.5H5.5C3.84315 4.5 2.5 5.84315 2.5 7.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H18.5C20.1569 19.5 21.5 18.1569 21.5 16.5V7.5C21.5 5.84315 20.1569 4.5 18.5 4.5Z",stroke:"currentColor"})),P=m;export{m as IconFormRectangle,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormRectangle/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 IconFormRectangle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.5 4.5H5.5C3.84315 4.5 2.5 5.84315 2.5 7.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H18.5C20.1569 19.5 21.5 18.1569 21.5 16.5V7.5C21.5 5.84315 20.1569 4.5 18.5 4.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormRectangle;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uKACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFormRectangle","props","React","CentralIconBase","IconFormRectangle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of x(o))!g.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=I(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?B(P(r)):{},C(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>C(n({},"__esModule",{value:!0}),r);var S={};i(S,{IconFormSquare:()=>u,default:()=>F});module.exports=v(S);var p=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(l.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 f=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5C20.5 4.84315 19.1569 3.5 17.5 3.5Z",stroke:"currentColor"})),F=u;0&&(module.exports={IconFormSquare});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormSquare/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 IconFormSquare: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5C20.5 4.84315 19.1569 3.5 17.5 3.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormSquare;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uKACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconFormSquare_exports","__export","IconFormSquare","IconFormSquare_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFormSquare","props","React","CentralIconBase","IconFormSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(a,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as C}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(C,{d:"M17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5C20.5 4.84315 19.1569 3.5 17.5 3.5Z",stroke:"currentColor"})),g=m;export{m as IconFormSquare,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFormSquare/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 IconFormSquare: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5C20.5 4.84315 19.1569 3.5 17.5 3.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFormSquare;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uKACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFormSquare","props","React","CentralIconBase","IconFormSquare_default"]}
|
package/README.md
CHANGED
|
@@ -880,6 +880,18 @@ Below is a complete list of available icons:
|
|
|
880
880
|
- IconToast
|
|
881
881
|
- IconToque
|
|
882
882
|
|
|
883
|
+
### Forms & Shapes
|
|
884
|
+
|
|
885
|
+
- IconFormCapsule
|
|
886
|
+
- IconFormCircle
|
|
887
|
+
- IconFormDiamond
|
|
888
|
+
- IconFormHexagon
|
|
889
|
+
- IconFormOctagonRotate
|
|
890
|
+
- IconFormOval
|
|
891
|
+
- IconFormPentagon
|
|
892
|
+
- IconFormRectangle
|
|
893
|
+
- IconFormSquare
|
|
894
|
+
|
|
883
895
|
### Furniture & Household
|
|
884
896
|
|
|
885
897
|
- IconArmchair
|
package/filtered-icons.json
CHANGED
|
@@ -11018,6 +11018,132 @@
|
|
|
11018
11018
|
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11019
11019
|
"componentName": "IconForkSpoon"
|
|
11020
11020
|
},
|
|
11021
|
+
{
|
|
11022
|
+
"category": "Forms & Shapes",
|
|
11023
|
+
"svg": "<path d=\"M14.5 4.5H9.5C5.35786 4.5 2 7.85786 2 12C2 16.1421 5.35786 19.5 9.5 19.5H14.5C18.6421 19.5 22 16.1421 22 12C22 7.85786 18.6421 4.5 14.5 4.5Z\" stroke=\"currentColor\"/>",
|
|
11024
|
+
"iconName": "form-capsule, button",
|
|
11025
|
+
"variant": {
|
|
11026
|
+
"join": "round",
|
|
11027
|
+
"filled": "off",
|
|
11028
|
+
"radius": "3",
|
|
11029
|
+
"stroke": "1"
|
|
11030
|
+
},
|
|
11031
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11032
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11033
|
+
"componentName": "IconFormCapsule"
|
|
11034
|
+
},
|
|
11035
|
+
{
|
|
11036
|
+
"category": "Forms & Shapes",
|
|
11037
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/>",
|
|
11038
|
+
"iconName": "form-circle",
|
|
11039
|
+
"variant": {
|
|
11040
|
+
"join": "round",
|
|
11041
|
+
"filled": "off",
|
|
11042
|
+
"radius": "3",
|
|
11043
|
+
"stroke": "1"
|
|
11044
|
+
},
|
|
11045
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11046
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11047
|
+
"componentName": "IconFormCircle"
|
|
11048
|
+
},
|
|
11049
|
+
{
|
|
11050
|
+
"category": "Forms & Shapes",
|
|
11051
|
+
"svg": "<path d=\"M14.1213 3.12132C12.9497 1.94975 11.0503 1.94975 9.87868 3.12132L3.12132 9.87868C1.94975 11.0503 1.94975 12.9498 3.12132 14.1213L9.87868 20.8787C11.0503 22.0503 12.9498 22.0503 14.1213 20.8787L20.8787 14.1213C22.0503 12.9497 22.0503 11.0503 20.8787 9.87868L14.1213 3.12132Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
11052
|
+
"iconName": "form-diamond, square-45-degrees",
|
|
11053
|
+
"variant": {
|
|
11054
|
+
"join": "round",
|
|
11055
|
+
"filled": "off",
|
|
11056
|
+
"radius": "3",
|
|
11057
|
+
"stroke": "1"
|
|
11058
|
+
},
|
|
11059
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11060
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11061
|
+
"componentName": "IconFormDiamond"
|
|
11062
|
+
},
|
|
11063
|
+
{
|
|
11064
|
+
"category": "Forms & Shapes",
|
|
11065
|
+
"svg": "<path d=\"M10.5 2.86603C11.4282 2.33013 12.5718 2.33013 13.5 2.86603L19.1603 6.13397C20.0885 6.66987 20.6603 7.66025 20.6603 8.73205V15.2679C20.6603 16.3397 20.0885 17.3301 19.1603 17.866L13.5 21.134C12.5718 21.6699 11.4282 21.6699 10.5 21.134L4.83975 17.866C3.91154 17.3301 3.33975 16.3397 3.33975 15.2679V8.73205C3.33975 7.66025 3.91154 6.66987 4.83975 6.13397L10.5 2.86603Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
11066
|
+
"iconName": "form-hexagon",
|
|
11067
|
+
"variant": {
|
|
11068
|
+
"join": "round",
|
|
11069
|
+
"filled": "off",
|
|
11070
|
+
"radius": "3",
|
|
11071
|
+
"stroke": "1"
|
|
11072
|
+
},
|
|
11073
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11074
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11075
|
+
"componentName": "IconFormHexagon"
|
|
11076
|
+
},
|
|
11077
|
+
{
|
|
11078
|
+
"category": "Forms & Shapes",
|
|
11079
|
+
"svg": "<path d=\"M10.8519 2.72554C11.587 2.42106 12.413 2.42106 13.1481 2.72554L17.7462 4.63017C18.4813 4.93465 19.0653 5.51867 19.3698 6.25376L21.2745 10.8519C21.5789 11.587 21.5789 12.413 21.2745 13.1481L19.3698 17.7462C19.0653 18.4813 18.4813 19.0653 17.7462 19.3698L13.1481 21.2745C12.413 21.5789 11.587 21.5789 10.8519 21.2745L6.25376 19.3698C5.51867 19.0653 4.93465 18.4813 4.63017 17.7462L2.72554 13.1481C2.42106 12.413 2.42106 11.587 2.72554 10.8519L4.63017 6.25376C4.93465 5.51867 5.51867 4.93465 6.25376 4.63017L10.8519 2.72554Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
11080
|
+
"iconName": "form-octagon-rotate",
|
|
11081
|
+
"variant": {
|
|
11082
|
+
"join": "round",
|
|
11083
|
+
"filled": "off",
|
|
11084
|
+
"radius": "3",
|
|
11085
|
+
"stroke": "1"
|
|
11086
|
+
},
|
|
11087
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11088
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11089
|
+
"componentName": "IconFormOctagonRotate"
|
|
11090
|
+
},
|
|
11091
|
+
{
|
|
11092
|
+
"category": "Forms & Shapes",
|
|
11093
|
+
"svg": "<ellipse cx=\"11.75\" cy=\"12\" rx=\"9.75\" ry=\"7.75\" stroke=\"currentColor\"/>",
|
|
11094
|
+
"iconName": "form-oval",
|
|
11095
|
+
"variant": {
|
|
11096
|
+
"join": "round",
|
|
11097
|
+
"filled": "off",
|
|
11098
|
+
"radius": "3",
|
|
11099
|
+
"stroke": "1"
|
|
11100
|
+
},
|
|
11101
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11102
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11103
|
+
"componentName": "IconFormOval"
|
|
11104
|
+
},
|
|
11105
|
+
{
|
|
11106
|
+
"category": "Forms & Shapes",
|
|
11107
|
+
"svg": "<path d=\"M10.2366 3.03115C11.2881 2.26722 12.7119 2.26722 13.7634 3.03115L19.985 7.55142C21.0364 8.31535 21.4764 9.66946 21.0748 10.9055L18.6983 18.2195C18.2967 19.4555 17.1449 20.2924 15.8452 20.2924H8.15483C6.85515 20.2924 5.70328 19.4555 5.30166 18.2195L2.92521 10.9055C2.52359 9.66946 2.96356 8.31535 4.01503 7.55142L10.2366 3.03115Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
11108
|
+
"iconName": "form-pentagon",
|
|
11109
|
+
"variant": {
|
|
11110
|
+
"join": "round",
|
|
11111
|
+
"filled": "off",
|
|
11112
|
+
"radius": "3",
|
|
11113
|
+
"stroke": "1"
|
|
11114
|
+
},
|
|
11115
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11116
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11117
|
+
"componentName": "IconFormPentagon"
|
|
11118
|
+
},
|
|
11119
|
+
{
|
|
11120
|
+
"category": "Forms & Shapes",
|
|
11121
|
+
"svg": "<path d=\"M18.5 4.5H5.5C3.84315 4.5 2.5 5.84315 2.5 7.5V16.5C2.5 18.1569 3.84315 19.5 5.5 19.5H18.5C20.1569 19.5 21.5 18.1569 21.5 16.5V7.5C21.5 5.84315 20.1569 4.5 18.5 4.5Z\" stroke=\"currentColor\"/>",
|
|
11122
|
+
"iconName": "form-rectangle",
|
|
11123
|
+
"variant": {
|
|
11124
|
+
"join": "round",
|
|
11125
|
+
"filled": "off",
|
|
11126
|
+
"radius": "3",
|
|
11127
|
+
"stroke": "1"
|
|
11128
|
+
},
|
|
11129
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11130
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11131
|
+
"componentName": "IconFormRectangle"
|
|
11132
|
+
},
|
|
11133
|
+
{
|
|
11134
|
+
"category": "Forms & Shapes",
|
|
11135
|
+
"svg": "<path d=\"M17.5 3.5H6.5C4.84315 3.5 3.5 4.84315 3.5 6.5V17.5C3.5 19.1569 4.84315 20.5 6.5 20.5H17.5C19.1569 20.5 20.5 19.1569 20.5 17.5V6.5C20.5 4.84315 19.1569 3.5 17.5 3.5Z\" stroke=\"currentColor\"/>",
|
|
11136
|
+
"iconName": "form-square",
|
|
11137
|
+
"variant": {
|
|
11138
|
+
"join": "round",
|
|
11139
|
+
"filled": "off",
|
|
11140
|
+
"radius": "3",
|
|
11141
|
+
"stroke": "1"
|
|
11142
|
+
},
|
|
11143
|
+
"createdAt": "2026-01-29T11:00:32.722699+00:00",
|
|
11144
|
+
"packageName": "round-outlined-radius-3-stroke-1",
|
|
11145
|
+
"componentName": "IconFormSquare"
|
|
11146
|
+
},
|
|
11021
11147
|
{
|
|
11022
11148
|
"category": "AI & Magic",
|
|
11023
11149
|
"svg": "<path d=\"M16.557 21.5H7.443C6.74479 21.5 6.26151 20.8026 6.50667 20.1489C6.65304 19.7586 7.02616 19.5 7.443 19.5H16.557C16.9738 19.5 17.347 19.7586 17.4933 20.1489C17.7385 20.8026 17.2552 21.5 16.557 21.5Z\" stroke=\"currentColor\"/><path d=\"M12 2.5C7.02944 2.5 3 6.52944 3 11.5C3 14.9829 4.97844 18.0038 7.8728 19.5H16.1272C19.0216 18.0038 21 14.9829 21 11.5C21 6.52944 16.9706 2.5 12 2.5Z\" stroke=\"currentColor\"/><path d=\"M13.1671 6.09709C13.1231 5.96764 12.8769 5.96764 12.833 6.09709C12.7066 6.46962 12.5051 6.93052 12.2178 7.21783C11.9305 7.50513 11.4696 7.70656 11.0971 7.83298C10.9676 7.87691 10.9676 8.12315 11.0971 8.16708C11.4696 8.29351 11.9305 8.49493 12.2178 8.78223C12.5051 9.06954 12.7066 9.53044 12.833 9.90297C12.8769 10.0324 13.1231 10.0324 13.1671 9.90297C13.2935 9.53044 13.4949 9.06954 13.7822 8.78223C14.0695 8.49493 14.5304 8.29351 14.903 8.16708C15.0324 8.12315 15.0324 7.87691 14.903 7.83298C14.5304 7.70656 14.0695 7.50513 13.7822 7.21783C13.4949 6.93052 13.2935 6.46962 13.1671 6.09709Z\" fill=\"currentColor\"/><path d=\"M15.6879 9.35928C15.6385 9.21365 15.3615 9.21365 15.3121 9.35928C15.1698 9.77837 14.9432 10.2969 14.62 10.6201C14.2968 10.9433 13.7783 11.1699 13.3592 11.3121C13.2136 11.3616 13.2136 11.6386 13.3592 11.688C13.7783 11.8302 14.2968 12.0568 14.62 12.38C14.9432 12.7032 15.1698 13.2218 15.3121 13.6408C15.3615 13.7865 15.6385 13.7865 15.6879 13.6408C15.8302 13.2218 16.0568 12.7032 16.38 12.38C16.7032 12.0568 17.2217 11.8302 17.6408 11.688C17.7864 11.6386 17.7864 11.3616 17.6408 11.3121C17.2217 11.1699 16.7032 10.9433 16.38 10.6201C16.0568 10.2969 15.8302 9.77837 15.6879 9.35928Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -786,6 +786,15 @@ export type CentralIconName =
|
|
|
786
786
|
| "IconForkCode"
|
|
787
787
|
| "IconForkKnife"
|
|
788
788
|
| "IconForkSpoon"
|
|
789
|
+
| "IconFormCapsule"
|
|
790
|
+
| "IconFormCircle"
|
|
791
|
+
| "IconFormDiamond"
|
|
792
|
+
| "IconFormHexagon"
|
|
793
|
+
| "IconFormOctagonRotate"
|
|
794
|
+
| "IconFormOval"
|
|
795
|
+
| "IconFormPentagon"
|
|
796
|
+
| "IconFormRectangle"
|
|
797
|
+
| "IconFormSquare"
|
|
789
798
|
| "IconFortuneTellerBall"
|
|
790
799
|
| "IconForwards10s"
|
|
791
800
|
| "IconForYou"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-3-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.104",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1725,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 66,
|
|
@@ -779,6 +779,20 @@
|
|
|
779
779
|
"IconToque"
|
|
780
780
|
]
|
|
781
781
|
},
|
|
782
|
+
"Forms & Shapes": {
|
|
783
|
+
"count": 9,
|
|
784
|
+
"icons": [
|
|
785
|
+
"IconFormCapsule",
|
|
786
|
+
"IconFormCircle",
|
|
787
|
+
"IconFormDiamond",
|
|
788
|
+
"IconFormHexagon",
|
|
789
|
+
"IconFormOctagonRotate",
|
|
790
|
+
"IconFormOval",
|
|
791
|
+
"IconFormPentagon",
|
|
792
|
+
"IconFormRectangle",
|
|
793
|
+
"IconFormSquare"
|
|
794
|
+
]
|
|
795
|
+
},
|
|
782
796
|
"Furniture & Household": {
|
|
783
797
|
"count": 17,
|
|
784
798
|
"icons": [
|
|
@@ -2698,6 +2712,15 @@
|
|
|
2698
2712
|
"IconForkCode": "fork-code",
|
|
2699
2713
|
"IconForkKnife": "fork-knife, cable, restaurant, cutlery",
|
|
2700
2714
|
"IconForkSpoon": "fork-spoon, cable, restaurant, cutlery",
|
|
2715
|
+
"IconFormCapsule": "form-capsule, button",
|
|
2716
|
+
"IconFormCircle": "form-circle",
|
|
2717
|
+
"IconFormDiamond": "form-diamond, square-45-degrees",
|
|
2718
|
+
"IconFormHexagon": "form-hexagon",
|
|
2719
|
+
"IconFormOctagonRotate": "form-octagon-rotate",
|
|
2720
|
+
"IconFormOval": "form-oval",
|
|
2721
|
+
"IconFormPentagon": "form-pentagon",
|
|
2722
|
+
"IconFormRectangle": "form-rectangle",
|
|
2723
|
+
"IconFormSquare": "form-square",
|
|
2701
2724
|
"IconFortuneTellerBall": "fortune-teller-ball, future",
|
|
2702
2725
|
"IconForwards10s": "forwards-10s",
|
|
2703
2726
|
"IconForYou": "for-you, for-me, event, address, post",
|
package/index.d.ts
CHANGED
|
@@ -786,6 +786,15 @@ export { IconFork, default as IconForkDefault } from "./IconFork";
|
|
|
786
786
|
export { IconForkCode, default as IconForkCodeDefault } from "./IconForkCode";
|
|
787
787
|
export { IconForkKnife, default as IconForkKnifeDefault, } from "./IconForkKnife";
|
|
788
788
|
export { IconForkSpoon, default as IconForkSpoonDefault, } from "./IconForkSpoon";
|
|
789
|
+
export { IconFormCapsule, default as IconFormCapsuleDefault, } from "./IconFormCapsule";
|
|
790
|
+
export { IconFormCircle, default as IconFormCircleDefault, } from "./IconFormCircle";
|
|
791
|
+
export { IconFormDiamond, default as IconFormDiamondDefault, } from "./IconFormDiamond";
|
|
792
|
+
export { IconFormHexagon, default as IconFormHexagonDefault, } from "./IconFormHexagon";
|
|
793
|
+
export { IconFormOctagonRotate, default as IconFormOctagonRotateDefault, } from "./IconFormOctagonRotate";
|
|
794
|
+
export { IconFormOval, default as IconFormOvalDefault } from "./IconFormOval";
|
|
795
|
+
export { IconFormPentagon, default as IconFormPentagonDefault, } from "./IconFormPentagon";
|
|
796
|
+
export { IconFormRectangle, default as IconFormRectangleDefault, } from "./IconFormRectangle";
|
|
797
|
+
export { IconFormSquare, default as IconFormSquareDefault, } from "./IconFormSquare";
|
|
789
798
|
export { IconFortuneTellerBall, default as IconFortuneTellerBallDefault, } from "./IconFortuneTellerBall";
|
|
790
799
|
export { IconForwards10s, default as IconForwards10sDefault, } from "./IconForwards10s";
|
|
791
800
|
export { IconFramer, default as IconFramerDefault } from "./IconFramer";
|