@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.52 → 1.1.54
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/IconArrowsHide/index.d.ts +4 -0
- package/IconArrowsHide/index.js +2 -0
- package/IconArrowsHide/index.js.map +1 -0
- package/IconArrowsHide/index.mjs +2 -0
- package/IconArrowsHide/index.mjs.map +1 -0
- package/IconArrowsShow/index.d.ts +4 -0
- package/IconArrowsShow/index.js +2 -0
- package/IconArrowsShow/index.js.map +1 -0
- package/IconArrowsShow/index.mjs +2 -0
- package/IconArrowsShow/index.mjs.map +1 -0
- package/IconVectorAnchorPointMirrored/index.d.ts +4 -0
- package/IconVectorAnchorPointMirrored/index.js +2 -0
- package/IconVectorAnchorPointMirrored/index.js.map +1 -0
- package/{IconVectorAnchorPointStraight1 → IconVectorAnchorPointMirrored}/index.mjs +1 -1
- package/IconVectorAnchorPointMirrored/index.mjs.map +1 -0
- package/README.md +3 -1
- package/filtered-icons.json +36 -8
- package/icons/index.d.ts +3 -1
- package/icons-index.json +9 -5
- package/index.d.ts +3 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +21 -7
- package/IconVectorAnchorPointStraight1/index.d.ts +0 -4
- package/IconVectorAnchorPointStraight1/index.js +0 -2
- package/IconVectorAnchorPointStraight1/index.js.map +0 -1
- package/IconVectorAnchorPointStraight1/index.mjs.map +0 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var p=Object.defineProperty;var H=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of c(o))!B.call(r,e)&&e!==n&&p(r,e,{get:()=>o[e],enumerable:!(C=H(o,e))||C.enumerable});return r};var m=(r,o,n)=>(n=r!=null?i(u(r)):{},f(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),d=r=>f(p({},"__esModule",{value:!0}),r);var P={};I(P,{IconArrowsHide:()=>V,default:()=>x});module.exports=d(P);var t=m(require("react"));var s=m(require("react")),a=require("react-native-svg"),L=({children:r,size:o=24,...n})=>s.default.createElement(a.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var l=require("react-native-svg"),V=r=>t.default.createElement(L,{...r},t.default.createElement(l.Path,{d:"M15.707 16.293L14.293 17.707L13 16.4141V21H11V16.4141L9.70703 17.707L8.29297 16.293L12 12.5859L15.707 16.293Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M8 6H4V18H8V20H2V4H8V6Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M22 20H16V18H20V6H16V4H22V20Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M13 7.58594L14.293 6.29297L15.707 7.70703L12 11.4141L8.29297 7.70703L9.70703 6.29297L11 7.58594V3H13V7.58594Z",fill:"currentColor"})),x=V;0&&(module.exports={IconArrowsHide});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsHide/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 IconArrowsHide: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.707 16.293L14.293 17.707L13 16.4141V21H11V16.4141L9.70703 17.707L8.29297 16.293L12 12.5859L15.707 16.293Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M8 6H4V18H8V20H2V4H8V6Z\" fill=\"currentColor\" />\n <Path d=\"M22 20H16V18H20V6H16V4H22V20Z\" fill=\"currentColor\" />\n <Path\n d=\"M13 7.58594L14.293 6.29297L15.707 7.70703L12 11.4141L8.29297 7.70703L9.70703 6.29297L11 7.58594V3H13V7.58594Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsHide;\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,gHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QACC,EAAE,gHACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconArrowsHide_exports","__export","IconArrowsHide","IconArrowsHide_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowsHide","props","React","CentralIconBase","IconArrowsHide_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:t,size:r=24,...l})=>p.createElement(C,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var f=t=>o.createElement(e,{...t},o.createElement(n,{d:"M15.707 16.293L14.293 17.707L13 16.4141V21H11V16.4141L9.70703 17.707L8.29297 16.293L12 12.5859L15.707 16.293Z",fill:"currentColor"}),o.createElement(n,{d:"M8 6H4V18H8V20H2V4H8V6Z",fill:"currentColor"}),o.createElement(n,{d:"M22 20H16V18H20V6H16V4H22V20Z",fill:"currentColor"}),o.createElement(n,{d:"M13 7.58594L14.293 6.29297L15.707 7.70703L12 11.4141L8.29297 7.70703L9.70703 6.29297L11 7.58594V3H13V7.58594Z",fill:"currentColor"})),B=f;export{f as IconArrowsHide,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsHide/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 IconArrowsHide: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.707 16.293L14.293 17.707L13 16.4141V21H11V16.4141L9.70703 17.707L8.29297 16.293L12 12.5859L15.707 16.293Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M8 6H4V18H8V20H2V4H8V6Z\" fill=\"currentColor\" />\n <Path d=\"M22 20H16V18H20V6H16V4H22V20Z\" fill=\"currentColor\" />\n <Path\n d=\"M13 7.58594L14.293 6.29297L15.707 7.70703L12 11.4141L8.29297 7.70703L9.70703 6.29297L11 7.58594V3H13V7.58594Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsHide;\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,gHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDG,EAAA,cAACH,EAAA,CAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DG,EAAA,cAACH,EAAA,CACC,EAAE,gHACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowsHide","props","React","CentralIconBase","IconArrowsHide_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var H=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,i=Object.prototype.hasOwnProperty;var u=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!i.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=H(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?f(I(r)):{},l(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>l(n({},"__esModule",{value:!0}),r);var g={};u(g,{IconArrowsShow:()=>c,default:()=>P});module.exports=x(g);var p=m(require("react"));var s=m(require("react")),C=require("react-native-svg"),L=({children:r,size:o=24,...t})=>s.default.createElement(C.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 V=require("react-native-svg"),c=r=>p.default.createElement(L,{...r},p.default.createElement(V.Path,{d:"M13 18.5859L14.293 17.293L15.707 18.707L12 22.4141L8.29297 18.707L9.70703 17.293L11 18.5859V14H13V18.5859ZM8 10H4V14H8V16H2V8H8V10ZM22 16H16V14H20V10H16V8H22V16ZM15.707 5.29297L14.293 6.70703L13 5.41406V10H11V5.41406L9.70703 6.70703L8.29297 5.29297L12 1.58594L15.707 5.29297Z",fill:"currentColor"})),P=c;0&&(module.exports={IconArrowsShow});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsShow/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 IconArrowsShow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13 18.5859L14.293 17.293L15.707 18.707L12 22.4141L8.29297 18.707L9.70703 17.293L11 18.5859V14H13V18.5859ZM8 10H4V14H8V16H2V8H8V10ZM22 16H16V14H20V10H16V8H22V16ZM15.707 5.29297L14.293 6.70703L13 5.41406V10H11V5.41406L9.70703 6.70703L8.29297 5.29297L12 1.58594L15.707 5.29297Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsShow;\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,sRACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconArrowsShow_exports","__export","IconArrowsShow","IconArrowsShow_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowsShow","props","React","CentralIconBase","IconArrowsShow_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 l}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(l,{d:"M13 18.5859L14.293 17.293L15.707 18.707L12 22.4141L8.29297 18.707L9.70703 17.293L11 18.5859V14H13V18.5859ZM8 10H4V14H8V16H2V8H8V10ZM22 16H16V14H20V10H16V8H22V16ZM15.707 5.29297L14.293 6.70703L13 5.41406V10H11V5.41406L9.70703 6.70703L8.29297 5.29297L12 1.58594L15.707 5.29297Z",fill:"currentColor"})),i=m;export{m as IconArrowsShow,i as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsShow/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 IconArrowsShow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13 18.5859L14.293 17.293L15.707 18.707L12 22.4141L8.29297 18.707L9.70703 17.293L11 18.5859V14H13V18.5859ZM8 10H4V14H8V16H2V8H8V10ZM22 16H16V14H20V10H16V8H22V16ZM15.707 5.29297L14.293 6.70703L13 5.41406V10H11V5.41406L9.70703 6.70703L8.29297 5.29297L12 1.58594L15.707 5.29297Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsShow;\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,sRACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowsShow","props","React","CentralIconBase","IconArrowsShow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!P.call(r,n)&&n!==t&&C(r,n,{get:()=>o[n],enumerable:!(l=B(o,n))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(L(r)):{},a(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>a(C({},"__esModule",{value:!0}),r);var H={};x(H,{IconVectorAnchorPointMirrored:()=>i,default:()=>g});module.exports=d(H);var e=m(require("react"));var c=m(require("react")),f=require("react-native-svg"),s=({children:r,size:o=24,...t})=>c.default.createElement(f.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"),i=r=>e.default.createElement(s,{...r},e.default.createElement(p.Path,{d:"M4 7H10V9H4L2.5 10.5L0 8L2.5 5.5L4 7Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M24 8L21.5 10.5L20 9H14V7H20L21.5 5.5L24 8Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M12 4C14.1361 4 15.881 5.67436 15.9941 7.78223C19.5607 9.51332 22 13.3335 22 18H20C20 14.2557 18.1663 11.2915 15.5625 9.81641C14.9006 11.112 13.5548 12 12 12C10.4451 12 9.09837 11.1122 8.43652 9.81641C5.83316 11.2916 4 14.256 4 18H2C2 13.3339 4.43879 9.5135 8.00488 7.78223C8.11795 5.67433 9.86391 4 12 4Z",fill:"currentColor"})),g=i;0&&(module.exports={IconVectorAnchorPointMirrored});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVectorAnchorPointMirrored/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 IconVectorAnchorPointMirrored: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M4 7H10V9H4L2.5 10.5L0 8L2.5 5.5L4 7Z\" fill=\"currentColor\" />\n <Path\n d=\"M24 8L21.5 10.5L20 9H14V7H20L21.5 5.5L24 8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 4C14.1361 4 15.881 5.67436 15.9941 7.78223C19.5607 9.51332 22 13.3335 22 18H20C20 14.2557 18.1663 11.2915 15.5625 9.81641C14.9006 11.112 13.5548 12 12 12C10.4451 12 9.09837 11.1122 8.43652 9.81641C5.83316 11.2916 4 14.256 4 18H2C2 13.3339 4.43879 9.5135 8.00488 7.78223C8.11795 5.67433 9.86391 4 12 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVectorAnchorPointMirrored;\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,mCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,wCAAwC,KAAK,eAAe,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,8CACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oTACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconVectorAnchorPointMirrored_exports","__export","IconVectorAnchorPointMirrored","IconVectorAnchorPointMirrored_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVectorAnchorPointMirrored","props","React","CentralIconBase","IconVectorAnchorPointMirrored_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var a=t=>o.createElement(e,{...t},o.createElement(n,{d:"M4 7H10V9H4L2.5 10.5L0 8L2.5 5.5L4 7Z",fill:"currentColor"}),o.createElement(n,{d:"M24 8L21.5 10.5L20 9H14V7H20L21.5 5.5L24 8Z",fill:"currentColor"}),o.createElement(n,{d:"M12 4C14.1361 4 15.881 5.67436 15.9941 7.78223C19.5607 9.51332 22 13.3335 22 18H20C20 14.2557 18.1663 11.2915 15.5625 9.81641C14.9006 11.112 13.5548 12 12 12C10.4451 12 9.09837 11.1122 8.43652 9.81641C5.83316 11.2916 4 14.256 4 18H2C2 13.3339 4.43879 9.5135 8.00488 7.78223C8.11795 5.67433 9.86391 4 12 4Z",fill:"currentColor"})),P=a;export{a as
|
|
1
|
+
import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var a=t=>o.createElement(e,{...t},o.createElement(n,{d:"M4 7H10V9H4L2.5 10.5L0 8L2.5 5.5L4 7Z",fill:"currentColor"}),o.createElement(n,{d:"M24 8L21.5 10.5L20 9H14V7H20L21.5 5.5L24 8Z",fill:"currentColor"}),o.createElement(n,{d:"M12 4C14.1361 4 15.881 5.67436 15.9941 7.78223C19.5607 9.51332 22 13.3335 22 18H20C20 14.2557 18.1663 11.2915 15.5625 9.81641C14.9006 11.112 13.5548 12 12 12C10.4451 12 9.09837 11.1122 8.43652 9.81641C5.83316 11.2916 4 14.256 4 18H2C2 13.3339 4.43879 9.5135 8.00488 7.78223C8.11795 5.67433 9.86391 4 12 4Z",fill:"currentColor"})),P=a;export{a as IconVectorAnchorPointMirrored,P as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVectorAnchorPointMirrored/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 IconVectorAnchorPointMirrored: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M4 7H10V9H4L2.5 10.5L0 8L2.5 5.5L4 7Z\" fill=\"currentColor\" />\n <Path\n d=\"M24 8L21.5 10.5L20 9H14V7H20L21.5 5.5L24 8Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 4C14.1361 4 15.881 5.67436 15.9941 7.78223C19.5607 9.51332 22 13.3335 22 18H20C20 14.2557 18.1663 11.2915 15.5625 9.81641C14.9006 11.112 13.5548 12 12 12C10.4451 12 9.09837 11.1122 8.43652 9.81641C5.83316 11.2916 4 14.256 4 18H2C2 13.3339 4.43879 9.5135 8.00488 7.78223C8.11795 5.67433 9.86391 4 12 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVectorAnchorPointMirrored;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,wCAAwC,KAAK,eAAe,EACpEG,EAAA,cAACH,EAAA,CACC,EAAE,8CACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oTACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVectorAnchorPointMirrored","props","React","CentralIconBase","IconVectorAnchorPointMirrored_default"]}
|
package/README.md
CHANGED
|
@@ -261,12 +261,14 @@ Below is a complete list of available icons:
|
|
|
261
261
|
- IconArrowRotateRightLeft
|
|
262
262
|
- IconArrowShareLeft
|
|
263
263
|
- IconArrowShareRight
|
|
264
|
+
- IconArrowsHide
|
|
264
265
|
- IconArrowSplit
|
|
265
266
|
- IconArrowsRepeat
|
|
266
267
|
- IconArrowsRepeatCircle
|
|
267
268
|
- IconArrowsRepeatLeftRight
|
|
268
269
|
- IconArrowsRepeatRightLeft
|
|
269
270
|
- IconArrowsRepeatRightLeftOff
|
|
271
|
+
- IconArrowsShow
|
|
270
272
|
- IconArrowsZoom
|
|
271
273
|
- IconArrowTopBottom
|
|
272
274
|
- IconArrowTriangleBottom
|
|
@@ -650,8 +652,8 @@ Below is a complete list of available icons:
|
|
|
650
652
|
- IconVariables
|
|
651
653
|
- IconVectorAnchorPointAsymmetric
|
|
652
654
|
- IconVectorAnchorPointDisconnected
|
|
655
|
+
- IconVectorAnchorPointMirrored
|
|
653
656
|
- IconVectorAnchorPointStraight
|
|
654
|
-
- IconVectorAnchorPointStraight1
|
|
655
657
|
- IconVectorLogo
|
|
656
658
|
- IconWhiteboard
|
|
657
659
|
- IconWrite1
|
package/filtered-icons.json
CHANGED
|
@@ -1610,6 +1610,20 @@
|
|
|
1610
1610
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
1611
1611
|
"componentName": "IconArrowShareRight"
|
|
1612
1612
|
},
|
|
1613
|
+
{
|
|
1614
|
+
"category": "Arrows",
|
|
1615
|
+
"svg": "<path d=\"M15.707 16.293L14.293 17.707L13 16.4141V21H11V16.4141L9.70703 17.707L8.29297 16.293L12 12.5859L15.707 16.293Z\" fill=\"currentColor\"/><path d=\"M8 6H4V18H8V20H2V4H8V6Z\" fill=\"currentColor\"/><path d=\"M22 20H16V18H20V6H16V4H22V20Z\" fill=\"currentColor\"/><path d=\"M13 7.58594L14.293 6.29297L15.707 7.70703L12 11.4141L8.29297 7.70703L9.70703 6.29297L11 7.58594V3H13V7.58594Z\" fill=\"currentColor\"/>",
|
|
1616
|
+
"iconName": "arrows-hide, collapse, minimize",
|
|
1617
|
+
"variant": {
|
|
1618
|
+
"join": "square",
|
|
1619
|
+
"filled": "on",
|
|
1620
|
+
"radius": "0",
|
|
1621
|
+
"stroke": "2"
|
|
1622
|
+
},
|
|
1623
|
+
"createdAt": "2025-12-03T09:02:16.575537+00:00",
|
|
1624
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
1625
|
+
"componentName": "IconArrowsHide"
|
|
1626
|
+
},
|
|
1613
1627
|
{
|
|
1614
1628
|
"category": "Arrows",
|
|
1615
1629
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3H10V5H6.41421L12 10.5858L17.5858 5H14V3H21V10H19V6.41421L13 12.4142V21H11V12.4142L5 6.41421V10H3V3Z\" fill=\"currentColor\"/>",
|
|
@@ -1694,6 +1708,20 @@
|
|
|
1694
1708
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
1695
1709
|
"componentName": "IconArrowsRepeatRightLeftOff"
|
|
1696
1710
|
},
|
|
1711
|
+
{
|
|
1712
|
+
"category": "Arrows",
|
|
1713
|
+
"svg": "<path d=\"M13 18.5859L14.293 17.293L15.707 18.707L12 22.4141L8.29297 18.707L9.70703 17.293L11 18.5859V14H13V18.5859ZM8 10H4V14H8V16H2V8H8V10ZM22 16H16V14H20V10H16V8H22V16ZM15.707 5.29297L14.293 6.70703L13 5.41406V10H11V5.41406L9.70703 6.70703L8.29297 5.29297L12 1.58594L15.707 5.29297Z\" fill=\"currentColor\"/>",
|
|
1714
|
+
"iconName": "arrows-show, expand, maximize",
|
|
1715
|
+
"variant": {
|
|
1716
|
+
"join": "square",
|
|
1717
|
+
"filled": "on",
|
|
1718
|
+
"radius": "0",
|
|
1719
|
+
"stroke": "2"
|
|
1720
|
+
},
|
|
1721
|
+
"createdAt": "2025-12-03T09:02:16.575537+00:00",
|
|
1722
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
1723
|
+
"componentName": "IconArrowsShow"
|
|
1724
|
+
},
|
|
1697
1725
|
{
|
|
1698
1726
|
"category": "Arrows",
|
|
1699
1727
|
"svg": "<path d=\"M10.707 14.707L7.41406 18H10V20H4V14H6V16.5859L9.29297 13.293L10.707 14.707Z\" fill=\"currentColor\"/><path d=\"M18 16.5859V14H20V20H14V18H16.5859L13.293 14.707L14.707 13.293L18 16.5859Z\" fill=\"currentColor\"/><path d=\"M10 6H7.41406L10.707 9.29297L9.29297 10.707L6 7.41406V10H4V4H10V6Z\" fill=\"currentColor\"/><path d=\"M20 10H18V7.41406L14.707 10.707L13.293 9.29297L16.5859 6H14V4H20V10Z\" fill=\"currentColor\"/>",
|
|
@@ -21436,31 +21464,31 @@
|
|
|
21436
21464
|
},
|
|
21437
21465
|
{
|
|
21438
21466
|
"category": "Edit",
|
|
21439
|
-
"svg": "<path d=\"
|
|
21440
|
-
"iconName": "vector-anchor-point-
|
|
21467
|
+
"svg": "<path d=\"M4 7H10V9H4L2.5 10.5L0 8L2.5 5.5L4 7Z\" fill=\"currentColor\"/><path d=\"M24 8L21.5 10.5L20 9H14V7H20L21.5 5.5L24 8Z\" fill=\"currentColor\"/><path d=\"M12 4C14.1361 4 15.881 5.67436 15.9941 7.78223C19.5607 9.51332 22 13.3335 22 18H20C20 14.2557 18.1663 11.2915 15.5625 9.81641C14.9006 11.112 13.5548 12 12 12C10.4451 12 9.09837 11.1122 8.43652 9.81641C5.83316 11.2916 4 14.256 4 18H2C2 13.3339 4.43879 9.5135 8.00488 7.78223C8.11795 5.67433 9.86391 4 12 4Z\" fill=\"currentColor\"/>",
|
|
21468
|
+
"iconName": "vector-anchor-point-mirrored, mirror-angle",
|
|
21441
21469
|
"variant": {
|
|
21442
21470
|
"join": "square",
|
|
21443
21471
|
"filled": "on",
|
|
21444
21472
|
"radius": "0",
|
|
21445
21473
|
"stroke": "2"
|
|
21446
21474
|
},
|
|
21447
|
-
"createdAt": "2025-12-
|
|
21475
|
+
"createdAt": "2025-12-03T12:02:17.039279+00:00",
|
|
21448
21476
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
21449
|
-
"componentName": "
|
|
21477
|
+
"componentName": "IconVectorAnchorPointMirrored"
|
|
21450
21478
|
},
|
|
21451
21479
|
{
|
|
21452
21480
|
"category": "Edit",
|
|
21453
|
-
"svg": "<path d=\"
|
|
21454
|
-
"iconName": "vector-anchor-point-straight,
|
|
21481
|
+
"svg": "<path d=\"M12 4C14.2091 4 16 5.79086 16 8C16 8.74175 15.7971 9.43577 15.4453 10.0312L22.4141 17L21 18.4141L14.0312 11.4453C13.4358 11.7971 12.7417 12 12 12C11.258 12 10.5634 11.7974 9.96777 11.4453L3 18.4141L1.58594 17L8.55371 10.0312C8.20203 9.43587 8 8.74157 8 8C8 5.79086 9.79086 4 12 4Z\" fill=\"currentColor\"/>",
|
|
21482
|
+
"iconName": "vector-anchor-point-straight, no-smoothing",
|
|
21455
21483
|
"variant": {
|
|
21456
21484
|
"join": "square",
|
|
21457
21485
|
"filled": "on",
|
|
21458
21486
|
"radius": "0",
|
|
21459
21487
|
"stroke": "2"
|
|
21460
21488
|
},
|
|
21461
|
-
"createdAt": "2025-12-
|
|
21489
|
+
"createdAt": "2025-12-03T12:02:17.039279+00:00",
|
|
21462
21490
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
21463
|
-
"componentName": "
|
|
21491
|
+
"componentName": "IconVectorAnchorPointStraight"
|
|
21464
21492
|
},
|
|
21465
21493
|
{
|
|
21466
21494
|
"category": "Edit",
|
package/icons/index.d.ts
CHANGED
|
@@ -114,12 +114,14 @@ export type CentralIconName =
|
|
|
114
114
|
| "IconArrowsAllSides21"
|
|
115
115
|
| "IconArrowShareLeft"
|
|
116
116
|
| "IconArrowShareRight"
|
|
117
|
+
| "IconArrowsHide"
|
|
117
118
|
| "IconArrowSplit"
|
|
118
119
|
| "IconArrowsRepeat"
|
|
119
120
|
| "IconArrowsRepeatCircle"
|
|
120
121
|
| "IconArrowsRepeatLeftRight"
|
|
121
122
|
| "IconArrowsRepeatRightLeft"
|
|
122
123
|
| "IconArrowsRepeatRightLeftOff"
|
|
124
|
+
| "IconArrowsShow"
|
|
123
125
|
| "IconArrowsZoom"
|
|
124
126
|
| "IconArrowTopBottom"
|
|
125
127
|
| "IconArrowTriangleBottom"
|
|
@@ -1530,8 +1532,8 @@ export type CentralIconName =
|
|
|
1530
1532
|
| "IconVault"
|
|
1531
1533
|
| "IconVectorAnchorPointAsymmetric"
|
|
1532
1534
|
| "IconVectorAnchorPointDisconnected"
|
|
1535
|
+
| "IconVectorAnchorPointMirrored"
|
|
1533
1536
|
| "IconVectorAnchorPointStraight"
|
|
1534
|
-
| "IconVectorAnchorPointStraight1"
|
|
1535
1537
|
| "IconVectorLogo"
|
|
1536
1538
|
| "IconVenmo"
|
|
1537
1539
|
| "IconVercel"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.54",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1620,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 62,
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
]
|
|
96
96
|
},
|
|
97
97
|
"Arrows": {
|
|
98
|
-
"count":
|
|
98
|
+
"count": 116,
|
|
99
99
|
"icons": [
|
|
100
100
|
"IconArrow",
|
|
101
101
|
"IconArrowBottomTop",
|
|
@@ -135,12 +135,14 @@
|
|
|
135
135
|
"IconArrowRotateRightLeft",
|
|
136
136
|
"IconArrowShareLeft",
|
|
137
137
|
"IconArrowShareRight",
|
|
138
|
+
"IconArrowsHide",
|
|
138
139
|
"IconArrowSplit",
|
|
139
140
|
"IconArrowsRepeat",
|
|
140
141
|
"IconArrowsRepeatCircle",
|
|
141
142
|
"IconArrowsRepeatLeftRight",
|
|
142
143
|
"IconArrowsRepeatRightLeft",
|
|
143
144
|
"IconArrowsRepeatRightLeftOff",
|
|
145
|
+
"IconArrowsShow",
|
|
144
146
|
"IconArrowsZoom",
|
|
145
147
|
"IconArrowTopBottom",
|
|
146
148
|
"IconArrowTriangleBottom",
|
|
@@ -540,8 +542,8 @@
|
|
|
540
542
|
"IconVariables",
|
|
541
543
|
"IconVectorAnchorPointAsymmetric",
|
|
542
544
|
"IconVectorAnchorPointDisconnected",
|
|
545
|
+
"IconVectorAnchorPointMirrored",
|
|
543
546
|
"IconVectorAnchorPointStraight",
|
|
544
|
-
"IconVectorAnchorPointStraight1",
|
|
545
547
|
"IconVectorLogo",
|
|
546
548
|
"IconWhiteboard",
|
|
547
549
|
"IconWrite1",
|
|
@@ -1923,12 +1925,14 @@
|
|
|
1923
1925
|
"IconArrowsAllSides21": "arrows-all-sides-2, scan-text, text, focus, list",
|
|
1924
1926
|
"IconArrowShareLeft": "arrow-share-left, back, last, reply",
|
|
1925
1927
|
"IconArrowShareRight": "arrow-share-right, next, forward",
|
|
1928
|
+
"IconArrowsHide": "arrows-hide, collapse, minimize",
|
|
1926
1929
|
"IconArrowSplit": "arrow-split, rules, direction, split",
|
|
1927
1930
|
"IconArrowsRepeat": "arrows-repeat, repost",
|
|
1928
1931
|
"IconArrowsRepeatCircle": "arrows-repeat-circle, repost",
|
|
1929
1932
|
"IconArrowsRepeatLeftRight": "arrows-repeat-left-right, retweet",
|
|
1930
1933
|
"IconArrowsRepeatRightLeft": "arrows-repeat-right-left, repost",
|
|
1931
1934
|
"IconArrowsRepeatRightLeftOff": "arrows-repeat-right-left-off, repost-off",
|
|
1935
|
+
"IconArrowsShow": "arrows-show, expand, maximize",
|
|
1932
1936
|
"IconArrowsZoom": "arrows-zoom, scale, motion, move, directions",
|
|
1933
1937
|
"IconArrowTopBottom": "arrow-top-bottom, sort 1, switch vertical",
|
|
1934
1938
|
"IconArrowTriangleBottom": "arrow-triangle-bottom",
|
|
@@ -3339,8 +3343,8 @@
|
|
|
3339
3343
|
"IconVault": "vault, safe",
|
|
3340
3344
|
"IconVectorAnchorPointAsymmetric": "vector-anchor-point-asymmetric",
|
|
3341
3345
|
"IconVectorAnchorPointDisconnected": "vector-anchor-point-disconnected",
|
|
3346
|
+
"IconVectorAnchorPointMirrored": "vector-anchor-point-mirrored, mirror-angle",
|
|
3342
3347
|
"IconVectorAnchorPointStraight": "vector-anchor-point-straight, no-smoothing",
|
|
3343
|
-
"IconVectorAnchorPointStraight1": "vector-anchor-point-straight, mirror-angle",
|
|
3344
3348
|
"IconVectorLogo": "vector-logo, svg",
|
|
3345
3349
|
"IconVenmo": "venmo",
|
|
3346
3350
|
"IconVercel": "vercel",
|
package/index.d.ts
CHANGED
|
@@ -136,11 +136,13 @@ export { IconArrowWallUp, default as IconArrowWallUpDefault, } from "./IconArrow
|
|
|
136
136
|
export { IconArrowsAllSides, default as IconArrowsAllSidesDefault, } from "./IconArrowsAllSides";
|
|
137
137
|
export { IconArrowsAllSides2, default as IconArrowsAllSides2Default, } from "./IconArrowsAllSides2";
|
|
138
138
|
export { IconArrowsAllSides21, default as IconArrowsAllSides21Default, } from "./IconArrowsAllSides21";
|
|
139
|
+
export { IconArrowsHide, default as IconArrowsHideDefault, } from "./IconArrowsHide";
|
|
139
140
|
export { IconArrowsRepeat, default as IconArrowsRepeatDefault, } from "./IconArrowsRepeat";
|
|
140
141
|
export { IconArrowsRepeatCircle, default as IconArrowsRepeatCircleDefault, } from "./IconArrowsRepeatCircle";
|
|
141
142
|
export { IconArrowsRepeatLeftRight, default as IconArrowsRepeatLeftRightDefault, } from "./IconArrowsRepeatLeftRight";
|
|
142
143
|
export { IconArrowsRepeatRightLeft, default as IconArrowsRepeatRightLeftDefault, } from "./IconArrowsRepeatRightLeft";
|
|
143
144
|
export { IconArrowsRepeatRightLeftOff, default as IconArrowsRepeatRightLeftOffDefault, } from "./IconArrowsRepeatRightLeftOff";
|
|
145
|
+
export { IconArrowsShow, default as IconArrowsShowDefault, } from "./IconArrowsShow";
|
|
144
146
|
export { IconArrowsZoom, default as IconArrowsZoomDefault, } from "./IconArrowsZoom";
|
|
145
147
|
export { IconArtifactNews, default as IconArtifactNewsDefault, } from "./IconArtifactNews";
|
|
146
148
|
export { IconAspectRatio11, default as IconAspectRatio11Default, } from "./IconAspectRatio11";
|
|
@@ -1529,8 +1531,8 @@ export { IconVariables, default as IconVariablesDefault, } from "./IconVariables
|
|
|
1529
1531
|
export { IconVault, default as IconVaultDefault } from "./IconVault";
|
|
1530
1532
|
export { IconVectorAnchorPointAsymmetric, default as IconVectorAnchorPointAsymmetricDefault, } from "./IconVectorAnchorPointAsymmetric";
|
|
1531
1533
|
export { IconVectorAnchorPointDisconnected, default as IconVectorAnchorPointDisconnectedDefault, } from "./IconVectorAnchorPointDisconnected";
|
|
1534
|
+
export { IconVectorAnchorPointMirrored, default as IconVectorAnchorPointMirroredDefault, } from "./IconVectorAnchorPointMirrored";
|
|
1532
1535
|
export { IconVectorAnchorPointStraight, default as IconVectorAnchorPointStraightDefault, } from "./IconVectorAnchorPointStraight";
|
|
1533
|
-
export { IconVectorAnchorPointStraight1, default as IconVectorAnchorPointStraight1Default, } from "./IconVectorAnchorPointStraight1";
|
|
1534
1536
|
export { IconVectorLogo, default as IconVectorLogoDefault, } from "./IconVectorLogo";
|
|
1535
1537
|
export { IconVenmo, default as IconVenmoDefault } from "./IconVenmo";
|
|
1536
1538
|
export { IconVercel, default as IconVercelDefault } from "./IconVercel";
|