diff --git a/src/shared/ui/Input/Input.svelte b/src/shared/ui/Input/Input.svelte index 986d758..da1e393 100644 --- a/src/shared/ui/Input/Input.svelte +++ b/src/shared/ui/Input/Input.svelte @@ -16,22 +16,29 @@ type Props = ComponentProps & { * Additional CSS classes for the container */ class?: string; + + variant?: 'default' | 'ghost'; }; let { value = $bindable(''), class: className, + variant = 'default', ...rest }: Props = $props(); + +const isGhost = $derived(variant === 'ghost');