baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
19 lines (15 loc) • 665 B
TypeScript
import type { DrawerTokenSections } from '@primeuix/themes/types/drawer';
export * from '@primeuix/themes/types/drawer';
declare const root: DrawerTokenSections.Root;
declare const header: DrawerTokenSections.Header;
declare const title: DrawerTokenSections.Title;
declare const content: DrawerTokenSections.Content;
declare const footer: DrawerTokenSections.Footer;
declare const _default: {
root: DrawerTokenSections.Root;
header: DrawerTokenSections.Header;
title: DrawerTokenSections.Title;
content: DrawerTokenSections.Content;
footer: DrawerTokenSections.Footer;
};
export { content, _default as default, footer, header, root, title };