ies2-aulapp-ui-kit 0.1.0

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,79 @@
1
+ <img src="https://vitejs.dev/logo.svg" width="40" align="left" />
2
+
3
+ # Aulapp UI Kit
4
+
5
+ Kit de componentes React construído com **Vite (library mode)**, **shadcn/ui**, **Tailwind CSS 4** e **Iconsax**. O objetivo é publicar este pacote no npm e reutilizá-lo em múltiplas aplicações, com Storybook integrado para desenvolvimento e documentação isolada.
6
+
7
+ ## Stack
8
+
9
+ - React 19 + TypeScript
10
+ - Vite 7 configurado para build de biblioteca (ES/CJS + declarações `.d.ts`)
11
+ - Tailwind CSS 4 + `@tailwindcss/postcss` + tokens do shadcn/ui
12
+ - shadcn/ui + Radix UI para primitives
13
+ - Iconsax como biblioteca de ícones padrão
14
+ - Storybook 10 (builder Vite) + Vitest + Playwright para rodar histórias como testes
15
+
16
+ ## Pré-requisitos
17
+
18
+ - Node.js 20+
19
+ - pnpm 10 (`corepack enable pnpm` facilita o setup)
20
+
21
+ ## Instalação
22
+
23
+ ```bash
24
+ pnpm install
25
+ ```
26
+
27
+ ## Scripts principais
28
+
29
+ | Comando | Descrição |
30
+ | ---------------------- | --------------------------------------------------------------------------------------- |
31
+ | `pnpm dev` | Playground local (`src/App.tsx`) para inspecionar o kit em tempo real. |
32
+ | `pnpm build` | Gera os artefatos em `dist/` (ESM, CJS e tipos) prontos para publicação no npm. |
33
+ | `pnpm storybook` | Sobe o Storybook em `http://localhost:6006` com Tailwind e Iconsax carregados. |
34
+ | `pnpm storybook:build` | Exporta a documentação estática para `storybook-static/`. |
35
+ | `pnpm test` | Executa o Vitest com o addon do Storybook (cada story roda em Chromium via Playwright). |
36
+ | `pnpm storybook:test` | Atalho direto para o projeto de testes do Storybook. |
37
+ | `pnpm lint` | Executa ESLint, incluindo regras específicas para `.stories`. |
38
+
39
+ ## Estrutura
40
+
41
+ ```
42
+ src/
43
+ ├─ components/
44
+ │ └─ ui/
45
+ │ ├─ button.tsx # componente base usando shadcn/ui + Radix Slot
46
+ │ └─ button.stories.tsx # documentação e testes isolados (Storybook)
47
+ ├─ lib/utils.ts # helper `cn` (clsx + tailwind-merge)
48
+ ├─ index.ts # ponto de entrada do pacote (reexporta os componentes públicos)
49
+ └─ App.tsx # showcase local consumindo o UI Kit
50
+ ```
51
+
52
+ ## Tailwind + Tokens + Iconsax
53
+
54
+ - Tailwind 4 roda através de `@tailwindcss/postcss`, configurado em `postcss.config.cjs`.
55
+ - O tema (`tailwind.config.ts`) replica os tokens do shadcn e já define variantes personalizadas.
56
+ - `src/index.css` contém as variáveis CSS (modo claro/escuro) e `@plugin "tailwindcss-animate"` para animações.
57
+ - `iconsax-react` é a biblioteca oficial de ícones; exemplos de uso aparecem no `App.tsx` e nas stories.
58
+
59
+ ## Publicação no npm
60
+
61
+ 1. Ajuste `package.json` (nome/versão, descrição, palavras-chave, etc.).
62
+ 2. Gere o build: `pnpm run build`.
63
+ 3. (Opcional) Gere a doc estática: `pnpm run storybook:build` e publique em algum CDN.
64
+ 4. Faça login no npm (`npm login`) e rode `npm publish --access public`.
65
+
66
+ > Importante: apenas os módulos exportados por `src/index.ts` serão incluídos no pacote. Sempre reexporte novos componentes ali.
67
+
68
+ ## Contribuição
69
+
70
+ 1. Abra uma issue descrevendo o componente ou ajuste desejado.
71
+ 2. Crie uma branch `feat/<nome>` ou `fix/<nome>`.
72
+ 3. Toda alteração deve incluir stories/variantes e passar por `pnpm lint`, `pnpm test` e `pnpm build`.
73
+ 4. Envie o PR com screenshots/GIFs atualizados do Storybook.
74
+
75
+ ## Próximos passos sugeridos
76
+
77
+ - Adicionar tokens de fundação (cores, tipografia, espaçamentos) como páginas dedicadas no Storybook.
78
+ - Automatizar publicação (GitHub Actions + npm) e deploy do Storybook (Vercel/Netlify).
79
+ - Expandir a galeria usando `pnpm dlx shadcn@latest add <componente>` para inputs, forms, banners, etc.
package/dist/App.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare function App(): import("react/jsx-runtime").JSX.Element;
2
+ export default App;
@@ -0,0 +1 @@
1
+ export declare function BadgesPanel(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function CallToActionPanel(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function ComponentsPanel(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function HeroBanner(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from 'react';
3
+ declare const badgeVariants: (props?: ({
4
+ variant?: "secondary" | "outline" | "default" | "subtle" | null | undefined;
5
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
6
+ export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
7
+ }
8
+ declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLDivElement>>;
9
+ export { Badge, badgeVariants };
@@ -0,0 +1,15 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from 'react';
3
+ declare const buttonVariants: (props?: ({
4
+ variant?: "primary" | "secondary" | "neutral" | "ghost" | "outline" | "danger" | "icon" | "link" | null | undefined;
5
+ size?: "icon" | "sm" | "md" | "lg" | null | undefined;
6
+ shape?: "pill" | "soft" | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
8
+ export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
9
+ asChild?: boolean;
10
+ shine?: boolean;
11
+ icon?: React.ReactNode;
12
+ iconPosition?: 'left' | 'right';
13
+ }
14
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
15
+ export { Button, buttonVariants };
@@ -0,0 +1,15 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { ButtonProps } from './button';
3
+ declare const meta: Meta<ButtonProps>;
4
+ export default meta;
5
+ type Story = StoryObj<ButtonProps>;
6
+ export declare const Primary: Story;
7
+ export declare const Secondary: Story;
8
+ export declare const Neutral: Story;
9
+ export declare const Ghost: Story;
10
+ export declare const Danger: Story;
11
+ export declare const SoftRounded: Story;
12
+ export declare const Outline: Story;
13
+ export declare const WithIcon: Story;
14
+ export declare const IconRight: Story;
15
+ export declare const IconOnly: Story;
@@ -0,0 +1,54 @@
1
+ declare const APPEARANCE_LABELS: {
2
+ readonly primary: "Primary";
3
+ readonly solid: "Colorido sólido";
4
+ readonly white: "Cartão branco";
5
+ readonly ghost: "Ghost colorido";
6
+ };
7
+ export type ResourceBadgeAppearance = keyof typeof APPEARANCE_LABELS;
8
+ declare const RESOURCE_TYPES: {
9
+ conteudo: {
10
+ label: string;
11
+ Icon: import('iconsax-react').Icon;
12
+ };
13
+ avaliacao: {
14
+ label: string;
15
+ Icon: import('iconsax-react').Icon;
16
+ };
17
+ lista: {
18
+ label: string;
19
+ Icon: import('iconsax-react').Icon;
20
+ };
21
+ gamificada: {
22
+ label: string;
23
+ Icon: import('iconsax-react').Icon;
24
+ };
25
+ simulado: {
26
+ label: string;
27
+ Icon: import('iconsax-react').Icon;
28
+ };
29
+ material: {
30
+ label: string;
31
+ Icon: import('iconsax-react').Icon;
32
+ };
33
+ concluido: {
34
+ label: string;
35
+ Icon: import('iconsax-react').Icon;
36
+ onlyAppearances: "ghost"[];
37
+ };
38
+ };
39
+ export type ResourceBadgeVariant = keyof typeof RESOURCE_TYPES;
40
+ export interface ResourceBadgeProps extends React.HTMLAttributes<HTMLDivElement> {
41
+ variant: ResourceBadgeVariant;
42
+ appearance?: ResourceBadgeAppearance;
43
+ }
44
+ export declare function ResourceBadge({ variant, appearance, className, style, ...props }: ResourceBadgeProps): import("react/jsx-runtime").JSX.Element;
45
+ export declare const resourceBadges: {
46
+ variant: "conteudo" | "avaliacao" | "lista" | "gamificada" | "simulado" | "material" | "concluido";
47
+ label: string;
48
+ onlyAppearances: ("primary" | "ghost" | "solid" | "white")[] | undefined;
49
+ }[];
50
+ export declare const resourceBadgeAppearances: {
51
+ appearance: "primary" | "ghost" | "solid" | "white";
52
+ label: "Primary" | "Colorido sólido" | "Cartão branco" | "Ghost colorido";
53
+ }[];
54
+ export {};
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react-vite';
2
+ import { ResourceBadgeAppearance, ResourceBadgeVariant } from './resource-badge';
3
+ declare const meta: Meta<{
4
+ variant: ResourceBadgeVariant;
5
+ appearance: ResourceBadgeAppearance;
6
+ }>;
7
+ export default meta;
8
+ type Story = StoryObj<{
9
+ variant: ResourceBadgeVariant;
10
+ appearance: ResourceBadgeAppearance;
11
+ }>;
12
+ export declare const Playground: Story;
13
+ export declare const AllBadges: Story;
14
+ export declare const ByAppearance: Story;
@@ -0,0 +1,7 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react");function Nr(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const r in e)if(r!=="default"){const o=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,o.get?o:{enumerable:!0,get:()=>e[r]})}}return t.default=e,Object.freeze(t)}const D=Nr(n);function Dr(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var ye={exports:{}},pe={};var He;function Yr(){if(He)return pe;He=1;var e=Symbol.for("react.transitional.element"),t=Symbol.for("react.fragment");function r(o,c,i){var s=null;if(i!==void 0&&(s=""+i),c.key!==void 0&&(s=""+c.key),"key"in c){i={};for(var l in c)l!=="key"&&(i[l]=c[l])}else i=c;return c=i.ref,{$$typeof:e,type:o,key:s,ref:c!==void 0?c:null,props:i}}return pe.Fragment=t,pe.jsx=r,pe.jsxs=r,pe}var he={};var Ge;function Hr(){return Ge||(Ge=1,process.env.NODE_ENV!=="production"&&(function(){function e(a){if(a==null)return null;if(typeof a=="function")return a.$$typeof===te?null:a.displayName||a.name||null;if(typeof a=="string")return a;switch(a){case P:return"Fragment";case U:return"Profiler";case Z:return"StrictMode";case G:return"Suspense";case K:return"SuspenseList";case ie:return"Activity"}if(typeof a=="object")switch(typeof a.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),a.$$typeof){case C:return"Portal";case $:return a.displayName||"Context";case V:return(a._context.displayName||"Context")+".Consumer";case v:var m=a.render;return a=a.displayName,a||(a=m.displayName||m.name||"",a=a!==""?"ForwardRef("+a+")":"ForwardRef"),a;case T:return m=a.displayName||null,m!==null?m:e(a.type)||"Memo";case q:m=a._payload,a=a._init;try{return e(a(m))}catch{}}return null}function t(a){return""+a}function r(a){try{t(a);var m=!1}catch{m=!0}if(m){m=console;var p=m.error,g=typeof Symbol=="function"&&Symbol.toStringTag&&a[Symbol.toStringTag]||a.constructor.name||"Object";return p.call(m,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",g),t(a)}}function o(a){if(a===P)return"<>";if(typeof a=="object"&&a!==null&&a.$$typeof===q)return"<...>";try{var m=e(a);return m?"<"+m+">":"<...>"}catch{return"<...>"}}function c(){var a=X.A;return a===null?null:a.getOwner()}function i(){return Error("react-stack-top-frame")}function s(a){if(ne.call(a,"key")){var m=Object.getOwnPropertyDescriptor(a,"key").get;if(m&&m.isReactWarning)return!1}return a.key!==void 0}function l(a,m){function p(){W||(W=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",m))}p.isReactWarning=!0,Object.defineProperty(a,"key",{get:p,configurable:!0})}function d(){var a=e(this.type);return Y[a]||(Y[a]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),a=this.props.ref,a!==void 0?a:null}function f(a,m,p,g,O,S){var h=p.ref;return a={$$typeof:F,type:a,key:m,props:p,_owner:g},(h!==void 0?h:null)!==null?Object.defineProperty(a,"ref",{enumerable:!1,get:d}):Object.defineProperty(a,"ref",{enumerable:!1,value:null}),a._store={},Object.defineProperty(a._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(a,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(a,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:O}),Object.defineProperty(a,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:S}),Object.freeze&&(Object.freeze(a.props),Object.freeze(a)),a}function y(a,m,p,g,O,S){var h=m.children;if(h!==void 0)if(g)if(Q(h)){for(g=0;g<h.length;g++)w(h[g]);Object.freeze&&Object.freeze(h)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else w(h);if(ne.call(m,"key")){h=e(a);var R=Object.keys(m).filter(function(_){return _!=="key"});g=0<R.length?"{key: someKey, "+R.join(": ..., ")+": ...}":"{key: someKey}",u[h+g]||(R=0<R.length?"{"+R.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
2
+ let props = %s;
3
+ <%s {...props} />
4
+ React keys must be passed directly to JSX without using spread:
5
+ let props = %s;
6
+ <%s key={someKey} {...props} />`,g,h,R,h),u[h+g]=!0)}if(h=null,p!==void 0&&(r(p),h=""+p),s(m)&&(r(m.key),h=""+m.key),"key"in m){p={};for(var L in m)L!=="key"&&(p[L]=m[L])}else p=m;return h&&l(p,typeof a=="function"?a.displayName||a.name||"Unknown":a),f(a,h,p,c(),O,S)}function w(a){M(a)?a._store&&(a._store.validated=1):typeof a=="object"&&a!==null&&a.$$typeof===q&&(a._payload.status==="fulfilled"?M(a._payload.value)&&a._payload.value._store&&(a._payload.value._store.validated=1):a._store&&(a._store.validated=1))}function M(a){return typeof a=="object"&&a!==null&&a.$$typeof===F}var j=n,F=Symbol.for("react.transitional.element"),C=Symbol.for("react.portal"),P=Symbol.for("react.fragment"),Z=Symbol.for("react.strict_mode"),U=Symbol.for("react.profiler"),V=Symbol.for("react.consumer"),$=Symbol.for("react.context"),v=Symbol.for("react.forward_ref"),G=Symbol.for("react.suspense"),K=Symbol.for("react.suspense_list"),T=Symbol.for("react.memo"),q=Symbol.for("react.lazy"),ie=Symbol.for("react.activity"),te=Symbol.for("react.client.reference"),X=j.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,ne=Object.prototype.hasOwnProperty,Q=Array.isArray,J=console.createTask?console.createTask:function(){return null};j={react_stack_bottom_frame:function(a){return a()}};var W,Y={},x=j.react_stack_bottom_frame.bind(j,i)(),oe=J(o(i)),u={};he.Fragment=P,he.jsx=function(a,m,p){var g=1e4>X.recentlyCreatedOwnerStacks++;return y(a,m,p,!1,g?Error("react-stack-top-frame"):x,g?J(o(a)):oe)},he.jsxs=function(a,m,p){var g=1e4>X.recentlyCreatedOwnerStacks++;return y(a,m,p,!0,g?Error("react-stack-top-frame"):x,g?J(o(a)):oe)}})()),he}var qe;function Gr(){return qe||(qe=1,process.env.NODE_ENV==="production"?ye.exports=Yr():ye.exports=Hr()),ye.exports}var ee=Gr();function Ue(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function qr(...e){return t=>{let r=!1;const o=e.map(c=>{const i=Ue(c,t);return!r&&typeof i=="function"&&(r=!0),i});if(r)return()=>{for(let c=0;c<o.length;c++){const i=o[c];typeof i=="function"?i():Ue(e[c],null)}}}}var Ur=Symbol.for("react.lazy"),Te=D[" use ".trim().toString()];function Jr(e){return typeof e=="object"&&e!==null&&"then"in e}function Er(e){return e!=null&&typeof e=="object"&&"$$typeof"in e&&e.$$typeof===Ur&&"_payload"in e&&Jr(e._payload)}function Xr(e){const t=Kr(e),r=D.forwardRef((o,c)=>{let{children:i,...s}=o;Er(i)&&typeof Te=="function"&&(i=Te(i._payload));const l=D.Children.toArray(i),d=l.find(rt);if(d){const f=d.props.children,y=l.map(w=>w===d?D.Children.count(f)>1?D.Children.only(null):D.isValidElement(f)?f.props.children:null:w);return ee.jsx(t,{...s,ref:c,children:D.isValidElement(f)?D.cloneElement(f,void 0,y):null})}return ee.jsx(t,{...s,ref:c,children:i})});return r.displayName=`${e}.Slot`,r}var Qr=Xr("Slot");function Kr(e){const t=D.forwardRef((r,o)=>{let{children:c,...i}=r;if(Er(c)&&typeof Te=="function"&&(c=Te(c._payload)),D.isValidElement(c)){const s=nt(c),l=tt(i,c.props);return c.type!==D.Fragment&&(l.ref=o?qr(o,s):s),D.cloneElement(c,l)}return D.Children.count(c)>1?D.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var et=Symbol("radix.slottable");function rt(e){return D.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===et}function tt(e,t){const r={...t};for(const o in t){const c=e[o],i=t[o];/^on[A-Z]/.test(o)?c&&i?r[o]=(...l)=>{const d=i(...l);return c(...l),d}:c&&(r[o]=c):o==="style"?r[o]={...c,...i}:o==="className"&&(r[o]=[c,i].filter(Boolean).join(" "))}return{...e,...r}}function nt(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,r=t&&"isReactWarning"in t&&t.isReactWarning;return r?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,r=t&&"isReactWarning"in t&&t.isReactWarning,r?e.props.ref:e.props.ref||e.ref)}function wr(e){var t,r,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var c=e.length;for(t=0;t<c;t++)e[t]&&(r=wr(e[t]))&&(o&&(o+=" "),o+=r)}else for(r in e)e[r]&&(o&&(o+=" "),o+=r);return o}function xr(){for(var e,t,r=0,o="",c=arguments.length;r<c;r++)(e=arguments[r])&&(t=wr(e))&&(o&&(o+=" "),o+=t);return o}const Je=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,Xe=xr,Tr=(e,t)=>r=>{var o;if(t?.variants==null)return Xe(e,r?.class,r?.className);const{variants:c,defaultVariants:i}=t,s=Object.keys(c).map(f=>{const y=r?.[f],w=i?.[f];if(y===null)return null;const M=Je(y)||Je(w);return c[f][M]}),l=r&&Object.entries(r).reduce((f,y)=>{let[w,M]=y;return M===void 0||(f[w]=M),f},{}),d=t==null||(o=t.compoundVariants)===null||o===void 0?void 0:o.reduce((f,y)=>{let{class:w,className:M,...j}=y;return Object.entries(j).every(F=>{let[C,P]=F;return Array.isArray(P)?P.includes({...i,...l}[C]):{...i,...l}[C]===P})?[...f,w,M]:f},[]);return Xe(e,s,d,r?.class,r?.className)},ot=(e,t)=>{const r=new Array(e.length+t.length);for(let o=0;o<e.length;o++)r[o]=e[o];for(let o=0;o<t.length;o++)r[e.length+o]=t[o];return r},at=(e,t)=>({classGroupId:e,validator:t}),Mr=(e=new Map,t=null,r)=>({nextPart:e,validators:t,classGroupId:r}),Me="-",Qe=[],ct="arbitrary..",it=e=>{const t=lt(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:o}=e;return{getClassGroupId:s=>{if(s.startsWith("[")&&s.endsWith("]"))return st(s);const l=s.split(Me),d=l[0]===""&&l.length>1?1:0;return Sr(l,d,t)},getConflictingClassGroupIds:(s,l)=>{if(l){const d=o[s],f=r[s];return d?f?ot(f,d):d:f||Qe}return r[s]||Qe}}},Sr=(e,t,r)=>{if(e.length-t===0)return r.classGroupId;const c=e[t],i=r.nextPart.get(c);if(i){const f=Sr(e,t+1,i);if(f)return f}const s=r.validators;if(s===null)return;const l=t===0?e.join(Me):e.slice(t).join(Me),d=s.length;for(let f=0;f<d;f++){const y=s[f];if(y.validator(l))return y.classGroupId}},st=e=>e.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const t=e.slice(1,-1),r=t.indexOf(":"),o=t.slice(0,r);return o?ct+o:void 0})(),lt=e=>{const{theme:t,classGroups:r}=e;return ut(r,t)},ut=(e,t)=>{const r=Mr();for(const o in e){const c=e[o];Ne(c,r,o,t)}return r},Ne=(e,t,r,o)=>{const c=e.length;for(let i=0;i<c;i++){const s=e[i];dt(s,t,r,o)}},dt=(e,t,r,o)=>{if(typeof e=="string"){ft(e,t,r);return}if(typeof e=="function"){mt(e,t,r,o);return}pt(e,t,r,o)},ft=(e,t,r)=>{const o=e===""?t:Or(t,e);o.classGroupId=r},mt=(e,t,r,o)=>{if(ht(e)){Ne(e(o),t,r,o);return}t.validators===null&&(t.validators=[]),t.validators.push(at(r,e))},pt=(e,t,r,o)=>{const c=Object.entries(e),i=c.length;for(let s=0;s<i;s++){const[l,d]=c[s];Ne(d,Or(t,l),r,o)}},Or=(e,t)=>{let r=e;const o=t.split(Me),c=o.length;for(let i=0;i<c;i++){const s=o[i];let l=r.nextPart.get(s);l||(l=Mr(),r.nextPart.set(s,l)),r=l}return r},ht=e=>"isThemeGetter"in e&&e.isThemeGetter===!0,vt=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=Object.create(null),o=Object.create(null);const c=(i,s)=>{r[i]=s,t++,t>e&&(t=0,o=r,r=Object.create(null))};return{get(i){let s=r[i];if(s!==void 0)return s;if((s=o[i])!==void 0)return c(i,s),s},set(i,s){i in r?r[i]=s:c(i,s)}}},Ve="!",Ke=":",gt=[],er=(e,t,r,o,c)=>({modifiers:e,hasImportantModifier:t,baseClassName:r,maybePostfixModifierPosition:o,isExternal:c}),bt=e=>{const{prefix:t,experimentalParseClassName:r}=e;let o=c=>{const i=[];let s=0,l=0,d=0,f;const y=c.length;for(let C=0;C<y;C++){const P=c[C];if(s===0&&l===0){if(P===Ke){i.push(c.slice(d,C)),d=C+1;continue}if(P==="/"){f=C;continue}}P==="["?s++:P==="]"?s--:P==="("?l++:P===")"&&l--}const w=i.length===0?c:c.slice(d);let M=w,j=!1;w.endsWith(Ve)?(M=w.slice(0,-1),j=!0):w.startsWith(Ve)&&(M=w.slice(1),j=!0);const F=f&&f>d?f-d:void 0;return er(i,j,M,F)};if(t){const c=t+Ke,i=o;o=s=>s.startsWith(c)?i(s.slice(c.length)):er(gt,!1,s,void 0,!0)}if(r){const c=o;o=i=>r({className:i,parseClassName:c})}return o},yt=e=>{const t=new Map;return e.orderSensitiveModifiers.forEach((r,o)=>{t.set(r,1e6+o)}),r=>{const o=[];let c=[];for(let i=0;i<r.length;i++){const s=r[i],l=s[0]==="[",d=t.has(s);l||d?(c.length>0&&(c.sort(),o.push(...c),c=[]),o.push(s)):c.push(s)}return c.length>0&&(c.sort(),o.push(...c)),o}},kt=e=>({cache:vt(e.cacheSize),parseClassName:bt(e),sortModifiers:yt(e),...it(e)}),Et=/\s+/,wt=(e,t)=>{const{parseClassName:r,getClassGroupId:o,getConflictingClassGroupIds:c,sortModifiers:i}=t,s=[],l=e.trim().split(Et);let d="";for(let f=l.length-1;f>=0;f-=1){const y=l[f],{isExternal:w,modifiers:M,hasImportantModifier:j,baseClassName:F,maybePostfixModifierPosition:C}=r(y);if(w){d=y+(d.length>0?" "+d:d);continue}let P=!!C,Z=o(P?F.substring(0,C):F);if(!Z){if(!P){d=y+(d.length>0?" "+d:d);continue}if(Z=o(F),!Z){d=y+(d.length>0?" "+d:d);continue}P=!1}const U=M.length===0?"":M.length===1?M[0]:i(M).join(":"),V=j?U+Ve:U,$=V+Z;if(s.indexOf($)>-1)continue;s.push($);const v=c(Z,P);for(let G=0;G<v.length;++G){const K=v[G];s.push(V+K)}d=y+(d.length>0?" "+d:d)}return d},xt=(...e)=>{let t=0,r,o,c="";for(;t<e.length;)(r=e[t++])&&(o=Rr(r))&&(c&&(c+=" "),c+=o);return c},Rr=e=>{if(typeof e=="string")return e;let t,r="";for(let o=0;o<e.length;o++)e[o]&&(t=Rr(e[o]))&&(r&&(r+=" "),r+=t);return r},Tt=(e,...t)=>{let r,o,c,i;const s=d=>{const f=t.reduce((y,w)=>w(y),e());return r=kt(f),o=r.cache.get,c=r.cache.set,i=l,l(d)},l=d=>{const f=o(d);if(f)return f;const y=wt(d,r);return c(d,y),y};return i=s,(...d)=>i(xt(...d))},Mt=[],N=e=>{const t=r=>r[e]||Mt;return t.isThemeGetter=!0,t},Cr=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,Pr=/^\((?:(\w[\w-]*):)?(.+)\)$/i,St=/^\d+\/\d+$/,Ot=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,Rt=/\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$/,Ct=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,Pt=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,_t=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,de=e=>St.test(e),A=e=>!!e&&!Number.isNaN(Number(e)),se=e=>!!e&&Number.isInteger(Number(e)),je=e=>e.endsWith("%")&&A(e.slice(0,-1)),ae=e=>Ot.test(e),At=()=>!0,jt=e=>Rt.test(e)&&!Ct.test(e),_r=()=>!1,Lt=e=>Pt.test(e),Bt=e=>_t.test(e),zt=e=>!k(e)&&!E(e),It=e=>fe(e,Lr,_r),k=e=>Cr.test(e),le=e=>fe(e,Br,jt),Le=e=>fe(e,Wt,A),rr=e=>fe(e,Ar,_r),Ft=e=>fe(e,jr,Bt),ke=e=>fe(e,zr,Lt),E=e=>Pr.test(e),ve=e=>me(e,Br),$t=e=>me(e,Nt),tr=e=>me(e,Ar),Zt=e=>me(e,Lr),Vt=e=>me(e,jr),Ee=e=>me(e,zr,!0),fe=(e,t,r)=>{const o=Cr.exec(e);return o?o[1]?t(o[1]):r(o[2]):!1},me=(e,t,r=!1)=>{const o=Pr.exec(e);return o?o[1]?t(o[1]):r:!1},Ar=e=>e==="position"||e==="percentage",jr=e=>e==="image"||e==="url",Lr=e=>e==="length"||e==="size"||e==="bg-size",Br=e=>e==="length",Wt=e=>e==="number",Nt=e=>e==="family-name",zr=e=>e==="shadow",Dt=()=>{const e=N("color"),t=N("font"),r=N("text"),o=N("font-weight"),c=N("tracking"),i=N("leading"),s=N("breakpoint"),l=N("container"),d=N("spacing"),f=N("radius"),y=N("shadow"),w=N("inset-shadow"),M=N("text-shadow"),j=N("drop-shadow"),F=N("blur"),C=N("perspective"),P=N("aspect"),Z=N("ease"),U=N("animate"),V=()=>["auto","avoid","all","avoid-page","page","left","right","column"],$=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],v=()=>[...$(),E,k],G=()=>["auto","hidden","clip","visible","scroll"],K=()=>["auto","contain","none"],T=()=>[E,k,d],q=()=>[de,"full","auto",...T()],ie=()=>[se,"none","subgrid",E,k],te=()=>["auto",{span:["full",se,E,k]},se,E,k],X=()=>[se,"auto",E,k],ne=()=>["auto","min","max","fr",E,k],Q=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],J=()=>["start","end","center","stretch","center-safe","end-safe"],W=()=>["auto",...T()],Y=()=>[de,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...T()],x=()=>[e,E,k],oe=()=>[...$(),tr,rr,{position:[E,k]}],u=()=>["no-repeat",{repeat:["","x","y","space","round"]}],a=()=>["auto","cover","contain",Zt,It,{size:[E,k]}],m=()=>[je,ve,le],p=()=>["","none","full",f,E,k],g=()=>["",A,ve,le],O=()=>["solid","dashed","dotted","double"],S=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],h=()=>[A,je,tr,rr],R=()=>["","none",F,E,k],L=()=>["none",A,E,k],_=()=>["none",A,E,k],H=()=>[A,E,k],b=()=>[de,"full",...T()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[ae],breakpoint:[ae],color:[At],container:[ae],"drop-shadow":[ae],ease:["in","out","in-out"],font:[zt],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[ae],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[ae],shadow:[ae],spacing:["px",A],text:[ae],"text-shadow":[ae],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",de,k,E,P]}],container:["container"],columns:[{columns:[A,k,E,l]}],"break-after":[{"break-after":V()}],"break-before":[{"break-before":V()}],"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:v()}],overflow:[{overflow:G()}],"overflow-x":[{"overflow-x":G()}],"overflow-y":[{"overflow-y":G()}],overscroll:[{overscroll:K()}],"overscroll-x":[{"overscroll-x":K()}],"overscroll-y":[{"overscroll-y":K()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:q()}],"inset-x":[{"inset-x":q()}],"inset-y":[{"inset-y":q()}],start:[{start:q()}],end:[{end:q()}],top:[{top:q()}],right:[{right:q()}],bottom:[{bottom:q()}],left:[{left:q()}],visibility:["visible","invisible","collapse"],z:[{z:[se,"auto",E,k]}],basis:[{basis:[de,"full","auto",l,...T()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[A,de,"auto","initial","none",k]}],grow:[{grow:["",A,E,k]}],shrink:[{shrink:["",A,E,k]}],order:[{order:[se,"first","last","none",E,k]}],"grid-cols":[{"grid-cols":ie()}],"col-start-end":[{col:te()}],"col-start":[{"col-start":X()}],"col-end":[{"col-end":X()}],"grid-rows":[{"grid-rows":ie()}],"row-start-end":[{row:te()}],"row-start":[{"row-start":X()}],"row-end":[{"row-end":X()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":ne()}],"auto-rows":[{"auto-rows":ne()}],gap:[{gap:T()}],"gap-x":[{"gap-x":T()}],"gap-y":[{"gap-y":T()}],"justify-content":[{justify:[...Q(),"normal"]}],"justify-items":[{"justify-items":[...J(),"normal"]}],"justify-self":[{"justify-self":["auto",...J()]}],"align-content":[{content:["normal",...Q()]}],"align-items":[{items:[...J(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...J(),{baseline:["","last"]}]}],"place-content":[{"place-content":Q()}],"place-items":[{"place-items":[...J(),"baseline"]}],"place-self":[{"place-self":["auto",...J()]}],p:[{p:T()}],px:[{px:T()}],py:[{py:T()}],ps:[{ps:T()}],pe:[{pe:T()}],pt:[{pt:T()}],pr:[{pr:T()}],pb:[{pb:T()}],pl:[{pl:T()}],m:[{m:W()}],mx:[{mx:W()}],my:[{my:W()}],ms:[{ms:W()}],me:[{me:W()}],mt:[{mt:W()}],mr:[{mr:W()}],mb:[{mb:W()}],ml:[{ml:W()}],"space-x":[{"space-x":T()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":T()}],"space-y-reverse":["space-y-reverse"],size:[{size:Y()}],w:[{w:[l,"screen",...Y()]}],"min-w":[{"min-w":[l,"screen","none",...Y()]}],"max-w":[{"max-w":[l,"screen","none","prose",{screen:[s]},...Y()]}],h:[{h:["screen","lh",...Y()]}],"min-h":[{"min-h":["screen","lh","none",...Y()]}],"max-h":[{"max-h":["screen","lh",...Y()]}],"font-size":[{text:["base",r,ve,le]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[o,E,Le]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",je,k]}],"font-family":[{font:[$t,k,t]}],"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:[c,E,k]}],"line-clamp":[{"line-clamp":[A,"none",E,Le]}],leading:[{leading:[i,...T()]}],"list-image":[{"list-image":["none",E,k]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",E,k]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:x()}],"text-color":[{text:x()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...O(),"wavy"]}],"text-decoration-thickness":[{decoration:[A,"from-font","auto",E,le]}],"text-decoration-color":[{decoration:x()}],"underline-offset":[{"underline-offset":[A,"auto",E,k]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:T()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",E,k]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",E,k]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:oe()}],"bg-repeat":[{bg:u()}],"bg-size":[{bg:a()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},se,E,k],radial:["",E,k],conic:[se,E,k]},Vt,Ft]}],"bg-color":[{bg:x()}],"gradient-from-pos":[{from:m()}],"gradient-via-pos":[{via:m()}],"gradient-to-pos":[{to:m()}],"gradient-from":[{from:x()}],"gradient-via":[{via:x()}],"gradient-to":[{to:x()}],rounded:[{rounded:p()}],"rounded-s":[{"rounded-s":p()}],"rounded-e":[{"rounded-e":p()}],"rounded-t":[{"rounded-t":p()}],"rounded-r":[{"rounded-r":p()}],"rounded-b":[{"rounded-b":p()}],"rounded-l":[{"rounded-l":p()}],"rounded-ss":[{"rounded-ss":p()}],"rounded-se":[{"rounded-se":p()}],"rounded-ee":[{"rounded-ee":p()}],"rounded-es":[{"rounded-es":p()}],"rounded-tl":[{"rounded-tl":p()}],"rounded-tr":[{"rounded-tr":p()}],"rounded-br":[{"rounded-br":p()}],"rounded-bl":[{"rounded-bl":p()}],"border-w":[{border:g()}],"border-w-x":[{"border-x":g()}],"border-w-y":[{"border-y":g()}],"border-w-s":[{"border-s":g()}],"border-w-e":[{"border-e":g()}],"border-w-t":[{"border-t":g()}],"border-w-r":[{"border-r":g()}],"border-w-b":[{"border-b":g()}],"border-w-l":[{"border-l":g()}],"divide-x":[{"divide-x":g()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":g()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...O(),"hidden","none"]}],"divide-style":[{divide:[...O(),"hidden","none"]}],"border-color":[{border:x()}],"border-color-x":[{"border-x":x()}],"border-color-y":[{"border-y":x()}],"border-color-s":[{"border-s":x()}],"border-color-e":[{"border-e":x()}],"border-color-t":[{"border-t":x()}],"border-color-r":[{"border-r":x()}],"border-color-b":[{"border-b":x()}],"border-color-l":[{"border-l":x()}],"divide-color":[{divide:x()}],"outline-style":[{outline:[...O(),"none","hidden"]}],"outline-offset":[{"outline-offset":[A,E,k]}],"outline-w":[{outline:["",A,ve,le]}],"outline-color":[{outline:x()}],shadow:[{shadow:["","none",y,Ee,ke]}],"shadow-color":[{shadow:x()}],"inset-shadow":[{"inset-shadow":["none",w,Ee,ke]}],"inset-shadow-color":[{"inset-shadow":x()}],"ring-w":[{ring:g()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:x()}],"ring-offset-w":[{"ring-offset":[A,le]}],"ring-offset-color":[{"ring-offset":x()}],"inset-ring-w":[{"inset-ring":g()}],"inset-ring-color":[{"inset-ring":x()}],"text-shadow":[{"text-shadow":["none",M,Ee,ke]}],"text-shadow-color":[{"text-shadow":x()}],opacity:[{opacity:[A,E,k]}],"mix-blend":[{"mix-blend":[...S(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":S()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[A]}],"mask-image-linear-from-pos":[{"mask-linear-from":h()}],"mask-image-linear-to-pos":[{"mask-linear-to":h()}],"mask-image-linear-from-color":[{"mask-linear-from":x()}],"mask-image-linear-to-color":[{"mask-linear-to":x()}],"mask-image-t-from-pos":[{"mask-t-from":h()}],"mask-image-t-to-pos":[{"mask-t-to":h()}],"mask-image-t-from-color":[{"mask-t-from":x()}],"mask-image-t-to-color":[{"mask-t-to":x()}],"mask-image-r-from-pos":[{"mask-r-from":h()}],"mask-image-r-to-pos":[{"mask-r-to":h()}],"mask-image-r-from-color":[{"mask-r-from":x()}],"mask-image-r-to-color":[{"mask-r-to":x()}],"mask-image-b-from-pos":[{"mask-b-from":h()}],"mask-image-b-to-pos":[{"mask-b-to":h()}],"mask-image-b-from-color":[{"mask-b-from":x()}],"mask-image-b-to-color":[{"mask-b-to":x()}],"mask-image-l-from-pos":[{"mask-l-from":h()}],"mask-image-l-to-pos":[{"mask-l-to":h()}],"mask-image-l-from-color":[{"mask-l-from":x()}],"mask-image-l-to-color":[{"mask-l-to":x()}],"mask-image-x-from-pos":[{"mask-x-from":h()}],"mask-image-x-to-pos":[{"mask-x-to":h()}],"mask-image-x-from-color":[{"mask-x-from":x()}],"mask-image-x-to-color":[{"mask-x-to":x()}],"mask-image-y-from-pos":[{"mask-y-from":h()}],"mask-image-y-to-pos":[{"mask-y-to":h()}],"mask-image-y-from-color":[{"mask-y-from":x()}],"mask-image-y-to-color":[{"mask-y-to":x()}],"mask-image-radial":[{"mask-radial":[E,k]}],"mask-image-radial-from-pos":[{"mask-radial-from":h()}],"mask-image-radial-to-pos":[{"mask-radial-to":h()}],"mask-image-radial-from-color":[{"mask-radial-from":x()}],"mask-image-radial-to-color":[{"mask-radial-to":x()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":$()}],"mask-image-conic-pos":[{"mask-conic":[A]}],"mask-image-conic-from-pos":[{"mask-conic-from":h()}],"mask-image-conic-to-pos":[{"mask-conic-to":h()}],"mask-image-conic-from-color":[{"mask-conic-from":x()}],"mask-image-conic-to-color":[{"mask-conic-to":x()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:oe()}],"mask-repeat":[{mask:u()}],"mask-size":[{mask:a()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",E,k]}],filter:[{filter:["","none",E,k]}],blur:[{blur:R()}],brightness:[{brightness:[A,E,k]}],contrast:[{contrast:[A,E,k]}],"drop-shadow":[{"drop-shadow":["","none",j,Ee,ke]}],"drop-shadow-color":[{"drop-shadow":x()}],grayscale:[{grayscale:["",A,E,k]}],"hue-rotate":[{"hue-rotate":[A,E,k]}],invert:[{invert:["",A,E,k]}],saturate:[{saturate:[A,E,k]}],sepia:[{sepia:["",A,E,k]}],"backdrop-filter":[{"backdrop-filter":["","none",E,k]}],"backdrop-blur":[{"backdrop-blur":R()}],"backdrop-brightness":[{"backdrop-brightness":[A,E,k]}],"backdrop-contrast":[{"backdrop-contrast":[A,E,k]}],"backdrop-grayscale":[{"backdrop-grayscale":["",A,E,k]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[A,E,k]}],"backdrop-invert":[{"backdrop-invert":["",A,E,k]}],"backdrop-opacity":[{"backdrop-opacity":[A,E,k]}],"backdrop-saturate":[{"backdrop-saturate":[A,E,k]}],"backdrop-sepia":[{"backdrop-sepia":["",A,E,k]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":T()}],"border-spacing-x":[{"border-spacing-x":T()}],"border-spacing-y":[{"border-spacing-y":T()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",E,k]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[A,"initial",E,k]}],ease:[{ease:["linear","initial",Z,E,k]}],delay:[{delay:[A,E,k]}],animate:[{animate:["none",U,E,k]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[C,E,k]}],"perspective-origin":[{"perspective-origin":v()}],rotate:[{rotate:L()}],"rotate-x":[{"rotate-x":L()}],"rotate-y":[{"rotate-y":L()}],"rotate-z":[{"rotate-z":L()}],scale:[{scale:_()}],"scale-x":[{"scale-x":_()}],"scale-y":[{"scale-y":_()}],"scale-z":[{"scale-z":_()}],"scale-3d":["scale-3d"],skew:[{skew:H()}],"skew-x":[{"skew-x":H()}],"skew-y":[{"skew-y":H()}],transform:[{transform:[E,k,"","none","gpu","cpu"]}],"transform-origin":[{origin:v()}],"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:x()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:x()}],"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",E,k]}],"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":T()}],"scroll-mx":[{"scroll-mx":T()}],"scroll-my":[{"scroll-my":T()}],"scroll-ms":[{"scroll-ms":T()}],"scroll-me":[{"scroll-me":T()}],"scroll-mt":[{"scroll-mt":T()}],"scroll-mr":[{"scroll-mr":T()}],"scroll-mb":[{"scroll-mb":T()}],"scroll-ml":[{"scroll-ml":T()}],"scroll-p":[{"scroll-p":T()}],"scroll-px":[{"scroll-px":T()}],"scroll-py":[{"scroll-py":T()}],"scroll-ps":[{"scroll-ps":T()}],"scroll-pe":[{"scroll-pe":T()}],"scroll-pt":[{"scroll-pt":T()}],"scroll-pr":[{"scroll-pr":T()}],"scroll-pb":[{"scroll-pb":T()}],"scroll-pl":[{"scroll-pl":T()}],"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",E,k]}],fill:[{fill:["none",...x()]}],"stroke-w":[{stroke:[A,ve,le,Le]}],stroke:[{stroke:["none",...x()]}],"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-x","border-w-y","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-x","border-color-y","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:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},Yt=Tt(Dt);function ge(...e){return Yt(xr(e))}const Ir=Tr(["group relative inline-flex items-center justify-center gap-2 rounded-[var(--button-radius,999px)] font-bold tracking-tight text-[1rem]","transition-[background,filter,color] duration-200 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2 focus-visible:ring-offset-[hsl(var(--background))]","disabled:pointer-events-none disabled:opacity-60 overflow-hidden cursor-pointer"].join(" "),{variants:{variant:{primary:"bg-[#FF246E] text-white hover:brightness-[1.08]",secondary:"bg-[#04020D] text-white hover:brightness-110",neutral:"bg-[#F5F6FB] text-[#0E0C15] hover:brightness-95",ghost:"bg-transparent text-[#0E0C15] hover:bg-[#F7F7FF]",outline:["bg-[#FFE3F0] text-[#FF246E]","border border-[#FF246E]","hover:bg-[#FFD6E9]"].join(" "),danger:"bg-[#FF5A82] text-white hover:brightness-110",icon:["h-14 w-14 gap-0","[--button-radius:1.5rem]","bg-muted-foreground/20 text-muted-foreground border border-muted-foreground/20 hover:brightness-110"].join(" "),link:"bg-transparent text-[#FFFFFF] border-1 border-#ffffff/20 underline-offset-4 hover:underline px-0 h-auto shadow-none"},size:{sm:"h-9 px-4 text-sm",md:"h-12 px-7 text-[1.15rem]",lg:"h-[3.75rem] px-10 text-[1.3rem]",icon:"h-14 w-14 p-0 text-xl"},shape:{pill:"[--button-radius:999px]",soft:"[--button-radius:0.5rem]"}},defaultVariants:{variant:"primary",size:"md",shape:"pill"}}),Ht=e=>{if(!e)return null;if(D.isValidElement(e)){const t=e;return D.cloneElement(t,{color:t.props.color??"currentColor","aria-hidden":t.props["aria-hidden"]??!0})}return e},Fr=D.forwardRef(({className:e,variant:t,size:r,shape:o,asChild:c=!1,shine:i,icon:s,iconPosition:l="left",children:d,...f},y)=>{const w=c?Qr:"button",M=i??t==="primary",j=!!s&&!d,F=j?"icon":r,C=t==="icon"?"pill":o,P=Ht(s),Z=P?ee.jsx("span",{"aria-hidden":!0,className:ge("relative z-10 flex items-center justify-center text-[1.1em]",l==="right"&&!j&&"order-2"),children:P}):null,U=ge("relative z-10 inline-flex items-center gap-2",j&&"sr-only");return ee.jsxs(w,{className:ge(Ir({variant:t,size:F,shape:C}),j&&"px-0",e),ref:y,...f,children:[M&&ee.jsx("span",{"aria-hidden":!0,className:"button-shine-layer pointer-events-none absolute inset-0 rounded-[inherit]"}),s&&l==="left"&&Z,d&&ee.jsx("span",{className:U,children:d}),s&&l==="right"&&Z]})});Fr.displayName="Button";function ce(){return ce=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},ce.apply(this,arguments)}function Gt(e,t){if(e==null)return{};var r={},o=Object.keys(e),c,i;for(i=0;i<o.length;i++)c=o[i],!(t.indexOf(c)>=0)&&(r[c]=e[c]);return r}function ue(e,t){if(e==null)return{};var r=Gt(e,t),o,c;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(c=0;c<i.length;c++)o=i[c],!(t.indexOf(o)>=0)&&Object.prototype.propertyIsEnumerable.call(e,o)&&(r[o]=e[o])}return r}var we={exports:{}},xe={exports:{}},z={};var nr;function qt(){if(nr)return z;nr=1;var e=typeof Symbol=="function"&&Symbol.for,t=e?Symbol.for("react.element"):60103,r=e?Symbol.for("react.portal"):60106,o=e?Symbol.for("react.fragment"):60107,c=e?Symbol.for("react.strict_mode"):60108,i=e?Symbol.for("react.profiler"):60114,s=e?Symbol.for("react.provider"):60109,l=e?Symbol.for("react.context"):60110,d=e?Symbol.for("react.async_mode"):60111,f=e?Symbol.for("react.concurrent_mode"):60111,y=e?Symbol.for("react.forward_ref"):60112,w=e?Symbol.for("react.suspense"):60113,M=e?Symbol.for("react.suspense_list"):60120,j=e?Symbol.for("react.memo"):60115,F=e?Symbol.for("react.lazy"):60116,C=e?Symbol.for("react.block"):60121,P=e?Symbol.for("react.fundamental"):60117,Z=e?Symbol.for("react.responder"):60118,U=e?Symbol.for("react.scope"):60119;function V(v){if(typeof v=="object"&&v!==null){var G=v.$$typeof;switch(G){case t:switch(v=v.type,v){case d:case f:case o:case i:case c:case w:return v;default:switch(v=v&&v.$$typeof,v){case l:case y:case F:case j:case s:return v;default:return G}}case r:return G}}}function $(v){return V(v)===f}return z.AsyncMode=d,z.ConcurrentMode=f,z.ContextConsumer=l,z.ContextProvider=s,z.Element=t,z.ForwardRef=y,z.Fragment=o,z.Lazy=F,z.Memo=j,z.Portal=r,z.Profiler=i,z.StrictMode=c,z.Suspense=w,z.isAsyncMode=function(v){return $(v)||V(v)===d},z.isConcurrentMode=$,z.isContextConsumer=function(v){return V(v)===l},z.isContextProvider=function(v){return V(v)===s},z.isElement=function(v){return typeof v=="object"&&v!==null&&v.$$typeof===t},z.isForwardRef=function(v){return V(v)===y},z.isFragment=function(v){return V(v)===o},z.isLazy=function(v){return V(v)===F},z.isMemo=function(v){return V(v)===j},z.isPortal=function(v){return V(v)===r},z.isProfiler=function(v){return V(v)===i},z.isStrictMode=function(v){return V(v)===c},z.isSuspense=function(v){return V(v)===w},z.isValidElementType=function(v){return typeof v=="string"||typeof v=="function"||v===o||v===f||v===i||v===c||v===w||v===M||typeof v=="object"&&v!==null&&(v.$$typeof===F||v.$$typeof===j||v.$$typeof===s||v.$$typeof===l||v.$$typeof===y||v.$$typeof===P||v.$$typeof===Z||v.$$typeof===U||v.$$typeof===C)},z.typeOf=V,z}var I={};var or;function Ut(){return or||(or=1,process.env.NODE_ENV!=="production"&&(function(){var e=typeof Symbol=="function"&&Symbol.for,t=e?Symbol.for("react.element"):60103,r=e?Symbol.for("react.portal"):60106,o=e?Symbol.for("react.fragment"):60107,c=e?Symbol.for("react.strict_mode"):60108,i=e?Symbol.for("react.profiler"):60114,s=e?Symbol.for("react.provider"):60109,l=e?Symbol.for("react.context"):60110,d=e?Symbol.for("react.async_mode"):60111,f=e?Symbol.for("react.concurrent_mode"):60111,y=e?Symbol.for("react.forward_ref"):60112,w=e?Symbol.for("react.suspense"):60113,M=e?Symbol.for("react.suspense_list"):60120,j=e?Symbol.for("react.memo"):60115,F=e?Symbol.for("react.lazy"):60116,C=e?Symbol.for("react.block"):60121,P=e?Symbol.for("react.fundamental"):60117,Z=e?Symbol.for("react.responder"):60118,U=e?Symbol.for("react.scope"):60119;function V(b){return typeof b=="string"||typeof b=="function"||b===o||b===f||b===i||b===c||b===w||b===M||typeof b=="object"&&b!==null&&(b.$$typeof===F||b.$$typeof===j||b.$$typeof===s||b.$$typeof===l||b.$$typeof===y||b.$$typeof===P||b.$$typeof===Z||b.$$typeof===U||b.$$typeof===C)}function $(b){if(typeof b=="object"&&b!==null){var re=b.$$typeof;switch(re){case t:var be=b.type;switch(be){case d:case f:case o:case i:case c:case w:return be;default:var Ye=be&&be.$$typeof;switch(Ye){case l:case y:case F:case j:case s:return Ye;default:return re}}case r:return re}}}var v=d,G=f,K=l,T=s,q=t,ie=y,te=o,X=F,ne=j,Q=r,J=i,W=c,Y=w,x=!1;function oe(b){return x||(x=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),u(b)||$(b)===d}function u(b){return $(b)===f}function a(b){return $(b)===l}function m(b){return $(b)===s}function p(b){return typeof b=="object"&&b!==null&&b.$$typeof===t}function g(b){return $(b)===y}function O(b){return $(b)===o}function S(b){return $(b)===F}function h(b){return $(b)===j}function R(b){return $(b)===r}function L(b){return $(b)===i}function _(b){return $(b)===c}function H(b){return $(b)===w}I.AsyncMode=v,I.ConcurrentMode=G,I.ContextConsumer=K,I.ContextProvider=T,I.Element=q,I.ForwardRef=ie,I.Fragment=te,I.Lazy=X,I.Memo=ne,I.Portal=Q,I.Profiler=J,I.StrictMode=W,I.Suspense=Y,I.isAsyncMode=oe,I.isConcurrentMode=u,I.isContextConsumer=a,I.isContextProvider=m,I.isElement=p,I.isForwardRef=g,I.isFragment=O,I.isLazy=S,I.isMemo=h,I.isPortal=R,I.isProfiler=L,I.isStrictMode=_,I.isSuspense=H,I.isValidElementType=V,I.typeOf=$})()),I}var ar;function $r(){return ar||(ar=1,process.env.NODE_ENV==="production"?xe.exports=qt():xe.exports=Ut()),xe.exports}var Be,cr;function Jt(){if(cr)return Be;cr=1;var e=Object.getOwnPropertySymbols,t=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function o(i){if(i==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(i)}function c(){try{if(!Object.assign)return!1;var i=new String("abc");if(i[5]="de",Object.getOwnPropertyNames(i)[0]==="5")return!1;for(var s={},l=0;l<10;l++)s["_"+String.fromCharCode(l)]=l;var d=Object.getOwnPropertyNames(s).map(function(y){return s[y]});if(d.join("")!=="0123456789")return!1;var f={};return"abcdefghijklmnopqrst".split("").forEach(function(y){f[y]=y}),Object.keys(Object.assign({},f)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}return Be=c()?Object.assign:function(i,s){for(var l,d=o(i),f,y=1;y<arguments.length;y++){l=Object(arguments[y]);for(var w in l)t.call(l,w)&&(d[w]=l[w]);if(e){f=e(l);for(var M=0;M<f.length;M++)r.call(l,f[M])&&(d[f[M]]=l[f[M]])}}return d},Be}var ze,ir;function De(){if(ir)return ze;ir=1;var e="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";return ze=e,ze}var Ie,sr;function Zr(){return sr||(sr=1,Ie=Function.call.bind(Object.prototype.hasOwnProperty)),Ie}var Fe,lr;function Xt(){if(lr)return Fe;lr=1;var e=function(){};if(process.env.NODE_ENV!=="production"){var t=De(),r={},o=Zr();e=function(i){var s="Warning: "+i;typeof console<"u"&&console.error(s);try{throw new Error(s)}catch{}}}function c(i,s,l,d,f){if(process.env.NODE_ENV!=="production"){for(var y in i)if(o(i,y)){var w;try{if(typeof i[y]!="function"){var M=Error((d||"React class")+": "+l+" type `"+y+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof i[y]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw M.name="Invariant Violation",M}w=i[y](s,y,d,l,null,t)}catch(F){w=F}if(w&&!(w instanceof Error)&&e((d||"React class")+": type specification of "+l+" `"+y+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof w+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),w instanceof Error&&!(w.message in r)){r[w.message]=!0;var j=f?f():"";e("Failed "+l+" type: "+w.message+(j??""))}}}}return c.resetWarningCache=function(){process.env.NODE_ENV!=="production"&&(r={})},Fe=c,Fe}var $e,ur;function Qt(){if(ur)return $e;ur=1;var e=$r(),t=Jt(),r=De(),o=Zr(),c=Xt(),i=function(){};process.env.NODE_ENV!=="production"&&(i=function(l){var d="Warning: "+l;typeof console<"u"&&console.error(d);try{throw new Error(d)}catch{}});function s(){return null}return $e=function(l,d){var f=typeof Symbol=="function"&&Symbol.iterator,y="@@iterator";function w(u){var a=u&&(f&&u[f]||u[y]);if(typeof a=="function")return a}var M="<<anonymous>>",j={array:Z("array"),bigint:Z("bigint"),bool:Z("boolean"),func:Z("function"),number:Z("number"),object:Z("object"),string:Z("string"),symbol:Z("symbol"),any:U(),arrayOf:V,element:$(),elementType:v(),instanceOf:G,node:ie(),objectOf:T,oneOf:K,oneOfType:q,shape:X,exact:ne};function F(u,a){return u===a?u!==0||1/u===1/a:u!==u&&a!==a}function C(u,a){this.message=u,this.data=a&&typeof a=="object"?a:{},this.stack=""}C.prototype=Error.prototype;function P(u){if(process.env.NODE_ENV!=="production")var a={},m=0;function p(O,S,h,R,L,_,H){if(R=R||M,_=_||h,H!==r){if(d){var b=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw b.name="Invariant Violation",b}else if(process.env.NODE_ENV!=="production"&&typeof console<"u"){var re=R+":"+h;!a[re]&&m<3&&(i("You are manually calling a React.PropTypes validation function for the `"+_+"` prop on `"+R+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),a[re]=!0,m++)}}return S[h]==null?O?S[h]===null?new C("The "+L+" `"+_+"` is marked as required "+("in `"+R+"`, but its value is `null`.")):new C("The "+L+" `"+_+"` is marked as required in "+("`"+R+"`, but its value is `undefined`.")):null:u(S,h,R,L,_)}var g=p.bind(null,!1);return g.isRequired=p.bind(null,!0),g}function Z(u){function a(m,p,g,O,S,h){var R=m[p],L=W(R);if(L!==u){var _=Y(R);return new C("Invalid "+O+" `"+S+"` of type "+("`"+_+"` supplied to `"+g+"`, expected ")+("`"+u+"`."),{expectedType:u})}return null}return P(a)}function U(){return P(s)}function V(u){function a(m,p,g,O,S){if(typeof u!="function")return new C("Property `"+S+"` of component `"+g+"` has invalid PropType notation inside arrayOf.");var h=m[p];if(!Array.isArray(h)){var R=W(h);return new C("Invalid "+O+" `"+S+"` of type "+("`"+R+"` supplied to `"+g+"`, expected an array."))}for(var L=0;L<h.length;L++){var _=u(h,L,g,O,S+"["+L+"]",r);if(_ instanceof Error)return _}return null}return P(a)}function $(){function u(a,m,p,g,O){var S=a[m];if(!l(S)){var h=W(S);return new C("Invalid "+g+" `"+O+"` of type "+("`"+h+"` supplied to `"+p+"`, expected a single ReactElement."))}return null}return P(u)}function v(){function u(a,m,p,g,O){var S=a[m];if(!e.isValidElementType(S)){var h=W(S);return new C("Invalid "+g+" `"+O+"` of type "+("`"+h+"` supplied to `"+p+"`, expected a single ReactElement type."))}return null}return P(u)}function G(u){function a(m,p,g,O,S){if(!(m[p]instanceof u)){var h=u.name||M,R=oe(m[p]);return new C("Invalid "+O+" `"+S+"` of type "+("`"+R+"` supplied to `"+g+"`, expected ")+("instance of `"+h+"`."))}return null}return P(a)}function K(u){if(!Array.isArray(u))return process.env.NODE_ENV!=="production"&&(arguments.length>1?i("Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."):i("Invalid argument supplied to oneOf, expected an array.")),s;function a(m,p,g,O,S){for(var h=m[p],R=0;R<u.length;R++)if(F(h,u[R]))return null;var L=JSON.stringify(u,function(H,b){var re=Y(b);return re==="symbol"?String(b):b});return new C("Invalid "+O+" `"+S+"` of value `"+String(h)+"` "+("supplied to `"+g+"`, expected one of "+L+"."))}return P(a)}function T(u){function a(m,p,g,O,S){if(typeof u!="function")return new C("Property `"+S+"` of component `"+g+"` has invalid PropType notation inside objectOf.");var h=m[p],R=W(h);if(R!=="object")return new C("Invalid "+O+" `"+S+"` of type "+("`"+R+"` supplied to `"+g+"`, expected an object."));for(var L in h)if(o(h,L)){var _=u(h,L,g,O,S+"."+L,r);if(_ instanceof Error)return _}return null}return P(a)}function q(u){if(!Array.isArray(u))return process.env.NODE_ENV!=="production"&&i("Invalid argument supplied to oneOfType, expected an instance of array."),s;for(var a=0;a<u.length;a++){var m=u[a];if(typeof m!="function")return i("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+x(m)+" at index "+a+"."),s}function p(g,O,S,h,R){for(var L=[],_=0;_<u.length;_++){var H=u[_],b=H(g,O,S,h,R,r);if(b==null)return null;b.data&&o(b.data,"expectedType")&&L.push(b.data.expectedType)}var re=L.length>0?", expected one of type ["+L.join(", ")+"]":"";return new C("Invalid "+h+" `"+R+"` supplied to "+("`"+S+"`"+re+"."))}return P(p)}function ie(){function u(a,m,p,g,O){return Q(a[m])?null:new C("Invalid "+g+" `"+O+"` supplied to "+("`"+p+"`, expected a ReactNode."))}return P(u)}function te(u,a,m,p,g){return new C((u||"React class")+": "+a+" type `"+m+"."+p+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+g+"`.")}function X(u){function a(m,p,g,O,S){var h=m[p],R=W(h);if(R!=="object")return new C("Invalid "+O+" `"+S+"` of type `"+R+"` "+("supplied to `"+g+"`, expected `object`."));for(var L in u){var _=u[L];if(typeof _!="function")return te(g,O,S,L,Y(_));var H=_(h,L,g,O,S+"."+L,r);if(H)return H}return null}return P(a)}function ne(u){function a(m,p,g,O,S){var h=m[p],R=W(h);if(R!=="object")return new C("Invalid "+O+" `"+S+"` of type `"+R+"` "+("supplied to `"+g+"`, expected `object`."));var L=t({},m[p],u);for(var _ in L){var H=u[_];if(o(u,_)&&typeof H!="function")return te(g,O,S,_,Y(H));if(!H)return new C("Invalid "+O+" `"+S+"` key `"+_+"` supplied to `"+g+"`.\nBad object: "+JSON.stringify(m[p],null," ")+`
7
+ Valid keys: `+JSON.stringify(Object.keys(u),null," "));var b=H(h,_,g,O,S+"."+_,r);if(b)return b}return null}return P(a)}function Q(u){switch(typeof u){case"number":case"string":case"undefined":return!0;case"boolean":return!u;case"object":if(Array.isArray(u))return u.every(Q);if(u===null||l(u))return!0;var a=w(u);if(a){var m=a.call(u),p;if(a!==u.entries){for(;!(p=m.next()).done;)if(!Q(p.value))return!1}else for(;!(p=m.next()).done;){var g=p.value;if(g&&!Q(g[1]))return!1}}else return!1;return!0;default:return!1}}function J(u,a){return u==="symbol"?!0:a?a["@@toStringTag"]==="Symbol"||typeof Symbol=="function"&&a instanceof Symbol:!1}function W(u){var a=typeof u;return Array.isArray(u)?"array":u instanceof RegExp?"object":J(a,u)?"symbol":a}function Y(u){if(typeof u>"u"||u===null)return""+u;var a=W(u);if(a==="object"){if(u instanceof Date)return"date";if(u instanceof RegExp)return"regexp"}return a}function x(u){var a=Y(u);switch(a){case"array":case"object":return"an "+a;case"boolean":case"date":case"regexp":return"a "+a;default:return a}}function oe(u){return!u.constructor||!u.constructor.name?M:u.constructor.name}return j.checkPropTypes=c,j.resetWarningCache=c.resetWarningCache,j.PropTypes=j,j},$e}var Ze,dr;function Kt(){if(dr)return Ze;dr=1;var e=De();function t(){}function r(){}return r.resetWarningCache=t,Ze=function(){function o(s,l,d,f,y,w){if(w!==e){var M=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw M.name="Invariant Violation",M}}o.isRequired=o;function c(){return o}var i={array:o,bigint:o,bool:o,func:o,number:o,object:o,string:o,symbol:o,any:o,arrayOf:c,element:o,elementType:o,instanceOf:c,node:o,objectOf:c,oneOf:c,oneOfType:c,shape:c,exact:c,checkPropTypes:r,resetWarningCache:t};return i.PropTypes=i,i},Ze}var fr;function en(){if(fr)return we.exports;if(fr=1,process.env.NODE_ENV!=="production"){var e=$r(),t=!0;we.exports=Qt()(e.isElement,t)}else we.exports=Kt()();return we.exports}var rn=en();const B=Dr(rn);var tn=["variant","color","size"],nn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M16.65 5.719h-9.3c-2.95 0-5.35 2.4-5.35 5.35v5.58c0 2.95 2.4 5.35 5.35 5.35h9.3c2.95 0 5.35-2.4 5.35-5.35v-5.58c0-2.95-2.4-5.35-5.35-5.35Zm-2.15 6.3c0-.55.45-1 1-1s1 .45 1 1-.45 1.01-1 1.01-1-.44-1-.99v-.02Zm-4.37 4.05c-.15.15-.34.22-.53.22s-.38-.07-.53-.22l-1.03-1.03-.99.99c-.15.15-.34.22-.53.22s-.38-.07-.53-.22a.754.754 0 0 1 0-1.06l.99-.99-.96-.96a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l.96.96.99-.99c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.99.99 1.03 1.03c.29.29.29.77 0 1.06Zm3.41-1.07c-.55 0-1.01-.45-1.01-1s.44-1 .99-1h.02c.55 0 1 .45 1 1s-.44 1-1 1Zm1.96 1.97c-.55 0-1-.44-1-.99v-.02c0-.55.45-1 1-1s1 .45 1 1-.44 1.01-1 1.01Zm1.98-1.97c-.55 0-1.01-.45-1.01-1s.44-1 .99-1h.02c.55 0 1 .45 1 1s-.44 1-1 1Z",fill:r}),n.createElement("path",{d:"m13.64 2.71-.01.94A1.64 1.64 0 0 1 12 5.26c-.15 0-.24.1-.24.23s.1.23.23.23h-1.61c-.01-.07-.02-.15-.02-.23 0-.9.73-1.63 1.62-1.63.15 0 .25-.1.25-.23l.01-.94c.01-.38.32-.69.7-.69h.01c.39 0 .69.32.69.71Z",fill:r}))},on=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"m9.57 12.46-3.05 3.05M6.55 12.488l3.05 3.05",stroke:r,strokeWidth:"1.5",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M13.53 14h.01M17.47 14h.01M15.5 15.98v-.02M15.5 12.04v-.02",stroke:r,strokeWidth:"2",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M2 15c0 5 2 7 7 7h6c5 0 7-2 7-7v-2c0-5-2-7-7-7H9C5.25 6 3.19 7.12 2.39 9.8M13.01 2 13 3.01A1 1 0 0 1 12 4h-.03c-.55 0-.99.45-.99 1s.45 1 1 1h1",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},an=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"m10.13 15.008-1.03-1.03.99-.99c.29-.29.29-.77 0-1.06a.754.754 0 0 0-1.06 0l-.99.99-.96-.96a.754.754 0 0 0-1.06 0c-.29.29-.29.77 0 1.06l.96.96-.99.99c-.29.29-.29.77 0 1.06.15.15.34.22.53.22s.38-.07.53-.22l.99-.99 1.03 1.03c.15.15.34.22.53.22s.38-.07.53-.22c.29-.29.29-.77 0-1.06ZM13.54 15c-.55 0-1.01-.45-1.01-1s.44-1 .99-1h.02c.55 0 1 .45 1 1s-.44 1-1 1ZM17.48 15c-.55 0-1.01-.45-1.01-1s.44-1 .99-1h.02c.55 0 1 .45 1 1s-.44 1-1 1ZM15.5 16.97c-.55 0-1-.44-1-.99v-.02c0-.55.45-1 1-1s1 .45 1 1-.44 1.01-1 1.01ZM15.5 13.03c-.55 0-1-.44-1-.99v-.02c0-.55.45-1 1-1s1 .45 1 1-.44 1.01-1 1.01Z",fill:r}),n.createElement("path",{opacity:".4",d:"M22 11.069v5.58c0 2.95-2.4 5.35-5.35 5.35h-9.3c-2.95 0-5.35-2.4-5.35-5.35v-5.58c0-2.95 2.4-5.35 5.35-5.35h9.3c2.95 0 5.35 2.4 5.35 5.35Z",fill:r}),n.createElement("path",{d:"m13.64 2.71-.01.94A1.64 1.64 0 0 1 12 5.26c-.15 0-.24.1-.24.23s.1.23.23.23h-1.61c-.01-.07-.02-.15-.02-.23 0-.9.73-1.63 1.62-1.63.15 0 .25-.1.25-.23l.01-.94c.01-.38.32-.69.7-.69h.01c.39 0 .69.32.69.71Z",fill:r}))},mr=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"m9.57 12.46-3.05 3.05M6.55 12.49l3.05 3.05",stroke:r,strokeWidth:"1.5",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M13.53 14h.01M17.47 14h.01M15.5 15.98v-.02M15.5 12.04v-.02",stroke:r,strokeWidth:"2",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M9 22h6c5 0 7-2 7-7v-2c0-5-2-7-7-7H9c-5 0-7 2-7 7v2c0 5 2 7 7 7ZM13.01 2 13 3.01A1 1 0 0 1 12 4h-.03c-.55 0-.99.45-.99 1s.45 1 1 1h1",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},cn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M6.52 16.258c-.19 0-.38-.07-.53-.22a.754.754 0 0 1 0-1.06l3.05-3.05c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-3.05 3.05c-.15.14-.34.22-.53.22Z",fill:r}),n.createElement("path",{d:"M9.6 16.29c-.19 0-.38-.07-.53-.22l-3.05-3.05a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l3.05 3.05c.29.29.29.77 0 1.06-.15.15-.34.22-.53.22ZM13.54 15c-.55 0-1.01-.45-1.01-1s.44-1 .99-1h.02c.55 0 1 .45 1 1s-.44 1-1 1ZM17.48 15c-.55 0-1.01-.45-1.01-1s.44-1 .99-1h.02c.55 0 1 .45 1 1s-.45 1-1 1ZM15.5 16.97c-.55 0-1-.44-1-.99v-.02c0-.55.45-1 1-1s1 .45 1 1-.44 1.01-1 1.01ZM15.5 13.03c-.55 0-1-.44-1-.99v-.02c0-.55.45-1 1-1s1 .45 1 1-.44 1.01-1 1.01Z",fill:r}),n.createElement("path",{d:"M15 22.75H9c-5.43 0-7.75-2.32-7.75-7.75v-2c0-5.43 2.32-7.75 7.75-7.75h6c5.43 0 7.75 2.32 7.75 7.75v2c0 5.43-2.32 7.75-7.75 7.75Zm-6-16c-4.61 0-6.25 1.64-6.25 6.25v2c0 4.61 1.64 6.25 6.25 6.25h6c4.61 0 6.25-1.64 6.25-6.25v-2c0-4.61-1.64-6.25-6.25-6.25H9Z",fill:r}),n.createElement("path",{d:"M12.99 6.75h-1c-.96 0-1.75-.79-1.75-1.75s.78-1.75 1.74-1.75c.16 0 .27-.11.28-.25l.01-1.01c.01-.41.34-.74.75-.74h.01c.41.01.75.35.74.76l-.01 1.01c-.01.95-.8 1.73-1.75 1.73-.16 0-.26.11-.26.25s.11.25.25.25h1c.41 0 .75.34.75.75s-.35.75-.76.75Z",fill:r}))},sn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("g",{opacity:".4",stroke:r,strokeWidth:"1.5",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"},n.createElement("path",{d:"m9.57 12.46-3.05 3.05M6.55 12.492l3.05 3.05"})),n.createElement("path",{opacity:".4",d:"M13.53 14h.01M17.47 14h.01M15.5 15.98v-.02M15.5 12.04v-.02",stroke:r,strokeWidth:"2",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M9 22h6c5 0 7-2 7-7v-2c0-5-2-7-7-7H9c-5 0-7 2-7 7v2c0 5 2 7 7 7ZM13.01 2 13 3.01A1 1 0 0 1 12 4h-.03c-.55 0-.99.45-.99 1s.45 1 1 1h1",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},ln=function(t,r){switch(t){case"Bold":return n.createElement(nn,{color:r});case"Broken":return n.createElement(on,{color:r});case"Bulk":return n.createElement(an,{color:r});case"Linear":return n.createElement(mr,{color:r});case"Outline":return n.createElement(cn,{color:r});case"TwoTone":return n.createElement(sn,{color:r});default:return n.createElement(mr,{color:r})}},Se=n.forwardRef(function(e,t){var r=e.variant,o=e.color,c=e.size,i=ue(e,tn);return n.createElement("svg",ce({},i,{xmlns:"http://www.w3.org/2000/svg",ref:t,width:c,height:c,viewBox:"0 0 24 24",fill:"none"}),ln(r,o))});Se.propTypes={variant:B.oneOf(["Linear","Bold","Broken","Bulk","Outline","TwoTone"]),color:B.string,size:B.oneOfType([B.string,B.number])};Se.defaultProps={variant:"Linear",color:"currentColor",size:"24"};Se.displayName="Game";var un=["variant","color","size"],dn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M15.8 2.21c-.41-.41-1.12-.13-1.12.44v3.49c0 1.46 1.24 2.67 2.75 2.67.95.01 2.27.01 3.4.01.57 0 .87-.67.47-1.07-1.44-1.45-4.02-4.06-5.5-5.54Z",fill:r}),n.createElement("path",{d:"M20.5 10.19h-2.89c-2.37 0-4.3-1.93-4.3-4.3V3c0-.55-.45-1-1-1H8.07C4.99 2 2.5 4 2.5 7.57v8.86C2.5 20 4.99 22 8.07 22h7.86c3.08 0 5.57-2 5.57-5.57v-5.24c0-.55-.45-1-1-1Zm-9 7.56h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4c.41 0 .75.34.75.75s-.34.75-.75.75Zm2-4h-6c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h6c.41 0 .75.34.75.75s-.34.75-.75.75Z",fill:r}))},fn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M12 13h1M7 13h2.45M7 17h4M2 9c0-5 2-7 7-7h5M22 10v5c0 5-2 7-7 7H9c-5 0-7-2-7-7v-2.02M18 10c-3 0-4-1-4-4V2l8 8",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},mn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{opacity:".4",d:"M20.5 10.19h-2.89c-2.37 0-4.3-1.93-4.3-4.3V3c0-.55-.45-1-1-1H8.07C4.99 2 2.5 4 2.5 7.57v8.86C2.5 20 4.99 22 8.07 22h7.86c3.08 0 5.57-2 5.57-5.57v-5.24c0-.55-.45-1-1-1Z",fill:r}),n.createElement("path",{d:"M15.8 2.21c-.41-.41-1.12-.13-1.12.44v3.49c0 1.46 1.24 2.67 2.75 2.67.95.01 2.27.01 3.4.01.57 0 .87-.67.47-1.07-1.44-1.45-4.02-4.06-5.5-5.54ZM13.5 13.75h-6c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h6c.41 0 .75.34.75.75s-.34.75-.75.75ZM11.5 17.75h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4c.41 0 .75.34.75.75s-.34.75-.75.75Z",fill:r}))},pr=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M21 7v10c0 3-1.5 5-5 5H8c-3.5 0-5-2-5-5V7c0-3 1.5-5 5-5h8c3.5 0 5 2 5 5Z",stroke:r,strokeWidth:"1.5",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M14.5 4.5v2c0 1.1.9 2 2 2h2M8 13h4M8 17h8",stroke:r,strokeWidth:"1.5",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}))},pn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M16 22.75H8c-3.65 0-5.75-2.1-5.75-5.75V7c0-3.65 2.1-5.75 5.75-5.75h8c3.65 0 5.75 2.1 5.75 5.75v10c0 3.65-2.1 5.75-5.75 5.75Zm-8-20C5.14 2.75 3.75 4.14 3.75 7v10c0 2.86 1.39 4.25 4.25 4.25h8c2.86 0 4.25-1.39 4.25-4.25V7c0-2.86-1.39-4.25-4.25-4.25H8Z",fill:r}),n.createElement("path",{d:"M18.5 9.25h-2c-1.52 0-2.75-1.23-2.75-2.75v-2c0-.41.34-.75.75-.75s.75.34.75.75v2c0 .69.56 1.25 1.25 1.25h2c.41 0 .75.34.75.75s-.34.75-.75.75ZM12 13.75H8c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4c.41 0 .75.34.75.75s-.34.75-.75.75ZM16 17.75H8c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h8c.41 0 .75.34.75.75s-.34.75-.75.75Z",fill:r}))},hn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M21 7v10c0 3-1.5 5-5 5H8c-3.5 0-5-2-5-5V7c0-3 1.5-5 5-5h8c3.5 0 5 2 5 5Z",stroke:r,strokeWidth:"1.5",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{opacity:".4",d:"M14.5 4.5v2c0 1.1.9 2 2 2h2M8 13h4M8 17h8",stroke:r,strokeWidth:"1.5",strokeMiterlimit:"10",strokeLinecap:"round",strokeLinejoin:"round"}))},vn=function(t,r){switch(t){case"Bold":return n.createElement(dn,{color:r});case"Broken":return n.createElement(fn,{color:r});case"Bulk":return n.createElement(mn,{color:r});case"Linear":return n.createElement(pr,{color:r});case"Outline":return n.createElement(pn,{color:r});case"TwoTone":return n.createElement(hn,{color:r});default:return n.createElement(pr,{color:r})}},Oe=n.forwardRef(function(e,t){var r=e.variant,o=e.color,c=e.size,i=ue(e,un);return n.createElement("svg",ce({},i,{xmlns:"http://www.w3.org/2000/svg",ref:t,width:c,height:c,viewBox:"0 0 24 24",fill:"none"}),vn(r,o))});Oe.propTypes={variant:B.oneOf(["Linear","Bold","Broken","Bulk","Outline","TwoTone"]),color:B.string,size:B.oneOfType([B.string,B.number])};Oe.defaultProps={variant:"Linear",color:"currentColor",size:"24"};Oe.displayName="DocumentText";var gn=["variant","color","size"],bn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M20 19.261h-9.07c-.45 0-.82-.37-.82-.82 0-.45.37-.82.82-.82H20c.45 0 .82.37.82.82 0 .46-.37.82-.82.82ZM20 12.968h-9.07c-.45 0-.82-.37-.82-.82 0-.45.37-.82.82-.82H20c.45 0 .82.37.82.82 0 .45-.37.82-.82.82ZM20 6.671h-9.07c-.45 0-.82-.37-.82-.82 0-.45.37-.82.82-.82H20c.45 0 .82.37.82.82 0 .45-.37.82-.82.82ZM4.91 8.032c-.22 0-.43-.09-.58-.24l-.91-.91a.82.82 0 0 1 1.16-1.16l.33.33 2.14-2.14a.82.82 0 0 1 1.16 1.16l-2.72 2.72c-.16.15-.36.24-.58.24ZM4.91 14.329c-.21 0-.42-.08-.58-.24l-.91-.91a.82.82 0 0 1 1.16-1.16l.33.33 2.14-2.14a.82.82 0 0 1 1.16 1.16l-2.72 2.72c-.16.16-.37.24-.58.24ZM4.91 20.329c-.21 0-.42-.08-.58-.24l-.91-.91a.82.82 0 0 1 1.16-1.16l.33.33 2.14-2.14a.821.821 0 0 1 1.16 1.16l-2.72 2.72c-.16.16-.37.24-.58.24Z",fill:r}))},yn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M11 19.5h10M20 12.5h1M11 12.5h5.49M11 5.5h10M3 5.5l1 1 3-3M3 12.5l1 1 3-3M3 19.5l1 1 3-3",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},kn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M20 19.261h-9.07c-.45 0-.82-.37-.82-.82 0-.45.37-.82.82-.82H20c.45 0 .82.37.82.82 0 .46-.37.82-.82.82ZM20 12.968h-9.07c-.45 0-.82-.37-.82-.82 0-.45.37-.82.82-.82H20c.45 0 .82.37.82.82 0 .45-.37.82-.82.82ZM20 6.671h-9.07c-.45 0-.82-.37-.82-.82 0-.45.37-.82.82-.82H20c.45 0 .82.37.82.82 0 .45-.37.82-.82.82Z",fill:r}),n.createElement("path",{opacity:".4",d:"M4.91 8.032c-.22 0-.43-.09-.58-.24l-.91-.91a.82.82 0 0 1 1.16-1.16l.33.33 2.14-2.14a.82.82 0 0 1 1.16 1.16l-2.72 2.72c-.16.15-.36.24-.58.24ZM4.91 14.329c-.21 0-.42-.08-.58-.24l-.91-.91a.82.82 0 0 1 1.16-1.16l.33.33 2.14-2.14a.82.82 0 0 1 1.16 1.16l-2.72 2.72c-.16.16-.37.24-.58.24ZM4.91 20.329c-.21 0-.42-.08-.58-.24l-.91-.91a.82.82 0 0 1 1.16-1.16l.33.33 2.14-2.14a.821.821 0 0 1 1.16 1.16l-2.72 2.72c-.16.16-.37.24-.58.24Z",fill:r}))},hr=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M11 19.5h10M11 12.5h10M11 5.5h10M3 5.5l1 1 3-3M3 12.5l1 1 3-3M3 19.5l1 1 3-3",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},En=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M21 20.25H11c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h10c.41 0 .75.34.75.75s-.34.75-.75.75ZM21 13.25H11c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h10c.41 0 .75.34.75.75s-.34.75-.75.75ZM21 6.25H11c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h10c.41 0 .75.34.75.75s-.34.75-.75.75ZM4 7.251c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l.47.47 2.47-2.47c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-3 3c-.15.15-.34.22-.53.22ZM4 14.251c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l.47.47 2.47-2.47c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-3 3c-.15.15-.34.22-.53.22ZM4 21.251c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l.47.47 2.47-2.47c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-3 3c-.15.15-.34.22-.53.22Z",fill:r}))},wn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{opacity:".4",d:"M11 19.5h10M11 12.5h10M11 5.5h10",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"m3 5.5 1 1 3-3M3 12.5l1 1 3-3M3 19.5l1 1 3-3",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},xn=function(t,r){switch(t){case"Bold":return n.createElement(bn,{color:r});case"Broken":return n.createElement(yn,{color:r});case"Bulk":return n.createElement(kn,{color:r});case"Linear":return n.createElement(hr,{color:r});case"Outline":return n.createElement(En,{color:r});case"TwoTone":return n.createElement(wn,{color:r});default:return n.createElement(hr,{color:r})}},Re=n.forwardRef(function(e,t){var r=e.variant,o=e.color,c=e.size,i=ue(e,gn);return n.createElement("svg",ce({},i,{xmlns:"http://www.w3.org/2000/svg",ref:t,width:c,height:c,viewBox:"0 0 24 24",fill:"none"}),xn(r,o))});Re.propTypes={variant:B.oneOf(["Linear","Bold","Broken","Bulk","Outline","TwoTone"]),color:B.string,size:B.oneOfType([B.string,B.number])};Re.defaultProps={variant:"Linear",color:"currentColor",size:"24"};Re.displayName="Task";var Tn=["variant","color","size"],Mn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M18 16.012c.55 0 1 .45 1 1v.99c0 2.2-1.5 4-4 4H9c-2.5 0-4-1.8-4-4v-.99c0-.55.45-1 1-1h12ZM19 6v7.5c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V6c0-2.2 1.5-4 4-4h6c2.5 0 4 1.8 4 4ZM3 20.75c-.41 0-.75-.34-.75-.75V4c0-.41.34-.75.75-.75s.75.34.75.75v16c0 .41-.34.75-.75.75ZM21 20.75c-.41 0-.75-.34-.75-.75V4c0-.41.34-.75.75-.75s.75.34.75.75v16c0 .41-.34.75-.75.75Z",fill:r}))},Sn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M15 2c2.5 0 4 1.8 4 4v12c0 2.2-1.5 4-4 4H9c-2.5 0-4-1.8-4-4V6c0-2.2 1.5-4 4-4h1.98M5 16.012h14M2 4v16M22 4v16",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},On=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M19 16.012v1.99c0 2.2-1.5 4-4 4H9c-2.5 0-4-1.8-4-4v-1.99h14Z",fill:r}),n.createElement("path",{opacity:".4",d:"M19 6v10.01H5V6c0-2.2 1.5-4 4-4h6c2.5 0 4 1.8 4 4Z",fill:r}),n.createElement("path",{d:"M3 20.75c-.41 0-.75-.34-.75-.75V4c0-.41.34-.75.75-.75s.75.34.75.75v16c0 .41-.34.75-.75.75ZM21 20.75c-.41 0-.75-.34-.75-.75V4c0-.41.34-.75.75-.75s.75.34.75.75v16c0 .41-.34.75-.75.75Z",fill:r}))},vr=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M15 22H9c-2.5 0-4-1.8-4-4V6c0-2.2 1.5-4 4-4h6c2.5 0 4 1.8 4 4v12c0 2.2-1.5 4-4 4ZM5 16.01h14M2 4v16M22 4v16",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Rn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M15 22.75H9c-2.75 0-4.75-2-4.75-4.75V6c0-2.75 2-4.75 4.75-4.75h6c2.75 0 4.75 2 4.75 4.75v12c0 2.75-2 4.75-4.75 4.75Zm-6-20C6.75 2.75 5.75 4.38 5.75 6v12c0 1.62 1 3.25 3.25 3.25h6c2.25 0 3.25-1.63 3.25-3.25V6c0-1.62-1-3.25-3.25-3.25H9Z",fill:r}),n.createElement("path",{d:"M19 16.762H5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h14c.41 0 .75.34.75.75s-.34.75-.75.75ZM2 20.75c-.41 0-.75-.34-.75-.75V4c0-.41.34-.75.75-.75s.75.34.75.75v16c0 .41-.34.75-.75.75ZM22 20.75c-.41 0-.75-.34-.75-.75V4c0-.41.34-.75.75-.75s.75.34.75.75v16c0 .41-.34.75-.75.75Z",fill:r}))},Cn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M15 22H9c-2.5 0-4-1.8-4-4V6c0-2.2 1.5-4 4-4h6c2.5 0 4 1.8 4 4v12c0 2.2-1.5 4-4 4Z",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{opacity:".4",d:"M5 16.012h14M2 4v16M22 4v16",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Pn=function(t,r){switch(t){case"Bold":return n.createElement(Mn,{color:r});case"Broken":return n.createElement(Sn,{color:r});case"Bulk":return n.createElement(On,{color:r});case"Linear":return n.createElement(vr,{color:r});case"Outline":return n.createElement(Rn,{color:r});case"TwoTone":return n.createElement(Cn,{color:r});default:return n.createElement(vr,{color:r})}},Ce=n.forwardRef(function(e,t){var r=e.variant,o=e.color,c=e.size,i=ue(e,Tn);return n.createElement("svg",ce({},i,{xmlns:"http://www.w3.org/2000/svg",ref:t,width:c,height:c,viewBox:"0 0 24 24",fill:"none"}),Pn(r,o))});Ce.propTypes={variant:B.oneOf(["Linear","Bold","Broken","Bulk","Outline","TwoTone"]),color:B.string,size:B.oneOfType([B.string,B.number])};Ce.defaultProps={variant:"Linear",color:"currentColor",size:"24"};Ce.displayName="Slider";var _n=["variant","color","size"],An=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2Zm4.78 7.7-5.67 5.67a.75.75 0 0 1-1.06 0l-2.83-2.83a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l2.3 2.3 5.14-5.14c.29-.29.77-.29 1.06 0 .29.29.29.76 0 1.06Z",fill:r}))},jn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M4 6c-1.25 1.67-2 3.75-2 6 0 5.52 4.48 10 10 10s10-4.48 10-10S17.52 2 12 2c-1.43 0-2.8.3-4.03.85M15 10.38l1.12-1.13",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"m7.88 12 2.74 2.75 2.55-2.54",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Ln=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{opacity:".4",d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z",fill:r}),n.createElement("path",{d:"M10.58 15.582a.75.75 0 0 1-.53-.22l-2.83-2.83a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l2.3 2.3 5.14-5.14c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-5.67 5.67a.75.75 0 0 1-.53.22Z",fill:r}))},gr=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10Z",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"m7.75 12 2.83 2.83 5.67-5.66",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Bn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M12 22.75C6.07 22.75 1.25 17.93 1.25 12S6.07 1.25 12 1.25 22.75 6.07 22.75 12 17.93 22.75 12 22.75Zm0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75Z",fill:r}),n.createElement("path",{d:"M10.58 15.582a.75.75 0 0 1-.53-.22l-2.83-2.83a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l2.3 2.3 5.14-5.14c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-5.67 5.67a.75.75 0 0 1-.53.22Z",fill:r}))},zn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10Z",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{opacity:".34",d:"m7.75 12.002 2.83 2.83 5.67-5.66",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},In=function(t,r){switch(t){case"Bold":return n.createElement(An,{color:r});case"Broken":return n.createElement(jn,{color:r});case"Bulk":return n.createElement(Ln,{color:r});case"Linear":return n.createElement(gr,{color:r});case"Outline":return n.createElement(Bn,{color:r});case"TwoTone":return n.createElement(zn,{color:r});default:return n.createElement(gr,{color:r})}},Pe=n.forwardRef(function(e,t){var r=e.variant,o=e.color,c=e.size,i=ue(e,_n);return n.createElement("svg",ce({},i,{xmlns:"http://www.w3.org/2000/svg",ref:t,width:c,height:c,viewBox:"0 0 24 24",fill:"none"}),In(r,o))});Pe.propTypes={variant:B.oneOf(["Linear","Bold","Broken","Bulk","Outline","TwoTone"]),color:B.string,size:B.oneOfType([B.string,B.number])};Pe.defaultProps={variant:"Linear",color:"currentColor",size:"24"};Pe.displayName="TickCircle";var Fn=["variant","color","size"],$n=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"m21.56 10.739-1.36-1.58c-.26-.3-.47-.86-.47-1.26v-1.7c0-1.06-.87-1.93-1.93-1.93h-1.7c-.39 0-.96-.21-1.26-.47l-1.58-1.36c-.69-.59-1.82-.59-2.52 0l-1.57 1.37c-.3.25-.87.46-1.26.46H6.18c-1.06 0-1.93.87-1.93 1.93v1.71c0 .39-.21.95-.46 1.25l-1.35 1.59c-.58.69-.58 1.81 0 2.5l1.35 1.59c.25.3.46.86.46 1.25v1.71c0 1.06.87 1.93 1.93 1.93h1.73c.39 0 .96.21 1.26.47l1.58 1.36c.69.59 1.82.59 2.52 0l1.58-1.36c.3-.26.86-.47 1.26-.47h1.7c1.06 0 1.93-.87 1.93-1.93v-1.7c0-.39.21-.96.47-1.26l1.36-1.58c.58-.69.58-1.83-.01-2.52Zm-5.4-.63-4.83 4.83a.75.75 0 0 1-1.06 0l-2.42-2.42a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1.89 1.89 4.3-4.3c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06Z",fill:r}))},Zn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"m8.38 11.998 2.41 2.42 4.83-4.84",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M4.24 6.198c0-1.06.87-1.93 1.93-1.93H7.9c.4 0 .96-.21 1.26-.46l1.58-1.35c.7-.59 1.83-.59 2.51 0l1.58 1.35c.3.25.87.46 1.27.46h1.7c1.06 0 1.93.87 1.93 1.93v1.7c0 .4.21.96.46 1.26l1.35 1.58c.59.7.59 1.83 0 2.51l-1.35 1.58c-.25.3-.46.86-.46 1.26v1.7c0 1.06-.87 1.93-1.93 1.93h-1.7c-.4 0-.96.21-1.26.46l-1.58 1.35c-.7.59-1.83.59-2.51 0l-1.58-1.35c-.3-.25-.87-.46-1.26-.46H6.17c-1.06 0-1.93-.87-1.93-1.93v-1.71c0-.39-.2-.96-.45-1.25l-1.35-1.59c-.58-.69-.58-1.81 0-2.5l.56-.66",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Vn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{opacity:".4",d:"M10.75 2.45c.69-.59 1.82-.59 2.52 0l1.58 1.36c.3.26.86.47 1.26.47h1.7c1.06 0 1.93.87 1.93 1.93v1.7c0 .39.21.96.47 1.26l1.36 1.58c.59.69.59 1.82 0 2.52l-1.36 1.58c-.26.3-.47.86-.47 1.26v1.7c0 1.06-.87 1.93-1.93 1.93h-1.7c-.39 0-.96.21-1.26.47l-1.58 1.36c-.69.59-1.82.59-2.52 0l-1.58-1.36c-.3-.26-.86-.47-1.26-.47H6.18c-1.06 0-1.93-.87-1.93-1.93V16.1c0-.39-.21-.95-.46-1.25l-1.35-1.59c-.58-.69-.58-1.81 0-2.5l1.35-1.59c.25-.3.46-.86.46-1.25V6.2c0-1.06.87-1.93 1.93-1.93h1.73c.39 0 .96-.21 1.26-.47l1.58-1.35Z",fill:r}),n.createElement("path",{d:"M10.79 15.171a.75.75 0 0 1-.53-.22l-2.42-2.42a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1.89 1.89 4.3-4.3c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-4.83 4.83a.75.75 0 0 1-.53.22Z",fill:r}))},br=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"m8.38 12 2.41 2.42 4.83-4.84",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M10.75 2.45c.69-.59 1.82-.59 2.52 0l1.58 1.36c.3.26.86.47 1.26.47h1.7c1.06 0 1.93.87 1.93 1.93v1.7c0 .39.21.96.47 1.26l1.36 1.58c.59.69.59 1.82 0 2.52l-1.36 1.58c-.26.3-.47.86-.47 1.26v1.7c0 1.06-.87 1.93-1.93 1.93h-1.7c-.39 0-.96.21-1.26.47l-1.58 1.36c-.69.59-1.82.59-2.52 0l-1.58-1.36c-.3-.26-.86-.47-1.26-.47H6.18c-1.06 0-1.93-.87-1.93-1.93V16.1c0-.39-.21-.95-.46-1.25l-1.35-1.59c-.58-.69-.58-1.81 0-2.5l1.35-1.59c.25-.3.46-.86.46-1.25V6.2c0-1.06.87-1.93 1.93-1.93h1.73c.39 0 .96-.21 1.26-.47l1.58-1.35Z",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Wn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M10.79 15.171a.75.75 0 0 1-.53-.22l-2.42-2.42a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1.89 1.89 4.3-4.3c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-4.83 4.83a.75.75 0 0 1-.53.22Z",fill:r}),n.createElement("path",{d:"M12 22.75c-.63 0-1.26-.21-1.75-.63l-1.58-1.36c-.16-.14-.56-.28-.77-.28H6.18A2.68 2.68 0 0 1 3.5 17.8v-1.71c0-.21-.14-.6-.28-.76l-1.35-1.59c-.82-.97-.82-2.5 0-3.47l1.35-1.59c.14-.16.28-.55.28-.76V6.2c0-1.48 1.2-2.68 2.68-2.68h1.73c.21 0 .61-.15.77-.28l1.58-1.36c.98-.84 2.51-.84 3.49 0l1.58 1.36c.16.14.56.28.77.28h1.7c1.48 0 2.68 1.2 2.68 2.68v1.7c0 .21.15.61.29.77l1.36 1.58c.84.98.84 2.51 0 3.49l-1.36 1.58c-.14.16-.29.56-.29.77v1.7c0 1.48-1.2 2.68-2.68 2.68h-1.7c-.21 0-.61.15-.77.28l-1.58 1.36c-.49.43-1.12.64-1.75.64ZM6.18 5.02C5.53 5.02 5 5.55 5 6.2v1.71c0 .57-.27 1.3-.64 1.73l-1.35 1.59c-.35.41-.35 1.12 0 1.53l1.35 1.59c.37.44.64 1.16.64 1.73v1.71c0 .65.53 1.18 1.18 1.18h1.73c.58 0 1.31.27 1.75.65l1.58 1.36c.41.35 1.13.35 1.54 0l1.58-1.36c.44-.37 1.17-.65 1.75-.65h1.7c.65 0 1.18-.53 1.18-1.18v-1.7c0-.58.27-1.31.65-1.75L21 12.76c.35-.41.35-1.13 0-1.54l-1.36-1.58c-.38-.44-.65-1.17-.65-1.75V6.2c0-.65-.53-1.18-1.18-1.18h-1.7c-.58 0-1.31-.27-1.75-.65l-1.58-1.36c-.41-.35-1.13-.35-1.54 0L9.66 4.38c-.44.37-1.18.64-1.75.64H6.18Z",fill:r}))},Nn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{opacity:".34",d:"m8.38 11.998 2.41 2.42 4.83-4.84",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{d:"M10.75 2.45c.69-.59 1.82-.59 2.52 0l1.58 1.36c.3.26.86.47 1.26.47h1.7c1.06 0 1.93.87 1.93 1.93v1.7c0 .39.21.96.47 1.26l1.36 1.58c.59.69.59 1.82 0 2.52l-1.36 1.58c-.26.3-.47.86-.47 1.26v1.7c0 1.06-.87 1.93-1.93 1.93h-1.7c-.39 0-.96.21-1.26.47l-1.58 1.36c-.69.59-1.82.59-2.52 0l-1.58-1.36c-.3-.26-.86-.47-1.26-.47H6.18c-1.06 0-1.93-.87-1.93-1.93V16.1c0-.39-.21-.95-.46-1.25l-1.35-1.59c-.58-.69-.58-1.81 0-2.5l1.35-1.59c.25-.3.46-.86.46-1.25V6.2c0-1.06.87-1.93 1.93-1.93h1.73c.39 0 .96-.21 1.26-.47l1.58-1.35Z",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Dn=function(t,r){switch(t){case"Bold":return n.createElement($n,{color:r});case"Broken":return n.createElement(Zn,{color:r});case"Bulk":return n.createElement(Vn,{color:r});case"Linear":return n.createElement(br,{color:r});case"Outline":return n.createElement(Wn,{color:r});case"TwoTone":return n.createElement(Nn,{color:r});default:return n.createElement(br,{color:r})}},_e=n.forwardRef(function(e,t){var r=e.variant,o=e.color,c=e.size,i=ue(e,Fn);return n.createElement("svg",ce({},i,{xmlns:"http://www.w3.org/2000/svg",ref:t,width:c,height:c,viewBox:"0 0 24 24",fill:"none"}),Dn(r,o))});_e.propTypes={variant:B.oneOf(["Linear","Bold","Broken","Bulk","Outline","TwoTone"]),color:B.string,size:B.oneOfType([B.string,B.number])};_e.defaultProps={variant:"Linear",color:"currentColor",size:"24"};_e.displayName="Verify";var Yn=["variant","color","size"],Hn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M17.18 5.25c-1.71 0-3.75.65-3.75 3.75v6c0 3.1 2.04 3.75 3.75 3.75s3.75-.65 3.75-3.75V9c0-3.1-2.04-3.75-3.75-3.75ZM6.82 5.25c-1.71 0-3.75.65-3.75 3.75v6c0 3.1 2.04 3.75 3.75 3.75s3.75-.65 3.75-3.75V9c0-3.1-2.04-3.75-3.75-3.75ZM13.43 11.25h-2.86v1.5h2.86v-1.5ZM22.5 15.25c-.41 0-.75-.34-.75-.75v-5c0-.41.34-.75.75-.75s.75.34.75.75v5c0 .41-.34.75-.75.75ZM1.5 15.25c-.41 0-.75-.34-.75-.75v-5c0-.41.34-.75.75-.75s.75.34.75.75v5c0 .41-.34.75-.75.75Z",fill:r}))},Gn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M17.18 18c2.4 0 3-1.35 3-3V9c0-1.65-.6-3-3-3s-3 1.35-3 3v6c0 1.65.6 3 3 3ZM3.82 11.3V9c0-1.65.6-3 3-3s3 1.35 3 3v6c0 1.65-.6 3-3 3s-3-1.35-3-3M9.82 12h4.36M22.5 14.5v-5M1.5 14.5v-5",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},qn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{opacity:".4",d:"M17.18 5.25c-1.71 0-3.75.65-3.75 3.75v6c0 3.1 2.04 3.75 3.75 3.75s3.75-.65 3.75-3.75V9c0-3.1-2.04-3.75-3.75-3.75ZM6.82 5.25c-1.71 0-3.75.65-3.75 3.75v6c0 3.1 2.04 3.75 3.75 3.75s3.75-.65 3.75-3.75V9c0-3.1-2.04-3.75-3.75-3.75Z",fill:r}),n.createElement("path",{d:"M13.43 11.25h-2.86v1.5h2.86v-1.5ZM22.5 15.25c-.41 0-.75-.34-.75-.75v-5c0-.41.34-.75.75-.75s.75.34.75.75v5c0 .41-.34.75-.75.75ZM1.5 15.25c-.41 0-.75-.34-.75-.75v-5c0-.41.34-.75.75-.75s.75.34.75.75v5c0 .41-.34.75-.75.75Z",fill:r}))},yr=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M17.18 18c2.4 0 3-1.35 3-3V9c0-1.65-.6-3-3-3s-3 1.35-3 3v6c0 1.65.6 3 3 3ZM6.82 18c-2.4 0-3-1.35-3-3V9c0-1.65.6-3 3-3s3 1.35 3 3v6c0 1.65-.6 3-3 3ZM9.82 12h4.36M22.5 14.5v-5M1.5 14.5v-5",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Un=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M17.18 18.75c-1.71 0-3.75-.65-3.75-3.75V9c0-3.1 2.04-3.75 3.75-3.75s3.75.65 3.75 3.75v6c0 3.1-2.04 3.75-3.75 3.75Zm0-12c-1.62 0-2.25.63-2.25 2.25v6c0 1.62.63 2.25 2.25 2.25s2.25-.63 2.25-2.25V9c0-1.62-.63-2.25-2.25-2.25ZM6.82 18.75c-1.71 0-3.75-.65-3.75-3.75V9c0-3.1 2.04-3.75 3.75-3.75s3.75.65 3.75 3.75v6c0 3.1-2.04 3.75-3.75 3.75Zm0-12c-1.62 0-2.25.63-2.25 2.25v6c0 1.62.63 2.25 2.25 2.25s2.25-.63 2.25-2.25V9c0-1.62-.63-2.25-2.25-2.25Z",fill:r}),n.createElement("path",{d:"M14.18 12.75H9.82c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4.36a.749.749 0 1 1 0 1.5ZM22.5 15.25c-.41 0-.75-.34-.75-.75v-5c0-.41.34-.75.75-.75s.75.34.75.75v5c0 .41-.34.75-.75.75ZM1.5 15.25c-.41 0-.75-.34-.75-.75v-5c0-.41.34-.75.75-.75s.75.34.75.75v5c0 .41-.34.75-.75.75Z",fill:r}))},Jn=function(t){var r=t.color;return n.createElement(n.Fragment,null,n.createElement("path",{d:"M17.18 18c2.4 0 3-1.35 3-3V9c0-1.65-.6-3-3-3s-3 1.35-3 3v6c0 1.65.6 3 3 3ZM6.82 18c-2.4 0-3-1.35-3-3V9c0-1.65.6-3 3-3s3 1.35 3 3v6c0 1.65-.6 3-3 3Z",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.createElement("path",{opacity:".4",d:"M9.82 12h4.36M22.5 14.5v-5M1.5 14.5v-5",stroke:r,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))},Xn=function(t,r){switch(t){case"Bold":return n.createElement(Hn,{color:r});case"Broken":return n.createElement(Gn,{color:r});case"Bulk":return n.createElement(qn,{color:r});case"Linear":return n.createElement(yr,{color:r});case"Outline":return n.createElement(Un,{color:r});case"TwoTone":return n.createElement(Jn,{color:r});default:return n.createElement(yr,{color:r})}},Ae=n.forwardRef(function(e,t){var r=e.variant,o=e.color,c=e.size,i=ue(e,Yn);return n.createElement("svg",ce({},i,{xmlns:"http://www.w3.org/2000/svg",ref:t,width:c,height:c,viewBox:"0 0 24 24",fill:"none"}),Xn(r,o))});Ae.propTypes={variant:B.oneOf(["Linear","Bold","Broken","Bulk","Outline","TwoTone"]),color:B.string,size:B.oneOfType([B.string,B.number])};Ae.defaultProps={variant:"Linear",color:"currentColor",size:"24"};Ae.displayName="Weight";const Qn=Tr("inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 ",{variants:{variant:{default:"border-transparent bg-primary text-primary-foreground shadow",secondary:"border-transparent bg-secondary text-secondary-foreground",outline:"text-foreground",subtle:"border-transparent bg-muted text-muted-foreground"}},defaultVariants:{variant:"default"}}),Vr=D.forwardRef(({className:e,variant:t,...r},o)=>ee.jsx("div",{ref:o,className:ge(Qn({variant:t}),e),...r}));Vr.displayName="Badge";const kr={primary:"Primary",solid:"Colorido sólido",white:"Cartão branco",ghost:"Ghost colorido"},Wr={conteudo:{label:"Conteúdo",Icon:Oe},avaliacao:{label:"Avaliação",Icon:_e},lista:{label:"Lista de Exercícios",Icon:Ae},gamificada:{label:"Gamificada",Icon:Se},simulado:{label:"Simulado",Icon:Re},material:{label:"Material de Apoio",Icon:Ce},concluido:{label:"Concluído",Icon:Pe,onlyAppearances:["ghost"]}},Kn=Object.keys(Wr),We=e=>Wr[e],eo={conteudo:{coloredBg:"#F9E8DC",coloredIcon:"#F27900"},avaliacao:{coloredBg:"#E8FBF0",coloredIcon:"#00B1AA"},lista:{coloredBg:"#ECF1A6",coloredIcon:"#9DA634"},gamificada:{coloredBg:"#E3DAF8",coloredIcon:"#B573DB"},simulado:{coloredBg:"#D7E2FF",coloredIcon:"#34A5E5"},material:{coloredBg:"#FBD7E4",coloredIcon:"#F3005A"},concluido:{coloredBg:"#46B35E",coloredIcon:"#46B35E",textColor:"#46B35E",fontWeight:700,iconVariant:"Bold",iconSize:22.5,iconWrapperBg:null,iconWrapperClassName:"flex items-center justify-center"}},ro={primary:{className:"inline-flex w-[140px] items-center gap-2 rounded-md bg-[#FBD7E4] px-2 py-1 text-[12px] leading-normal text-muted-foreground tracking-[-0.019em] whitespace-nowrap",iconSize:13.85,getIconColor:()=>"#FF246E",style:{fontWeight:500}},solid:{className:"inline-flex w-[140px] items-center gap-2 rounded-lg px-2 py-1 text-[12px] leading-normal text-muted-foreground tracking-[-0.019em] whitespace-nowrap",iconSize:18,getIconColor:e=>e.coloredIcon,getStyle:e=>({backgroundColor:e.coloredBg,fontWeight:500})},white:{className:"inline-flex items-center gap-[6px] rounded-md bg-white px-[3px] py-[3px] text-[12px] leading-normal text-muted-foreground tracking-[-0.019em] whitespace-nowrap",iconSize:13.85,getIconColor:e=>e.coloredIcon,style:{fontWeight:500}},ghost:{className:"inline-flex items-center gap-2 rounded-md px-2 py-1 text-[12px] leading-normal text-muted-foreground tracking-[-0.019em] whitespace-nowrap",iconSize:18,getIconColor:e=>e.coloredIcon,style:{fontWeight:500},badgeVariant:"outline",iconWrapper:{className:"flex h-7 w-7 items-center justify-center rounded-lg",getClassName:e=>e.iconWrapperClassName,getStyle:e=>({backgroundColor:e.iconWrapperBg===null?void 0:e.iconWrapperBg??e.coloredBg})}}};function to({variant:e,appearance:t="primary",className:r,style:o,...c}){const i=We(e),s=eo[e],l=i.onlyAppearances,d=l&&!l.includes(t)?l[0]:t,f=ro[d],y=ee.jsx(i.Icon,{size:s.iconSize??f.iconSize,variant:s.iconVariant??"Outline",color:f.getIconColor(s),"aria-hidden":!0}),w=f.iconWrapper?ee.jsx("span",{className:f.iconWrapper.getClassName?.(s)??f.iconWrapper.className,style:f.iconWrapper.getStyle?.(s),children:y}):y,M={...f.style??{},...f.getStyle?.(s)??{},...s.textColor?{color:s.textColor}:{},...s.fontWeight?{fontWeight:s.fontWeight}:{},...o};return ee.jsxs(Vr,{variant:f.badgeVariant,className:ge(f.className,r),style:M,...c,children:[w,ee.jsx("span",{children:i.label})]})}const no=Kn.map(e=>({variant:e,label:We(e).label,onlyAppearances:We(e).onlyAppearances})),oo=Object.keys(kr).map(e=>({appearance:e,label:kr[e]}));exports.Button=Fr;exports.ResourceBadge=to;exports.buttonVariants=Ir;exports.resourceBadgeAppearances=oo;exports.resourceBadges=no;
@@ -0,0 +1,2 @@
1
+ export * from './components/ui/button';
2
+ export * from './components/ui/resource-badge';