feat(ui): new loader component; button and icon v2

This commit is contained in:
Brian McGee
2025-06-02 12:30:07 +01:00
parent e1df99ea31
commit 8f93015d80
46 changed files with 4244 additions and 364 deletions

View File

@@ -1,11 +1,12 @@
import typography from "@tailwindcss/typography";
import kobalte from "@kobalte/tailwindcss";
import core from "./tailwind/core-plugin";
/** @type {import('tailwindcss').Config} */
const config = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {},
plugins: [typography, core],
plugins: [typography, core, kobalte],
};
export default config;