@central-icons-react/square-outlined-radius-0-stroke-1 1.1.97 → 1.1.98

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.
@@ -1,2 +1,2 @@
1
- "use strict";var w=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of d(e))!h.call(r,t)&&t!==o&&a(r,t,{get:()=>e[t],enumerable:!(p=f(e,t))||p.enumerable});return r};var i=(r,e,o)=>(o=r!=null?w(g(r)):{},l(e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),B=r=>l(a({},"__esModule",{value:!0}),r);var V={};x(V,{IconArrowSplitDown1:()=>m,default:()=>I});module.exports=B(V);var n=i(require("react"));var s=i(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:u,...C})=>s.default.createElement("svg",{...C,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...u}},o&&!t&&s.default.createElement("title",null,o),r);var m=r=>n.default.createElement(c,{...r,ariaLabel:"arrow-split-down"},n.default.createElement("path",{d:"M3.5 14.5V20.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M14.5 20.5H20.5V14.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12 12V3.5M12 12L4 20M12 12L20 20",stroke:"currentColor",strokeLinecap:"square"})),I=m;0&&(module.exports={IconArrowSplitDown1});
1
+ "use strict";var w=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var o in e)s(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of f(e))!h.call(r,t)&&t!==o&&s(r,t,{get:()=>e[t],enumerable:!(p=d(e,t))||p.enumerable});return r};var i=(r,e,o)=>(o=r!=null?w(g(r)):{},l(e||!r||!r.__esModule?s(o,"default",{value:r,enumerable:!0}):o,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var V={};x(V,{IconArrowSplitDown1:()=>u,default:()=>I});module.exports=B(V);var n=i(require("react"));var a=i(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:m,...C})=>a.default.createElement("svg",{...C,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...m}},o&&!t&&a.default.createElement("title",null,o),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"arrow-split-down, rules, direction, split"},n.default.createElement("path",{d:"M3.5 14.5V20.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M14.5 20.5H20.5V14.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12 12V3.5M12 12L4 20M12 12L20 20",stroke:"currentColor",strokeLinecap:"square"})),I=u;0&&(module.exports={IconArrowSplitDown1});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArrowSplitDown1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitDown1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-split-down\">\n <path\n d=\"M3.5 14.5V20.5H9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M14.5 20.5H20.5V14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12V3.5M12 12L4 20M12 12L20 20\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitDown1;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,yBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAuDC,GAEhE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitDown1_exports","__export","IconArrowSplitDown1","IconArrowSplitDown1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowSplitDown1","props","React","CentralIconBase","IconArrowSplitDown1_default"]}
1
+ {"version":3,"sources":["../src/IconArrowSplitDown1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitDown1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split-down, rules, direction, split\"\n >\n <path\n d=\"M3.5 14.5V20.5H9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M14.5 20.5H20.5V14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12V3.5M12 12L4 20M12 12L20 20\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitDown1;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,yBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAuDC,GAEhE,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,6CAEV,EAAAC,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitDown1_exports","__export","IconArrowSplitDown1","IconArrowSplitDown1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowSplitDown1","props","React","CentralIconBase","IconArrowSplitDown1_default"]}
@@ -1,2 +1,2 @@
1
- import e from"react";import p from"react";var a=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:t=!0,style:l,...i})=>p.createElement("svg",{...i,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},n&&!t&&p.createElement("title",null,n),o);var c=o=>e.createElement(a,{...o,ariaLabel:"arrow-split-down"},e.createElement("path",{d:"M3.5 14.5V20.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M14.5 20.5H20.5V14.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M12 12V3.5M12 12L4 20M12 12L20 20",stroke:"currentColor",strokeLinecap:"square"})),f=c;export{c as IconArrowSplitDown1,f as default};
1
+ import e from"react";import p from"react";var s=({children:o,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:l,...i})=>p.createElement("svg",{...i,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...l}},n&&!t&&p.createElement("title",null,n),o);var c=o=>e.createElement(s,{...o,ariaLabel:"arrow-split-down, rules, direction, split"},e.createElement("path",{d:"M3.5 14.5V20.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M14.5 20.5H20.5V14.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M12 12V3.5M12 12L4 20M12 12L20 20",stroke:"currentColor",strokeLinecap:"square"})),d=c;export{c as IconArrowSplitDown1,d as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArrowSplitDown1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitDown1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-split-down\">\n <path\n d=\"M3.5 14.5V20.5H9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M14.5 20.5H20.5V14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12V3.5M12 12L4 20M12 12L20 20\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitDown1;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowSplitDown1","props","React","CentralIconBase","IconArrowSplitDown1_default"]}
1
+ {"version":3,"sources":["../src/IconArrowSplitDown1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitDown1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split-down, rules, direction, split\"\n >\n <path\n d=\"M3.5 14.5V20.5H9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M14.5 20.5H20.5V14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12V3.5M12 12L4 20M12 12L20 20\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitDown1;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,6CAEVC,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowSplitDown1","props","React","CentralIconBase","IconArrowSplitDown1_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconArrowSplitLeft: React.FC<CentralIconBaseProps>;
4
+ export default IconArrowSplitLeft;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var t in e)s(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of g(e))!w.call(r,o)&&o!==t&&s(r,o,{get:()=>e[o],enumerable:!(p=d(e,o))||p.enumerable});return r};var i=(r,e,t)=>(t=r!=null?f(h(r)):{},l(e||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var L={};x(L,{IconArrowSplitLeft:()=>u,default:()=>I});module.exports=B(L);var n=i(require("react"));var a=i(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:o=!0,style:m,...C})=>a.default.createElement("svg",{...C,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...m}},t&&!o&&a.default.createElement("title",null,t),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"arrow-split-left, rules, direction, split"},n.default.createElement("path",{d:"M9.5 3.5H3.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M3.5 14.5V20.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12 12H20.5M12 12L4 4M12 12L4 20",stroke:"currentColor",strokeLinecap:"square"})),I=u;0&&(module.exports={IconArrowSplitLeft});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitLeft/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitLeft: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split-left, rules, direction, split\"\n >\n <path d=\"M9.5 3.5H3.5V9.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M3.5 14.5V20.5H9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12H20.5M12 12L4 4M12 12L4 20\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitLeft;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,wBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAsDC,GAE/D,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,6CAEV,EAAAC,QAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxE,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitLeft_exports","__export","IconArrowSplitLeft","IconArrowSplitLeft_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowSplitLeft","props","React","CentralIconBase","IconArrowSplitLeft_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import p from"react";var s=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...i})=>p.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...l}},n&&!o&&p.createElement("title",null,n),t);var c=t=>e.createElement(s,{...t,ariaLabel:"arrow-split-left, rules, direction, split"},e.createElement("path",{d:"M9.5 3.5H3.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M3.5 14.5V20.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M12 12H20.5M12 12L4 4M12 12L4 20",stroke:"currentColor",strokeLinecap:"square"})),d=c;export{c as IconArrowSplitLeft,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitLeft/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitLeft: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split-left, rules, direction, split\"\n >\n <path d=\"M9.5 3.5H3.5V9.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M3.5 14.5V20.5H9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12H20.5M12 12L4 4M12 12L4 20\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitLeft;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,6CAEVC,EAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxEA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowSplitLeft","props","React","CentralIconBase","IconArrowSplitLeft_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconArrowSplitRight: React.FC<CentralIconBaseProps>;
4
+ export default IconArrowSplitRight;
@@ -0,0 +1,2 @@
1
+ "use strict";var g=Object.create;var s=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var t in e)s(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of f(e))!w.call(r,o)&&o!==t&&s(r,o,{get:()=>e[o],enumerable:!(p=h(e,o))||p.enumerable});return r};var i=(r,e,t)=>(t=r!=null?g(d(r)):{},l(e||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var k={};x(k,{IconArrowSplitRight:()=>u,default:()=>I});module.exports=B(k);var n=i(require("react"));var a=i(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:o=!0,style:m,...C})=>a.default.createElement("svg",{...C,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...m}},t&&!o&&a.default.createElement("title",null,t),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"arrow-split-right, rules, direction, split"},n.default.createElement("path",{d:"M14.5 3.5H20.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M20.5 14.5V20.5H14.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12 12H3.5M12 12L20 4M12 12L20 20",stroke:"currentColor",strokeLinecap:"square"})),I=u;0&&(module.exports={IconArrowSplitRight});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitRight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitRight: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split-right, rules, direction, split\"\n >\n <path\n d=\"M14.5 3.5H20.5V9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M20.5 14.5V20.5H14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12H3.5M12 12L20 4M12 12L20 20\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitRight;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,yBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAuDC,GAEhE,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEV,EAAAC,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitRight_exports","__export","IconArrowSplitRight","IconArrowSplitRight_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowSplitRight","props","React","CentralIconBase","IconArrowSplitRight_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import p from"react";var s=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...i})=>p.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...l}},n&&!o&&p.createElement("title",null,n),t);var c=t=>e.createElement(s,{...t,ariaLabel:"arrow-split-right, rules, direction, split"},e.createElement("path",{d:"M14.5 3.5H20.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M20.5 14.5V20.5H14.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M12 12H3.5M12 12L20 4M12 12L20 20",stroke:"currentColor",strokeLinecap:"square"})),h=c;export{c as IconArrowSplitRight,h as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitRight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitRight: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split-right, rules, direction, split\"\n >\n <path\n d=\"M14.5 3.5H20.5V9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M20.5 14.5V20.5H14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12H3.5M12 12L20 4M12 12L20 20\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitRight;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEVC,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowSplitRight","props","React","CentralIconBase","IconArrowSplitRight_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconArrowSplitUp: React.FC<CentralIconBaseProps>;
4
+ export default IconArrowSplitUp;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var t in e)s(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of g(e))!w.call(r,o)&&o!==t&&s(r,o,{get:()=>e[o],enumerable:!(p=d(e,o))||p.enumerable});return r};var i=(r,e,t)=>(t=r!=null?f(h(r)):{},l(e||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var V={};x(V,{IconArrowSplitUp:()=>u,default:()=>I});module.exports=B(V);var n=i(require("react"));var a=i(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:o=!0,style:m,...C})=>a.default.createElement("svg",{...C,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...m}},t&&!o&&a.default.createElement("title",null,t),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"arrow-split-up, rules, direction, split"},n.default.createElement("path",{d:"M3.5 9.5V3.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M14.5 3.5H20.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12 12V20.5M12 12L4 4M12 12L20 4",stroke:"currentColor",strokeLinecap:"square"})),I=u;0&&(module.exports={IconArrowSplitUp});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitUp/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitUp: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split-up, rules, direction, split\"\n >\n <path d=\"M3.5 9.5V3.5H9.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M14.5 3.5H20.5V9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12V20.5M12 12L4 4M12 12L20 4\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitUp;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,sBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,2CAEV,EAAAC,QAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxE,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowSplitUp_exports","__export","IconArrowSplitUp","IconArrowSplitUp_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowSplitUp","props","React","CentralIconBase","IconArrowSplitUp_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import p from"react";var s=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...i})=>p.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...l}},n&&!o&&p.createElement("title",null,n),t);var c=t=>e.createElement(s,{...t,ariaLabel:"arrow-split-up, rules, direction, split"},e.createElement("path",{d:"M3.5 9.5V3.5H9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M14.5 3.5H20.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M12 12V20.5M12 12L4 4M12 12L20 4",stroke:"currentColor",strokeLinecap:"square"})),d=c;export{c as IconArrowSplitUp,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconArrowSplitUp/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowSplitUp: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-split-up, rules, direction, split\"\n >\n <path d=\"M3.5 9.5V3.5H9.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M14.5 3.5H20.5V9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 12V20.5M12 12L4 4M12 12L20 4\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitUp;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,2CAEVC,EAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxEA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowSplitUp","props","React","CentralIconBase","IconArrowSplitUp_default"]}
package/README.md CHANGED
@@ -304,9 +304,11 @@ Below is a complete list of available icons:
304
304
  - IconArrowShareLeft
305
305
  - IconArrowShareRight
306
306
  - IconArrowsHide
307
- - IconArrowSplit
308
307
  - IconArrowSplitDown
309
308
  - IconArrowSplitDown1
309
+ - IconArrowSplitLeft
310
+ - IconArrowSplitRight
311
+ - IconArrowSplitUp
310
312
  - IconArrowsRepeat
311
313
  - IconArrowsRepeatCircle
312
314
  - IconArrowsRepeatRightLeft
package/icons/index.d.ts CHANGED
@@ -123,9 +123,11 @@ export type CentralIconName =
123
123
  | "IconArrowShareLeft"
124
124
  | "IconArrowShareRight"
125
125
  | "IconArrowsHide"
126
- | "IconArrowSplit"
127
126
  | "IconArrowSplitDown"
128
127
  | "IconArrowSplitDown1"
128
+ | "IconArrowSplitLeft"
129
+ | "IconArrowSplitRight"
130
+ | "IconArrowSplitUp"
129
131
  | "IconArrowsRepeat"
130
132
  | "IconArrowsRepeatCircle"
131
133
  | "IconArrowsRepeatRightLeft"