mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
61 lines
1.4 KiB
Svelte
61 lines
1.4 KiB
Svelte
<script lang="ts" module>
|
|
import type {
|
|
HTMLAnchorAttributes,
|
|
HTMLButtonAttributes,
|
|
} from "svelte/elements";
|
|
import type { VariantProps } from "tailwind-variants";
|
|
import type { WithElementRef } from "@/types/components";
|
|
|
|
import { cn } from "@/utils/cn";
|
|
import { buttonVariants } from "./button.variants";
|
|
|
|
export type ButtonVariant = VariantProps<typeof buttonVariants>["variant"];
|
|
export type ButtonSize = VariantProps<typeof buttonVariants>["size"];
|
|
|
|
export type ButtonProps = WithElementRef<HTMLButtonAttributes> &
|
|
WithElementRef<HTMLAnchorAttributes> & {
|
|
variant?: ButtonVariant;
|
|
size?: ButtonSize;
|
|
};
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
let {
|
|
class: className,
|
|
variant = "default",
|
|
size = "default",
|
|
ref = $bindable(null),
|
|
href = undefined,
|
|
type = "button",
|
|
disabled,
|
|
children,
|
|
...restProps
|
|
}: ButtonProps = $props();
|
|
</script>
|
|
|
|
{#if href}
|
|
<a
|
|
bind:this={ref}
|
|
data-slot="button"
|
|
class={cn(buttonVariants({ variant, size }), className)}
|
|
href={disabled ? undefined : href}
|
|
aria-disabled={disabled}
|
|
role={disabled ? "link" : undefined}
|
|
tabindex={disabled ? -1 : undefined}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</a>
|
|
{:else}
|
|
<button
|
|
bind:this={ref}
|
|
data-slot="button"
|
|
class={cn(buttonVariants({ variant, size }), className)}
|
|
{type}
|
|
{disabled}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</button>
|
|
{/if}
|