@analyticaph/smart-campus-ui
Version:
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
9 lines (8 loc) • 333 B
TypeScript
export declare const colors: readonly ["primary", "muted", "info", "success", "warning", "danger"];
export type colors = (typeof colors)[number];
export declare const sizes: readonly ["xs", "sm", "md", "lg", "xl"];
export type sizes = (typeof sizes)[number];
export declare const defaults: {
color: "primary";
size: "md";
};