vue-material-you
Version:
Material design 3 UI framework for Vue 3
21 lines (20 loc) • 498 B
TypeScript
declare const classNames: {
readonly content: "content";
readonly fullscreenContent: "fullscreenContent";
readonly title: "title";
readonly actions: "actions";
readonly icon: "icon";
readonly header: "header";
readonly header___title: "header___title";
readonly header___close: "header___close";
};
export default classNames;
export type ClassNames =
| "content"
| "fullscreenContent"
| "title"
| "actions"
| "icon"
| "header"
| "header___title"
| "header___close";