ivt 0.0.1

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/README.md ADDED
@@ -0,0 +1,100 @@
1
+ # ivt
2
+
3
+ Uma biblioteca de componentes React da Investtools com suporte a Tailwind CSS e ícones SVG customizados.
4
+
5
+ ## Índice
6
+
7
+ - [Instalação](#instalação)
8
+ - [Pré-requisitos](#pré-requisitos)
9
+ - [Uso](#uso)
10
+ - [Configuração do Tailwind CSS](#configuração-do-tailwind-css)
11
+
12
+ ## Instalação
13
+
14
+ Instale a biblioteca via npm:
15
+
16
+ ```bash
17
+ npm install ivt
18
+ ```
19
+
20
+ Certifique-se de que as dependências necessárias estejam instaladas no seu projeto:
21
+
22
+ ```bash
23
+ npm install react@^19.0.0 react-dom@^19.0.0
24
+ ```
25
+
26
+ ## Pré-requisitos
27
+ - React: Versão 19 ou superior.
28
+ - Tailwind CSS (opcional): Para usar os estilos fornecidos pela biblioteca, configure o Tailwind no seu projeto (veja Configuração do Tailwind CSS (#configuração-do-tailwind-css)).
29
+
30
+ ## Uso
31
+ A biblioteca exporta componentes que podem ser importados diretamente. Confira eles abaixo:
32
+
33
+ [Storybook](https://choosealicense.com/licenses/mit/)
34
+
35
+
36
+ ## Configuração do Tailwind CSS
37
+ A biblioteca usa Tailwind CSS para estilizar os componentes. Para garantir que os estilos funcionem e o IntelliSense do Tailwind no VSCode reconheça as classes customizadas, configure o Tailwind no seu projeto.
38
+
39
+ [Instalação TailwindCSS](https://tailwindcss.com/docs/installation/using-vite)
40
+
41
+ ### Passo 1: Instale o Tailwind
42
+ ```bash
43
+ npm install tailwindcss @tailwindcss/vite
44
+ ```
45
+
46
+ ### Passo 2: Configurar o plugin Vite
47
+ vite.config.ts
48
+ ```bash
49
+ import { defineConfig } from 'vite'
50
+ import tailwindcss from '@tailwindcss/vite'
51
+ export default defineConfig({
52
+ plugins: [
53
+ tailwindcss(),
54
+ ],
55
+ })
56
+ ```
57
+
58
+ ### Passo 3: Importar Tailwind CSS
59
+ index.css
60
+ ```bash
61
+ @import "tailwindcss";
62
+ ```
63
+
64
+ ### Passo 4: Inclua os Estilos
65
+ main.tsx
66
+ ```bash
67
+ import { StrictMode } from "react";
68
+ import { createRoot } from "react-dom/client";
69
+ import { App } from "./App.tsx";
70
+
71
+ import "./index.css";
72
+ import "ivt/dist/index.css";
73
+
74
+ createRoot(document.getElementById("root")!).render(
75
+ <StrictMode>
76
+ <App />
77
+ </StrictMode>
78
+ );
79
+ ```
80
+
81
+ ### Passo 5: Usando o pacote
82
+ App.tsx
83
+ ```bash
84
+ import { Button } from "ivt";
85
+
86
+ export function App() {
87
+ return (
88
+ <div>
89
+ <Button>Investtools</Button>
90
+ </div>
91
+ );
92
+ }
93
+ );
94
+ ```
95
+
96
+
97
+ ### Passo 6: Inicie seu processo de construção
98
+ ```bash
99
+ npm run dev
100
+ ```
package/dist/index.css ADDED
@@ -0,0 +1,7 @@
1
+ /*! tailwindcss v4.0.12 | MIT License | https://tailwindcss.com */@layer theme, base, components, utilities;@layer theme{:host,:root{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-gray-200:oklch(0.928 0.006 264.531);--spacing:0.25rem;--text-xs:0.75rem;--text-xs--line-height:1.33333;--text-sm:0.875rem;--text-sm--line-height:1.42857;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--radius-md:0.375rem;--animate-spin:spin 1s linear infinite;--default-transition-duration:150ms;--default-transition-timing-function:cubic-bezier(0.4,0,0.2,1);--default-font-family:var(--font-sans);--default-font-feature-settings:var(--font-sans--font-feature-settings);--default-font-variation-settings:var(
2
+ --font-sans--font-variation-settings
3
+ );--default-mono-font-family:var(--font-mono);--default-mono-font-feature-settings:var(
4
+ --font-mono--font-feature-settings
5
+ );--default-mono-font-variation-settings:var(
6
+ --font-mono--font-variation-settings
7
+ );--header-height:4.5rem}}@layer base{*,::backdrop,::file-selector-button,:after,:before{border:0 solid;box-sizing:border-box;margin:0;padding:0}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:var(--default-font-feature-settings,normal);-webkit-tap-highlight-color:transparent;font-family:var( --default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" );font-variation-settings:var( --default-font-variation-settings,normal );line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:var( --default-mono-font-feature-settings,normal );font-family:var( --default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace );font-size:1em;font-variation-settings:var( --default-mono-font-variation-settings,normal )}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}menu,ol,ul{list-style:none}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}::file-selector-button,button,input,optgroup,select,textarea{font-feature-settings:inherit;background-color:transparent;border-radius:0;color:inherit;font:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::-moz-placeholder{color:color-mix(in oklab,currentColor 50%,transparent);opacity:1}::placeholder{color:color-mix(in oklab,currentColor 50%,transparent);opacity:1}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}::file-selector-button,button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer utilities{.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;white-space:nowrap;width:1px}.absolute,.sr-only{position:absolute}.ml-2{margin-left:calc(var(--spacing)*2)}.flex{display:flex}.grid{display:grid}.inline-flex{display:inline-flex}.table{display:table}.size-4{height:calc(var(--spacing)*4);width:calc(var(--spacing)*4)}.size-5{height:calc(var(--spacing)*5);width:calc(var(--spacing)*5)}.size-7{height:calc(var(--spacing)*7);width:calc(var(--spacing)*7)}.h-4{height:calc(var(--spacing)*4)}.h-6{height:calc(var(--spacing)*6)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-\[1\.2rem\]{height:1.2rem}.h-fit{height:-moz-fit-content;height:fit-content}.min-h-screen{min-height:100vh}.w-4{width:calc(var(--spacing)*4)}.w-6{width:calc(var(--spacing)*6)}.w-9{width:calc(var(--spacing)*9)}.w-\[1\.2rem\]{width:1.2rem}.w-full{width:100%}.shrink-0{flex-shrink:0}.grow-1{flex-grow:1}.scale-0{--tw-scale-x:0%;--tw-scale-y:0%;--tw-scale-z:0%}.scale-0,.scale-100{scale:var(--tw-scale-x) var(--tw-scale-y)}.scale-100{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%}.rotate-0{rotate:0deg}.rotate-90{rotate:90deg}.transform{transform:var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y)}.animate-spin{animation:var(--animate-spin)}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-evenly{justify-content:space-evenly}.justify-start{justify-content:flex-start}.gap-1{gap:calc(var(--spacing)*1)}.gap-2{gap:calc(var(--spacing)*2)}.gap-4{gap:calc(var(--spacing)*4)}.space-y-2{:where(&>:not(:last-child)){--tw-space-y-reverse:0;margin-block-end:calc(var(--spacing)*2*(1 - var(--tw-space-y-reverse)));margin-block-start:calc(var(--spacing)*2*var(--tw-space-y-reverse))}}.space-x-2{:where(&>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-end:calc(var(--spacing)*2*(1 - var(--tw-space-x-reverse)));margin-inline-start:calc(var(--spacing)*2*var(--tw-space-x-reverse))}}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-input{border-color:var(--input)}.border-primary{border-color:var(--primary)}.bg-accent{background-color:var(--accent)}.bg-background{background-color:var(--background)}.bg-destructive{background-color:var(--destructive)}.bg-primary{background-color:var(--primary)}.bg-secondary{background-color:var(--secondary)}.bg-transparent{background-color:transparent}.p-4{padding:calc(var(--spacing)*4)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-8{padding-inline:calc(var(--spacing)*8)}.py-2{padding-block:calc(var(--spacing)*2)}.py-2\.5{padding-block:calc(var(--spacing)*2.5)}.text-left{text-align:left}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.whitespace-nowrap{white-space:nowrap}.text-accent-foreground{color:var(--accent-foreground)}.text-content{color:var(--content)}.text-destructive-foreground{color:var(--destructive-foreground)}.text-inherit{color:inherit}.text-muted-foreground{color:var(--muted-foreground)}.text-primary{color:var(--primary)}.text-primary-foreground{color:var(--primary-foreground)}.text-secondary-foreground{color:var(--secondary-foreground)}.underline-offset-4{text-underline-offset:4px}.opacity-50{opacity:50%}.opacity-60{opacity:60%}.shadow,.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,rgba(0,0,0,.1)),0 1px 2px -1px var(--tw-shadow-color,rgba(0,0,0,.1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.transition-all{transition-duration:var(--tw-duration,var(--default-transition-duration));transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function))}.transition-colors{transition-duration:var(--tw-duration,var(--default-transition-duration));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function))}.first-letter\:uppercase{&:first-letter{text-transform:uppercase}}.hover\:bg-accent{&:hover{@media (hover:hover){background-color:var(--accent)}}}.hover\:bg-accent\/80{&:hover{@media (hover:hover){background-color:color-mix(in oklab,var(--accent) 80%,transparent)}}}.hover\:bg-body{&:hover{@media (hover:hover){background-color:var(--body)}}}.hover\:bg-destructive\/90{&:hover{@media (hover:hover){background-color:color-mix(in oklab,var(--destructive) 90%,transparent)}}}.hover\:bg-inherit{&:hover{@media (hover:hover){background-color:inherit}}}.hover\:bg-primary\/90{&:hover{@media (hover:hover){background-color:color-mix(in oklab,var(--primary) 90%,transparent)}}}.hover\:bg-secondary\/80{&:hover{@media (hover:hover){background-color:color-mix(in oklab,var(--secondary) 80%,transparent)}}}.hover\:text-accent-foreground{&:hover{@media (hover:hover){color:var(--accent-foreground)}}}.hover\:underline{&:hover{@media (hover:hover){text-decoration-line:underline}}}.focus-visible\:ring-1{&:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus-visible\:ring-ring{&:focus-visible{--tw-ring-color:var(--ring)}}.focus-visible\:outline-none{&:focus-visible{--tw-outline-style:none;outline-style:none}}.disabled\:pointer-events-none{&:disabled{pointer-events:none}}.disabled\:opacity-50{&:disabled{opacity:50%}}.dark\:scale-0,.md\:max-w-\[200px\]{&:is(.dark *){--tw-scale-x:0%;--tw-scale-y:0%;--tw-scale-z:0%;scale:var(--tw-scale-x) var(--tw-scale-y)}}.dark\:scale-100{&:is(.dark *){--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%;scale:var(--tw-scale-x) var(--tw-scale-y)}}.dark\:-rotate-90{&:is(.dark *){rotate:-90deg}}.dark\:rotate-0{&:is(.dark *){rotate:0deg}}}:root{--background:#fff;--foreground:#18181b;--accent:#ebfeff;--accent-foreground:#18181b;--card:#fff;--card-foreground:#09090b;--destructive:#dc2828;--destructive-foreground:#fef1f1;--positive:#16a249;--positive-foreground:#f2fdf5;--warning:#e9590c;--warning-foreground:#fff6eb;--info:#2463eb;--info-foreground:#f0f6ff;--input:#e4e4e7;--muted:#f4f4f5;--muted-foreground:#71717a;--popover:#fff;--popover-foreground:#09090b;--primary:#3b8091;--primary-foreground:#fafafa;--secondary:#f4f4f5;--secondary-foreground:#18181b;--sidebar:#fafafa;--sidebar-foreground:#3f3f46;--sidebar-primary:#18181b;--sidebar-primary-foreground:#fafafa;--sidebar-accent:#f4f4f5;--sidebar-accent-foreground:#18181b;--sidebar-border:#e5e7eb;--sidebar-ring:#a1a1aa;--border:#e4e4e7;--ring:#3f3f46;--chart-1:#2a9d90;--chart-2:#e76e50;--chart-3:#274754;--chart-4:#e8c468;--chart-5:#f4a462;--body:#f1f5f9;--content:#344256;--soft:#fafafa}.dark{--background:#09090b;--foreground:#fafafa;--accent:#083344;--accent-foreground:#fafafa;--card:#09090b;--card-foreground:#fafafa;--destructive:#fa0000;--destructive-foreground:#fef1f1;--positive:#14522d;--positive-foreground:#f2fdf5;--warning:#7d2d12;--warning-foreground:#fff6eb;--info:#1e3b8a;--info-foreground:#f0f6ff;--input:#27272a;--muted:#27272a;--muted-foreground:#a1a1aa;--popover:#09090b;--popover-foreground:#fafafa;--primary:#cdfafe;--primary-foreground:#18181b;--secondary:#27272a;--secondary-foreground:#fafafa;--sidebar:#18181b;--sidebar-foreground:#f4f4f5;--sidebar-primary:#1d4fd7;--sidebar-primary-foreground:#fff;--sidebar-accent:#27272a;--sidebar-accent-foreground:#f4f4f5;--sidebar-border:#27272a;--sidebar-ring:#d4d4d8;--border:#27272a;--ring:#f4f4f5;--chart-1:#2662d9;--chart-2:#e23670;--chart-3:#e88c30;--chart-4:#af57db;--chart-5:#2eb88a;--body:#18181b;--content:#d4d4d8;--soft:#18181b}@layer base{*,::backdrop,::file-selector-button,:after,:before{border-color:var(--color-gray-200,currentColor)}*{border-color:var(--border);outline-color:color-mix(in oklab,var(--ring) 50%,transparent)}body{background-color:var(--background);background:var(--body)!important;color:var(--foreground)}}.top-header{top:var(--header-height)}.amplify-flex img{align-self:center}.amplify-button--primary{--amplify-internal-button-background-color:#3b8091!important}.amplify-button--link{--amplify-internal-button-color:#3b8091!important}[data-amplify-copy]{background-color:#ecfeff!important;color:#3b8091!important;margin:20px!important}.references-header[data-v-4fe5c650]{top:var(--header-height)!important;z-index:999!important}.sidebar[data-v-4fe5c650]{margin-top:.5rem!important}@media (min-width:1000px){.sidebar[data-v-4fe5c650]{margin-top:5rem!important;overflow:hidden!important}.scalar-api-references-standalone-search{margin-bottom:.5rem!important}.introduction-section{padding:4rem 0!important}.references-header[data-v-4fe5c650]{top:0!important;z-index:0!important}}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0) scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1)) rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0) scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1)) rotate(var(--tw-exit-rotate,0))}}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@keyframes spin{to{transform:rotate(1turn)}}
@@ -0,0 +1,30 @@
1
+ import * as class_variance_authority_types from 'class-variance-authority/types';
2
+ import { VariantProps } from 'class-variance-authority';
3
+ import * as React from 'react';
4
+ import { FC, ComponentProps } from 'react';
5
+
6
+ declare const buttonVariants: (props?: ({
7
+ variant?: "default" | "destructive" | "outline" | "secondary" | "selection" | "upload" | "ghost" | "link" | "table" | null | undefined;
8
+ size?: "default" | "sm" | "lg" | "icon" | "normal" | null | undefined;
9
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
10
+ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
11
+ asChild?: boolean;
12
+ }
13
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
14
+
15
+ type IconComponent = FC<ComponentProps<"svg">>;
16
+ interface IconCollection {
17
+ readonly Pending: IconComponent;
18
+ readonly NotAllow: IconComponent;
19
+ readonly Loading: IconComponent;
20
+ readonly Active: IconComponent;
21
+ readonly Filter: IconComponent;
22
+ readonly Building: IconComponent;
23
+ readonly LineChart: IconComponent;
24
+ readonly Table: IconComponent;
25
+ readonly MenuDashboard: IconComponent;
26
+ readonly Command: IconComponent;
27
+ }
28
+ declare const ICON: IconCollection;
29
+
30
+ export { Button, ICON };
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";var e=require("react"),r=require("react/jsx-runtime");function t(e){var r=Object.create(null);return e&&Object.keys(e).forEach((function(t){if("default"!==t){var o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(r,t,o.get?o:{enumerable:!0,get:function(){return e[t]}})}})),r.default=e,Object.freeze(r)}var o=t(e);function n(e,r){if("function"==typeof e)return e(r);null!=e&&(e.current=r)}var l=o.forwardRef(((e,t)=>{const{children:n,...l}=e,s=o.Children.toArray(n),c=s.find(i);if(c){const e=c.props.children,n=s.map((r=>r===c?o.Children.count(e)>1?o.Children.only(null):o.isValidElement(e)?e.props.children:null:r));return r.jsx(a,{...l,ref:t,children:o.isValidElement(e)?o.cloneElement(e,void 0,n):null})}return r.jsx(a,{...l,ref:t,children:n})}));l.displayName="Slot";var a=o.forwardRef(((e,r)=>{const{children:t,...l}=e;if(o.isValidElement(t)){const e=function(e){let r=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,t=r&&"isReactWarning"in r&&r.isReactWarning;if(t)return e.ref;if(r=Object.getOwnPropertyDescriptor(e,"ref")?.get,t=r&&"isReactWarning"in r&&r.isReactWarning,t)return e.props.ref;return e.props.ref||e.ref}(t),a=function(e,r){const t={...r};for(const o in r){const n=e[o],l=r[o];/^on[A-Z]/.test(o)?n&&l?t[o]=(...e)=>{l(...e),n(...e)}:n&&(t[o]=n):"style"===o?t[o]={...n,...l}:"className"===o&&(t[o]=[n,l].filter(Boolean).join(" "))}return{...e,...t}}(l,t.props);return t.type!==o.Fragment&&(a.ref=r?function(...e){return r=>{let t=!1;const o=e.map((e=>{const o=n(e,r);return t||"function"!=typeof o||(t=!0),o}));if(t)return()=>{for(let r=0;r<o.length;r++){const t=o[r];"function"==typeof t?t():n(e[r],null)}}}}(r,e):e),o.cloneElement(t,a)}return o.Children.count(t)>1?o.Children.only(null):null}));a.displayName="SlotClone";var s=({children:e})=>r.jsx(r.Fragment,{children:e});function i(e){return o.isValidElement(e)&&e.type===s}function c(e){var r,t,o="";if("string"==typeof e||"number"==typeof e)o+=e;else if("object"==typeof e)if(Array.isArray(e)){var n=e.length;for(r=0;r<n;r++)e[r]&&(t=c(e[r]))&&(o&&(o+=" "),o+=t)}else for(t in e)e[t]&&(o&&(o+=" "),o+=t);return o}function d(){for(var e,r,t=0,o="",n=arguments.length;t<n;t++)(e=arguments[t])&&(r=c(e))&&(o&&(o+=" "),o+=r);return o}const u=e=>"boolean"==typeof e?`${e}`:0===e?"0":e,p=d,m=e=>{const r=g(e),{conflictingClassGroups:t,conflictingClassGroupModifiers:o}=e;return{getClassGroupId:e=>{const t=e.split("-");return""===t[0]&&1!==t.length&&t.shift(),f(t,r)||h(e)},getConflictingClassGroupIds:(e,r)=>{const n=t[e]||[];return r&&o[e]?[...n,...o[e]]:n}}},f=(e,r)=>{if(0===e.length)return r.classGroupId;const t=e[0],o=r.nextPart.get(t),n=o?f(e.slice(1),o):void 0;if(n)return n;if(0===r.validators.length)return;const l=e.join("-");return r.validators.find((({validator:e})=>e(l)))?.classGroupId},b=/^\[(.+)\]$/,h=e=>{if(b.test(e)){const r=b.exec(e)[1],t=r?.substring(0,r.indexOf(":"));if(t)return"arbitrary.."+t}},g=e=>{const{theme:r,classGroups:t}=e,o={nextPart:new Map,validators:[]};for(const e in t)C(t[e],o,e,r);return o},C=(e,r,t,o)=>{e.forEach((e=>{if("string"!=typeof e){if("function"==typeof e)return w(e)?void C(e(o),r,t,o):void r.validators.push({validator:e,classGroupId:t});Object.entries(e).forEach((([e,n])=>{C(n,v(r,e),t,o)}))}else{(""===e?r:v(r,e)).classGroupId=t}}))},v=(e,r)=>{let t=e;return r.split("-").forEach((e=>{t.nextPart.has(e)||t.nextPart.set(e,{nextPart:new Map,validators:[]}),t=t.nextPart.get(e)})),t},w=e=>e.isThemeGetter,x=e=>{if(e<1)return{get:()=>{},set:()=>{}};let r=0,t=new Map,o=new Map;const n=(n,l)=>{t.set(n,l),r++,r>e&&(r=0,o=t,t=new Map)};return{get(e){let r=t.get(e);return void 0!==r?r:void 0!==(r=o.get(e))?(n(e,r),r):void 0},set(e,r){t.has(e)?t.set(e,r):n(e,r)}}},y=e=>{const{prefix:r,experimentalParseClassName:t}=e;let o=e=>{const r=[];let t,o=0,n=0,l=0;for(let a=0;a<e.length;a++){let s=e[a];if(0===o&&0===n){if(":"===s){r.push(e.slice(l,a)),l=a+1;continue}if("/"===s){t=a;continue}}"["===s?o++:"]"===s?o--:"("===s?n++:")"===s&&n--}const a=0===r.length?e:e.substring(l),s=k(a);return{modifiers:r,hasImportantModifier:s!==a,baseClassName:s,maybePostfixModifierPosition:t&&t>l?t-l:void 0}};if(r){const e=r+":",t=o;o=r=>r.startsWith(e)?t(r.substring(e.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:r,maybePostfixModifierPosition:void 0}}if(t){const e=o;o=r=>t({className:r,parseClassName:e})}return o},k=e=>e.endsWith("!")?e.substring(0,e.length-1):e.startsWith("!")?e.substring(1):e,R=e=>{const r=Object.fromEntries(e.orderSensitiveModifiers.map((e=>[e,!0])));return e=>{if(e.length<=1)return e;const t=[];let o=[];return e.forEach((e=>{"["===e[0]||r[e]?(t.push(...o.sort(),e),o=[]):o.push(e)})),t.push(...o.sort()),t}},z=/\s+/;function E(){let e,r,t=0,o="";for(;t<arguments.length;)(e=arguments[t++])&&(r=L(e))&&(o&&(o+=" "),o+=r);return o}const L=e=>{if("string"==typeof e)return e;let r,t="";for(let o=0;o<e.length;o++)e[o]&&(r=L(e[o]))&&(t&&(t+=" "),t+=r);return t};function M(e,...r){let t,o,n,l=function(s){const i=r.reduce(((e,r)=>r(e)),e());return t=(e=>({cache:x(e.cacheSize),parseClassName:y(e),sortModifiers:R(e),...m(e)}))(i),o=t.cache.get,n=t.cache.set,l=a,a(s)};function a(e){const r=o(e);if(r)return r;const l=((e,r)=>{const{parseClassName:t,getClassGroupId:o,getConflictingClassGroupIds:n,sortModifiers:l}=r,a=[],s=e.trim().split(z);let i="";for(let e=s.length-1;e>=0;e-=1){const r=s[e],{isExternal:c,modifiers:d,hasImportantModifier:u,baseClassName:p,maybePostfixModifierPosition:m}=t(r);if(c){i=r+(i.length>0?" "+i:i);continue}let f=!!m,b=o(f?p.substring(0,m):p);if(!b){if(!f){i=r+(i.length>0?" "+i:i);continue}if(b=o(p),!b){i=r+(i.length>0?" "+i:i);continue}f=!1}const h=l(d).join(":"),g=u?h+"!":h,C=g+b;if(a.includes(C))continue;a.push(C);const v=n(b,f);for(let e=0;e<v.length;++e){const r=v[e];a.push(g+r)}i=r+(i.length>0?" "+i:i)}return i})(e,t);return n(e,l),l}return function(){return l(E.apply(null,arguments))}}const j=e=>{const r=r=>r[e]||[];return r.isThemeGetter=!0,r},V=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,H=/^\((?:(\w[\w-]*):)?(.+)\)$/i,N=/^\d+\/\d+$/,W=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,P=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,Z=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,B=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,O=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,G=e=>N.test(e),I=e=>Boolean(e)&&!Number.isNaN(Number(e)),_=e=>Boolean(e)&&Number.isInteger(Number(e)),A=e=>e.endsWith("%")&&I(e.slice(0,-1)),$=e=>W.test(e),S=()=>!0,q=e=>P.test(e)&&!Z.test(e),D=()=>!1,F=e=>B.test(e),T=e=>O.test(e),J=e=>!Q(e)&&!te(e),K=e=>ce(e,be,D),Q=e=>V.test(e),U=e=>ce(e,he,q),X=e=>ce(e,ge,I),Y=e=>ce(e,ue,D),ee=e=>ce(e,me,T),re=e=>ce(e,D,F),te=e=>H.test(e),oe=e=>de(e,he),ne=e=>de(e,Ce),le=e=>de(e,ue),ae=e=>de(e,be),se=e=>de(e,me),ie=e=>de(e,ve,!0),ce=(e,r,t)=>{const o=V.exec(e);return!!o&&(o[1]?r(o[1]):t(o[2]))},de=(e,r,t=!1)=>{const o=H.exec(e);return!!o&&(o[1]?r(o[1]):t)},ue=e=>"position"===e,pe=new Set(["image","url"]),me=e=>pe.has(e),fe=new Set(["length","size","percentage"]),be=e=>fe.has(e),he=e=>"length"===e,ge=e=>"number"===e,Ce=e=>"family-name"===e,ve=e=>"shadow"===e,we=M((()=>{const e=j("color"),r=j("font"),t=j("text"),o=j("font-weight"),n=j("tracking"),l=j("leading"),a=j("breakpoint"),s=j("container"),i=j("spacing"),c=j("radius"),d=j("shadow"),u=j("inset-shadow"),p=j("drop-shadow"),m=j("blur"),f=j("perspective"),b=j("aspect"),h=j("ease"),g=j("animate"),C=()=>[te,Q,i],v=()=>[G,"full","auto",...C()],w=()=>[_,"none","subgrid",te,Q],x=()=>["auto",{span:["full",_,te,Q]},te,Q],y=()=>[_,"auto",te,Q],k=()=>["auto","min","max","fr",te,Q],R=()=>["auto",...C()],z=()=>[G,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...C()],E=()=>[e,te,Q],L=()=>[A,U],M=()=>["","none","full",c,te,Q],V=()=>["",I,oe,U],H=()=>["","none",m,te,Q],N=()=>["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",te,Q],W=()=>["none",I,te,Q],P=()=>["none",I,te,Q],Z=()=>[I,te,Q],B=()=>[G,"full",...C()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[$],breakpoint:[$],color:[S],container:[$],"drop-shadow":[$],ease:["in","out","in-out"],font:[J],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[$],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[$],shadow:[$],spacing:["px",I],text:[$],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",G,Q,te,b]}],container:["container"],columns:[{columns:[I,Q,te,s]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",Q,te]}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:v()}],"inset-x":[{"inset-x":v()}],"inset-y":[{"inset-y":v()}],start:[{start:v()}],end:[{end:v()}],top:[{top:v()}],right:[{right:v()}],bottom:[{bottom:v()}],left:[{left:v()}],visibility:["visible","invisible","collapse"],z:[{z:[_,"auto",te,Q]}],basis:[{basis:[G,"full","auto",s,...C()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[I,G,"auto","initial","none",Q]}],grow:[{grow:["",I,te,Q]}],shrink:[{shrink:["",I,te,Q]}],order:[{order:[_,"first","last","none",te,Q]}],"grid-cols":[{"grid-cols":w()}],"col-start-end":[{col:x()}],"col-start":[{"col-start":y()}],"col-end":[{"col-end":y()}],"grid-rows":[{"grid-rows":w()}],"row-start-end":[{row:x()}],"row-start":[{"row-start":y()}],"row-end":[{"row-end":y()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":k()}],"auto-rows":[{"auto-rows":k()}],gap:[{gap:C()}],"gap-x":[{"gap-x":C()}],"gap-y":[{"gap-y":C()}],"justify-content":[{justify:["start","end","center","between","around","evenly","stretch","baseline","normal"]}],"justify-items":[{"justify-items":["start","end","center","stretch","normal"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline"]}],"align-items":[{items:["start","end","center","stretch","baseline"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline"]}],"place-items":[{"place-items":["start","end","center","stretch","baseline"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:C()}],px:[{px:C()}],py:[{py:C()}],ps:[{ps:C()}],pe:[{pe:C()}],pt:[{pt:C()}],pr:[{pr:C()}],pb:[{pb:C()}],pl:[{pl:C()}],m:[{m:R()}],mx:[{mx:R()}],my:[{my:R()}],ms:[{ms:R()}],me:[{me:R()}],mt:[{mt:R()}],mr:[{mr:R()}],mb:[{mb:R()}],ml:[{ml:R()}],"space-x":[{"space-x":C()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":C()}],"space-y-reverse":["space-y-reverse"],size:[{size:z()}],w:[{w:[s,"screen",...z()]}],"min-w":[{"min-w":[s,"screen","none",...z()]}],"max-w":[{"max-w":[s,"screen","none","prose",{screen:[a]},...z()]}],h:[{h:["screen",...z()]}],"min-h":[{"min-h":["screen","none",...z()]}],"max-h":[{"max-h":["screen",...z()]}],"font-size":[{text:["base",t,oe,U]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[o,te,X]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",A,Q]}],"font-family":[{font:[ne,Q,r]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[n,te,Q]}],"line-clamp":[{"line-clamp":[I,"none",te,X]}],leading:[{leading:[l,...C()]}],"list-image":[{"list-image":["none",te,Q]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",te,Q]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:E()}],"text-color":[{text:E()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","wavy"]}],"text-decoration-thickness":[{decoration:[I,"from-font","auto",te,U]}],"text-decoration-color":[{decoration:E()}],"underline-offset":[{"underline-offset":[I,"auto",te,Q]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:C()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",te,Q]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",te,Q]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",le,Y]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","space","round"]}]}],"bg-size":[{bg:["auto","cover","contain",ae,K]}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},_,te,Q],radial:["",te,Q],conic:[_,te,Q]},se,ee]}],"bg-color":[{bg:E()}],"gradient-from-pos":[{from:L()}],"gradient-via-pos":[{via:L()}],"gradient-to-pos":[{to:L()}],"gradient-from":[{from:E()}],"gradient-via":[{via:E()}],"gradient-to":[{to:E()}],rounded:[{rounded:M()}],"rounded-s":[{"rounded-s":M()}],"rounded-e":[{"rounded-e":M()}],"rounded-t":[{"rounded-t":M()}],"rounded-r":[{"rounded-r":M()}],"rounded-b":[{"rounded-b":M()}],"rounded-l":[{"rounded-l":M()}],"rounded-ss":[{"rounded-ss":M()}],"rounded-se":[{"rounded-se":M()}],"rounded-ee":[{"rounded-ee":M()}],"rounded-es":[{"rounded-es":M()}],"rounded-tl":[{"rounded-tl":M()}],"rounded-tr":[{"rounded-tr":M()}],"rounded-br":[{"rounded-br":M()}],"rounded-bl":[{"rounded-bl":M()}],"border-w":[{border:V()}],"border-w-x":[{"border-x":V()}],"border-w-y":[{"border-y":V()}],"border-w-s":[{"border-s":V()}],"border-w-e":[{"border-e":V()}],"border-w-t":[{"border-t":V()}],"border-w-r":[{"border-r":V()}],"border-w-b":[{"border-b":V()}],"border-w-l":[{"border-l":V()}],"divide-x":[{"divide-x":V()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":V()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:["solid","dashed","dotted","double","hidden","none"]}],"divide-style":[{divide:["solid","dashed","dotted","double","hidden","none"]}],"border-color":[{border:E()}],"border-color-x":[{"border-x":E()}],"border-color-y":[{"border-y":E()}],"border-color-s":[{"border-s":E()}],"border-color-e":[{"border-e":E()}],"border-color-t":[{"border-t":E()}],"border-color-r":[{"border-r":E()}],"border-color-b":[{"border-b":E()}],"border-color-l":[{"border-l":E()}],"divide-color":[{divide:E()}],"outline-style":[{outline:["solid","dashed","dotted","double","none","hidden"]}],"outline-offset":[{"outline-offset":[I,te,Q]}],"outline-w":[{outline:["",I,oe,U]}],"outline-color":[{outline:[e]}],shadow:[{shadow:["","none",d,ie,re]}],"shadow-color":[{shadow:E()}],"inset-shadow":[{"inset-shadow":["none",te,Q,u]}],"inset-shadow-color":[{"inset-shadow":E()}],"ring-w":[{ring:V()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:E()}],"ring-offset-w":[{"ring-offset":[I,U]}],"ring-offset-color":[{"ring-offset":E()}],"inset-ring-w":[{"inset-ring":V()}],"inset-ring-color":[{"inset-ring":E()}],opacity:[{opacity:[I,te,Q]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],filter:[{filter:["","none",te,Q]}],blur:[{blur:H()}],brightness:[{brightness:[I,te,Q]}],contrast:[{contrast:[I,te,Q]}],"drop-shadow":[{"drop-shadow":["","none",p,te,Q]}],grayscale:[{grayscale:["",I,te,Q]}],"hue-rotate":[{"hue-rotate":[I,te,Q]}],invert:[{invert:["",I,te,Q]}],saturate:[{saturate:[I,te,Q]}],sepia:[{sepia:["",I,te,Q]}],"backdrop-filter":[{"backdrop-filter":["","none",te,Q]}],"backdrop-blur":[{"backdrop-blur":H()}],"backdrop-brightness":[{"backdrop-brightness":[I,te,Q]}],"backdrop-contrast":[{"backdrop-contrast":[I,te,Q]}],"backdrop-grayscale":[{"backdrop-grayscale":["",I,te,Q]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[I,te,Q]}],"backdrop-invert":[{"backdrop-invert":["",I,te,Q]}],"backdrop-opacity":[{"backdrop-opacity":[I,te,Q]}],"backdrop-saturate":[{"backdrop-saturate":[I,te,Q]}],"backdrop-sepia":[{"backdrop-sepia":["",I,te,Q]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":C()}],"border-spacing-x":[{"border-spacing-x":C()}],"border-spacing-y":[{"border-spacing-y":C()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",te,Q]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[I,"initial",te,Q]}],ease:[{ease:["linear","initial",h,te,Q]}],delay:[{delay:[I,te,Q]}],animate:[{animate:["none",g,te,Q]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[f,te,Q]}],"perspective-origin":[{"perspective-origin":N()}],rotate:[{rotate:W()}],"rotate-x":[{"rotate-x":W()}],"rotate-y":[{"rotate-y":W()}],"rotate-z":[{"rotate-z":W()}],scale:[{scale:P()}],"scale-x":[{"scale-x":P()}],"scale-y":[{"scale-y":P()}],"scale-z":[{"scale-z":P()}],"scale-3d":["scale-3d"],skew:[{skew:Z()}],"skew-x":[{"skew-x":Z()}],"skew-y":[{"skew-y":Z()}],transform:[{transform:[te,Q,"","none","gpu","cpu"]}],"transform-origin":[{origin:N()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:B()}],"translate-x":[{"translate-x":B()}],"translate-y":[{"translate-y":B()}],"translate-z":[{"translate-z":B()}],"translate-none":["translate-none"],accent:[{accent:E()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:E()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",te,Q]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":C()}],"scroll-mx":[{"scroll-mx":C()}],"scroll-my":[{"scroll-my":C()}],"scroll-ms":[{"scroll-ms":C()}],"scroll-me":[{"scroll-me":C()}],"scroll-mt":[{"scroll-mt":C()}],"scroll-mr":[{"scroll-mr":C()}],"scroll-mb":[{"scroll-mb":C()}],"scroll-ml":[{"scroll-ml":C()}],"scroll-p":[{"scroll-p":C()}],"scroll-px":[{"scroll-px":C()}],"scroll-py":[{"scroll-py":C()}],"scroll-ps":[{"scroll-ps":C()}],"scroll-pe":[{"scroll-pe":C()}],"scroll-pt":[{"scroll-pt":C()}],"scroll-pr":[{"scroll-pr":C()}],"scroll-pb":[{"scroll-pb":C()}],"scroll-pl":[{"scroll-pl":C()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",te,Q]}],fill:[{fill:["none",...E()]}],"stroke-w":[{stroke:[I,oe,U,X]}],stroke:[{stroke:["none",...E()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["before","after","placeholder","file","marker","selection","first-line","first-letter","backdrop","*","**"]}}));function xe(...e){return we(d(e))}const ye=(ke="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 cursor-pointer",Re={variants:{variant:{default:"bg-primary text-primary-foreground shadow hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",outline:"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",selection:"border border-input bg-accent text-accent-foreground hover:bg-accent/80",upload:"bg-accent text-primary hover:bg-accent/80",ghost:"hover:bg-body",link:"text-primary underline-offset-4 hover:underline",table:"text-inherit"},size:{default:"h-9 px-4 py-2",sm:"h-8 rounded-md px-3",lg:"h-10 rounded-md px-8",icon:"h-9 w-9",normal:"h-fit"}},defaultVariants:{variant:"default",size:"default"}},e=>{var r;if(null==(null==Re?void 0:Re.variants))return p(ke,null==e?void 0:e.class,null==e?void 0:e.className);const{variants:t,defaultVariants:o}=Re,n=Object.keys(t).map((r=>{const n=null==e?void 0:e[r],l=null==o?void 0:o[r];if(null===n)return null;const a=u(n)||u(l);return t[r][a]})),l=e&&Object.entries(e).reduce(((e,r)=>{let[t,o]=r;return void 0===o||(e[t]=o),e}),{}),a=null==Re||null===(r=Re.compoundVariants)||void 0===r?void 0:r.reduce(((e,r)=>{let{class:t,className:n,...a}=r;return Object.entries(a).every((e=>{let[r,t]=e;return Array.isArray(t)?t.includes({...o,...l}[r]):{...o,...l}[r]===t}))?[...e,t,n]:e}),[]);return p(ke,n,a,null==e?void 0:e.class,null==e?void 0:e.className)});var ke,Re;const ze=o.forwardRef((({className:e,variant:r,size:t,asChild:n=!1,...a},s)=>{const i=n?l:"button";return o.createElement(i,{className:xe(ye({variant:r,size:t,className:e})),ref:s,...a})}));ze.displayName="Button";const Ee={Pending:e=>React.createElement("svg",{"aria-label":"Pendente",role:"img",...e,className:we("size-5",e.className),viewBox:"0 0 17 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{clipPath:"url(#clip0_2009_7047)"},React.createElement("path",{d:"M14.0834 2.00001H13.4167V0.666672H12.0834V2.00001H5.41671V0.666672H4.08337V2.00001H3.41671C2.68337 2.00001 2.08337 2.60001 2.08337 3.33334V14C2.08337 14.7333 2.68337 15.3333 3.41671 15.3333H14.0834C14.8167 15.3333 15.4167 14.7333 15.4167 14V3.33334C15.4167 2.60001 14.8167 2.00001 14.0834 2.00001ZM14.0834 14H3.41671V5.33334H14.0834V14Z",fill:"currentColor"})),React.createElement("defs",null,React.createElement("clipPath",{id:"clip0_2009_7047"},React.createElement("rect",{width:16,height:16,fill:"white",transform:"translate(0.75)"})))),NotAllow:e=>React.createElement("svg",{"aria-label":"Não contém",role:"img",...e,className:we("size-5",e.className),viewBox:"0 0 17 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.67804 2.867L5.20804 3.397L13.258 11.447L13.788 11.978L12.728 13.038L12.198 12.508L4.14804 4.458L3.61804 3.928L4.67804 2.867Z",fill:"currentColor"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.75 2.5C7.29131 2.5 5.89236 3.07946 4.86091 4.11091C3.82946 5.14236 3.25 6.54131 3.25 8C3.25 9.45869 3.82946 10.8576 4.86091 11.8891C5.89236 12.9205 7.29131 13.5 8.75 13.5C10.2087 13.5 11.6076 12.9205 12.6391 11.8891C13.6705 10.8576 14.25 9.45869 14.25 8C14.25 6.54131 13.6705 5.14236 12.6391 4.11091C11.6076 3.07946 10.2087 2.5 8.75 2.5ZM1.75 8C1.75 6.14348 2.4875 4.36301 3.80025 3.05025C5.11301 1.7375 6.89348 1 8.75 1C10.6065 1 12.387 1.7375 13.6997 3.05025C15.0125 4.36301 15.75 6.14348 15.75 8C15.75 9.85652 15.0125 11.637 13.6997 12.9497C12.387 14.2625 10.6065 15 8.75 15C6.89348 15 5.11301 14.2625 3.80025 12.9497C2.4875 11.637 1.75 9.85652 1.75 8Z",fill:"currentColor"})),Loading:e=>React.createElement("svg",{"aria-label":"Carregando",role:"img",...e,className:we("size-5",e.className),viewBox:"0 0 17 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{clipPath:"url(#clip0_2012_1926)"},React.createElement("path",{d:"M8.75 1.33333V3.99999",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M8.75 12V14.6667",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M4.03662 3.28667L5.92329 5.17333",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M11.5767 10.8267L13.4633 12.7133",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M2.08337 8H4.75004",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M12.75 8H15.4167",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M4.03662 12.7133L5.92329 10.8267",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M11.5767 5.17333L13.4633 3.28667",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),React.createElement("defs",null,React.createElement("clipPath",{id:"clip0_2012_1926"},React.createElement("rect",{width:16,height:16,fill:"white",transform:"translate(0.75)"})))),Active:e=>React.createElement("svg",{"aria-label":"Ativo",role:"img",...e,className:we("size-5",e.className),viewBox:"0 0 17 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M6.61346 10.5835L3.83346 7.8035L2.88696 8.7435L6.61346 12.47L14.6135 4.47L13.6735 3.53L6.61346 10.5835Z",fill:"currentColor"})),Filter:e=>React.createElement("svg",{"aria-label":"Filtro",role:"img",...e,className:we("size-5",e.className),viewBox:"0 0 17 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M7.4165 12H10.083V10.6665H7.4165V12ZM2.75 4V5.3335H14.75V4H2.75ZM4.75 8.6665H12.75V7.333H4.75V8.6665Z",fill:"currentColor"})),Building:e=>React.createElement("svg",{"aria-label":"Building",role:"img",...e,className:we("size-5",e.className),viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{opacity:"0.5",clipPath:"url(#clip0_2045_7141)"},React.createElement("path",{d:"M4 14.6667V2.66671C4 2.48671 4 2.30004 4.04667 2.12004C4.08747 1.94046 4.17782 1.77592 4.30745 1.64511C4.43708 1.5143 4.60079 1.42247 4.78 1.38004C4.97333 1.33337 5.82 1.33337 6 1.33337H10.6667C10.8467 1.33337 11.0333 1.33337 11.2133 1.38004C11.3929 1.42085 11.5575 1.51119 11.6883 1.64082C11.8191 1.77045 11.9109 1.93417 11.9533 2.11337C12 2.30004 12 2.48671 12 2.66671V14.6667H4Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M1.33333 9.33333V13.3333C1.33333 14.0667 1.93333 14.6667 2.66667 14.6667H4V8H2.66667C2.48667 8 2.3 8 2.12 8.04667C1.94 8.09333 1.77333 8.18 1.64 8.31333C1.51333 8.44 1.42667 8.60667 1.38 8.78667C1.34237 8.96633 1.3267 9.14989 1.33333 9.33333Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M13.88 6.04668C13.7003 6.00905 13.5168 5.99338 13.3333 6.00002H12V14.6667H13.3333C13.687 14.6667 14.0261 14.5262 14.2761 14.2762C14.5262 14.0261 14.6667 13.687 14.6667 13.3334V7.33335C14.6667 7.14668 14.6667 6.96668 14.62 6.78668C14.5733 6.60668 14.4867 6.44002 14.3533 6.30668C14.2267 6.18002 14.06 6.09335 13.88 6.04668Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M6.66667 4H9.33333",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M6.66667 6.66663H9.33333",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M6.66667 9.33337H9.33333",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M6.66667 12H9.33333",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),React.createElement("defs",null,React.createElement("clipPath",{id:"clip0_2045_7141"},React.createElement("rect",{width:16,height:16,fill:"white"})))),LineChart:e=>React.createElement("svg",{"aria-label":"Linhas",role:"img",...e,className:we("size-5",e.className),viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M2 2V14H14",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M12.6667 6L9.33333 9.33333L6.66667 6.66667L4.66667 8.66667",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),Table:e=>React.createElement("svg",{"aria-label":"Tabela",role:"img",...e,className:we("size-5",e.className),viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M6 2H3.33333C2.97971 2 2.64057 2.14048 2.39052 2.39052C2.14048 2.64057 2 2.97971 2 3.33333V6M6 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V6M6 2V14M2 6V12.6667C2 13.0203 2.14048 13.3594 2.39052 13.6095C2.64057 13.8595 2.97971 14 3.33333 14H6M2 6H14M14 6V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H6",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),MenuDashboard:e=>React.createElement("svg",{"aria-label":"Aplicativos",role:"img",...e,className:we("size-4",e.className),viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.93298 1.06664C2.9507 1.06665 2.96859 1.06667 2.98667 1.06667H5.54667C5.56474 1.06667 5.58264 1.06665 5.60035 1.06664C5.84403 1.06641 6.0541 1.0662 6.24018 1.11088C6.82522 1.25133 7.282 1.70812 7.42246 2.29316C7.46713 2.47924 7.46693 2.68931 7.4667 2.93299C7.46669 2.9507 7.46667 2.9686 7.46667 2.98667V5.54667C7.46667 5.56475 7.46669 5.58264 7.4667 5.60036C7.46693 5.84404 7.46713 6.0541 7.42246 6.24018C7.282 6.82522 6.82522 7.28201 6.24018 7.42246C6.0541 7.46714 5.84403 7.46694 5.60035 7.46671C5.58264 7.46669 5.56474 7.46667 5.54667 7.46667H2.98667C2.96859 7.46667 2.9507 7.46669 2.93298 7.46671C2.6893 7.46694 2.47924 7.46714 2.29316 7.42246C1.70812 7.28201 1.25133 6.82522 1.11088 6.24018C1.0662 6.0541 1.0664 5.84404 1.06663 5.60036C1.06665 5.58264 1.06667 5.56475 1.06667 5.54667V2.98667C1.06667 2.9686 1.06665 2.9507 1.06663 2.93299C1.0664 2.68931 1.0662 2.47924 1.11088 2.29316C1.25133 1.70812 1.70812 1.25133 2.29316 1.11088C2.47924 1.0662 2.6893 1.06641 2.93298 1.06664ZM2.98667 2.13334C2.65836 2.13334 2.58807 2.13705 2.54216 2.14807C2.34715 2.19489 2.19489 2.34715 2.14807 2.54217C2.13705 2.58807 2.13333 2.65837 2.13333 2.98667V5.54667C2.13333 5.87497 2.13705 5.94527 2.14807 5.99118C2.19489 6.18619 2.34715 6.33845 2.54216 6.38527C2.58807 6.39629 2.65836 6.4 2.98667 6.4H5.54667C5.87497 6.4 5.94526 6.39629 5.99117 6.38527C6.18618 6.33845 6.33845 6.18619 6.38527 5.99118C6.39629 5.94527 6.4 5.87497 6.4 5.54667V2.98667C6.4 2.65837 6.39629 2.58807 6.38527 2.54217C6.33845 2.34715 6.18618 2.19489 5.99117 2.14807C5.94526 2.13705 5.87497 2.13334 5.54667 2.13334H2.98667Z",fill:"currentColor"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.3996 1.06664C10.4174 1.06665 10.4353 1.06667 10.4533 1.06667H13.0133C13.0314 1.06667 13.0493 1.06665 13.067 1.06664C13.3107 1.06641 13.5208 1.0662 13.7068 1.11088C14.2919 1.25133 14.7487 1.70812 14.8891 2.29316C14.9338 2.47924 14.9336 2.68931 14.9334 2.93299C14.9334 2.9507 14.9333 2.9686 14.9333 2.98667V5.54667C14.9333 5.56475 14.9334 5.58264 14.9334 5.60036C14.9336 5.84404 14.9338 6.0541 14.8891 6.24018C14.7487 6.82522 14.2919 7.28201 13.7068 7.42246C13.5208 7.46714 13.3107 7.46694 13.067 7.46671C13.0493 7.46669 13.0314 7.46667 13.0133 7.46667H10.4533C10.4353 7.46667 10.4174 7.46669 10.3997 7.46671C10.156 7.46694 9.94591 7.46714 9.75982 7.42246C9.17478 7.28201 8.718 6.82522 8.57754 6.24018C8.53287 6.0541 8.53307 5.84404 8.5333 5.60036C8.53332 5.58264 8.53334 5.56475 8.53334 5.54667V2.98667C8.53334 2.9686 8.53332 2.9507 8.5333 2.93299C8.53307 2.68931 8.53287 2.47924 8.57754 2.29316C8.718 1.70812 9.17478 1.25133 9.75982 1.11088C9.94591 1.0662 10.156 1.06641 10.3996 1.06664ZM10.4533 2.13334C10.125 2.13334 10.0547 2.13705 10.0088 2.14807C9.81382 2.19489 9.66156 2.34715 9.61474 2.54217C9.60372 2.58807 9.6 2.65837 9.6 2.98667V5.54667C9.6 5.87497 9.60372 5.94527 9.61474 5.99118C9.66156 6.18619 9.81382 6.33845 10.0088 6.38527C10.0547 6.39629 10.125 6.4 10.4533 6.4H13.0133C13.3416 6.4 13.4119 6.39629 13.4578 6.38527C13.6529 6.33845 13.8051 6.18619 13.8519 5.99118C13.863 5.94527 13.8667 5.87497 13.8667 5.54667V2.98667C13.8667 2.65837 13.863 2.58807 13.8519 2.54217C13.8051 2.34715 13.6529 2.19489 13.4578 2.14807C13.4119 2.13705 13.3416 2.13334 13.0133 2.13334H10.4533Z",fill:"currentColor"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.93298 8.5333C2.9507 8.53332 2.96859 8.53334 2.98667 8.53334H5.54667C5.56474 8.53334 5.58264 8.53332 5.60035 8.5333C5.84403 8.53307 6.0541 8.53287 6.24018 8.57755C6.82522 8.718 7.282 9.17479 7.42246 9.75983C7.46713 9.94591 7.46693 10.156 7.4667 10.3997C7.46669 10.4174 7.46667 10.4353 7.46667 10.4533V13.0133C7.46667 13.0314 7.46669 13.0493 7.4667 13.067C7.46693 13.3107 7.46713 13.5208 7.42246 13.7069C7.282 14.2919 6.82522 14.7487 6.24018 14.8891C6.0541 14.9338 5.84403 14.9336 5.60035 14.9334C5.58264 14.9334 5.56474 14.9333 5.54667 14.9333H2.98667C2.96859 14.9333 2.9507 14.9334 2.93298 14.9334C2.6893 14.9336 2.47924 14.9338 2.29316 14.8891C1.70812 14.7487 1.25133 14.2919 1.11088 13.7069C1.0662 13.5208 1.0664 13.3107 1.06663 13.067C1.06665 13.0493 1.06667 13.0314 1.06667 13.0133V10.4533C1.06667 10.4353 1.06665 10.4174 1.06663 10.3997C1.0664 10.156 1.0662 9.94591 1.11088 9.75983C1.25133 9.17479 1.70812 8.718 2.29316 8.57755C2.47924 8.53287 2.6893 8.53307 2.93298 8.5333ZM2.98667 9.60001C2.65836 9.60001 2.58807 9.60372 2.54216 9.61474C2.34715 9.66156 2.19489 9.81382 2.14807 10.0088C2.13705 10.0547 2.13333 10.125 2.13333 10.4533V13.0133C2.13333 13.3416 2.13705 13.4119 2.14807 13.4578C2.19489 13.6529 2.34715 13.8051 2.54216 13.8519C2.58807 13.863 2.65836 13.8667 2.98667 13.8667H5.54667C5.87497 13.8667 5.94526 13.863 5.99117 13.8519C6.18618 13.8051 6.33845 13.6529 6.38527 13.4578C6.39629 13.4119 6.4 13.3416 6.4 13.0133V10.4533C6.4 10.125 6.39629 10.0547 6.38527 10.0088C6.33845 9.81382 6.18618 9.66156 5.99117 9.61474C5.94526 9.60372 5.87497 9.60001 5.54667 9.60001H2.98667Z",fill:"currentColor"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.3996 8.5333C10.4174 8.53332 10.4353 8.53334 10.4533 8.53334H13.0133C13.0314 8.53334 13.0493 8.53332 13.067 8.5333C13.3107 8.53307 13.5208 8.53287 13.7068 8.57755C14.2919 8.718 14.7487 9.17479 14.8891 9.75983C14.9338 9.94591 14.9336 10.156 14.9334 10.3997C14.9334 10.4174 14.9333 10.4353 14.9333 10.4533V13.0133C14.9333 13.0314 14.9334 13.0493 14.9334 13.067C14.9336 13.3107 14.9338 13.5208 14.8891 13.7069C14.7487 14.2919 14.2919 14.7487 13.7068 14.8891C13.5208 14.9338 13.3107 14.9336 13.067 14.9334C13.0493 14.9334 13.0314 14.9333 13.0133 14.9333H10.4533C10.4353 14.9333 10.4174 14.9334 10.3997 14.9334C10.156 14.9336 9.94591 14.9338 9.75982 14.8891C9.17478 14.7487 8.718 14.2919 8.57754 13.7069C8.53287 13.5208 8.53307 13.3107 8.5333 13.067C8.53332 13.0493 8.53334 13.0314 8.53334 13.0133V10.4533C8.53334 10.4353 8.53332 10.4174 8.5333 10.3997C8.53307 10.156 8.53287 9.94591 8.57754 9.75983C8.718 9.17479 9.17478 8.718 9.75982 8.57755C9.94591 8.53287 10.156 8.53307 10.3996 8.5333ZM10.4533 9.60001C10.125 9.60001 10.0547 9.60372 10.0088 9.61474C9.81382 9.66156 9.66156 9.81382 9.61474 10.0088C9.60372 10.0547 9.6 10.125 9.6 10.4533V13.0133C9.6 13.3416 9.60372 13.4119 9.61474 13.4578C9.66156 13.6529 9.81382 13.8051 10.0088 13.8519C10.0547 13.863 10.125 13.8667 10.4533 13.8667H13.0133C13.3416 13.8667 13.4119 13.863 13.4578 13.8519C13.6529 13.8051 13.8051 13.6529 13.8519 13.4578C13.863 13.4119 13.8667 13.3416 13.8667 13.0133V10.4533C13.8667 10.125 13.863 10.0547 13.8519 10.0088C13.8051 9.81382 13.6529 9.66156 13.4578 9.61474C13.4119 9.60372 13.3416 9.60001 13.0133 9.60001H10.4533Z",fill:"currentColor"})),Command:e=>React.createElement("svg",{"aria-label":"IconCommand",role:"img",...e,className:we("size-4",e.className),viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M10 4V12C10 12.3956 10.1173 12.7822 10.3371 13.1111C10.5568 13.44 10.8692 13.6964 11.2346 13.8478C11.6001 13.9991 12.0022 14.0387 12.3902 13.9616C12.7781 13.8844 13.1345 13.6939 13.4142 13.4142C13.6939 13.1345 13.8844 12.7781 13.9616 12.3902C14.0387 12.0022 13.9991 11.6001 13.8478 11.2346C13.6964 10.8692 13.44 10.5568 13.1111 10.3371C12.7822 10.1173 12.3956 10 12 10H4C3.60444 10 3.21776 10.1173 2.88886 10.3371C2.55996 10.5568 2.30362 10.8692 2.15224 11.2346C2.00087 11.6001 1.96126 12.0022 2.03843 12.3902C2.1156 12.7781 2.30608 13.1345 2.58579 13.4142C2.86549 13.6939 3.22186 13.8844 3.60982 13.9616C3.99778 14.0387 4.39992 13.9991 4.76537 13.8478C5.13082 13.6964 5.44318 13.44 5.66294 13.1111C5.8827 12.7822 6 12.3956 6 12V4C6 3.60444 5.8827 3.21776 5.66294 2.88886C5.44318 2.55996 5.13082 2.30362 4.76537 2.15224C4.39992 2.00087 3.99778 1.96126 3.60982 2.03843C3.22186 2.1156 2.86549 2.30608 2.58579 2.58579C2.30608 2.86549 2.1156 3.22186 2.03843 3.60982C1.96126 3.99778 2.00087 4.39992 2.15224 4.76537C2.30362 5.13082 2.55996 5.44318 2.88886 5.66294C3.21776 5.8827 3.60444 6 4 6H12C12.3956 6 12.7822 5.8827 13.1111 5.66294C13.44 5.44318 13.6964 5.13082 13.8478 4.76537C13.9991 4.39992 14.0387 3.99778 13.9616 3.60982C13.8844 3.22186 13.6939 2.86549 13.4142 2.58579C13.1345 2.30608 12.7781 2.1156 12.3902 2.03843C12.0022 1.96126 11.6001 2.00087 11.2346 2.15224C10.8692 2.30362 10.5568 2.55996 10.3371 2.88886C10.1173 3.21776 10 3.60444 10 4Z",stroke:"currentColor",strokeWidth:"1.33",strokeLinecap:"round",strokeLinejoin:"round"}))};exports.Button=ze,exports.ICON=Ee;
2
+ //# sourceMappingURL=index.js.map