14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
import type { ButtonProps, ButtonSize, ButtonVariant } from './button.svelte';
|
|
import Root, { buttonVariants } from './button.svelte';
|
|
|
|
export {
|
|
Root,
|
|
type ButtonProps as Props,
|
|
//
|
|
Root as Button,
|
|
buttonVariants,
|
|
type ButtonProps,
|
|
type ButtonSize,
|
|
type ButtonVariant
|
|
};
|