21 lines
336 B
TypeScript
21 lines
336 B
TypeScript
import Root, {
|
|
type ButtonProps,
|
|
type ButtonSize,
|
|
type ButtonVariant,
|
|
buttonVariants,
|
|
} from './button.svelte'
|
|
|
|
import ToggleButton from './toggleButton.svelte'
|
|
|
|
export {
|
|
Root,
|
|
type ButtonProps as Props,
|
|
//
|
|
Root as Button,
|
|
ToggleButton,
|
|
buttonVariants,
|
|
type ButtonProps,
|
|
type ButtonSize,
|
|
type ButtonVariant,
|
|
}
|