- Added Tailwind CSS configuration and styles to the project. - Created a button component with multiple variants and sizes. - Implemented utility functions for class name management. - Updated layout and design pages to utilize the new button component. - Configured VSCode settings for Tailwind CSS support. - Added PostCSS configuration for Tailwind CSS processing. - Established a pnpm workspace for dependency management.
18 lines
260 B
TypeScript
18 lines
260 B
TypeScript
import Root, {
|
|
type ButtonProps,
|
|
type ButtonSize,
|
|
type ButtonVariant,
|
|
buttonVariants,
|
|
} from "./button.svelte";
|
|
|
|
export {
|
|
Root,
|
|
type ButtonProps as Props,
|
|
//
|
|
Root as Button,
|
|
buttonVariants,
|
|
type ButtonProps,
|
|
type ButtonSize,
|
|
type ButtonVariant,
|
|
};
|