UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

12 lines (11 loc) 464 B
import type { HTMLAnchorAttributes } from 'svelte/elements'; import { type ButtonVariant, type ButtonSize } from './button.variants'; import type { ClassValue } from 'tailwind-variants'; type Props = Omit<HTMLAnchorAttributes, 'class'> & { variant?: ButtonVariant; size?: ButtonSize; class?: ClassValue; }; declare const LinkButton: import("svelte").Component<Props, {}, "">; type LinkButton = ReturnType<typeof LinkButton>; export default LinkButton;