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.
22 lines (19 loc) • 497 B
JavaScript
import { style } from '@primeuix/styles/card';
import BaseStyle from '@primevue/core/base/style';
var classes = {
root: 'p-card p-component',
header: 'p-card-header',
body: 'p-card-body',
caption: 'p-card-caption',
title: 'p-card-title',
subtitle: 'p-card-subtitle',
content: 'p-card-content',
footer: 'p-card-footer'
};
var CardStyle = BaseStyle.extend({
name: 'card',
style: style,
classes: classes
});
export { CardStyle as default };
//# sourceMappingURL=index.mjs.map