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.
27 lines (24 loc) • 611 B
JavaScript
import { style } from '@primeuix/styles/skeleton';
import BaseStyle from '@primevue/core/base/style';
var inlineStyles = {
root: {
position: 'relative'
}
};
var classes = {
root: function root(_ref) {
var props = _ref.props;
return ['p-skeleton p-component', {
'p-skeleton-circle': props.shape === 'circle',
'p-skeleton-animation-none': props.animation === 'none'
}];
}
};
var SkeletonStyle = BaseStyle.extend({
name: 'skeleton',
style: style,
classes: classes,
inlineStyles: inlineStyles
});
export { SkeletonStyle as default };
//# sourceMappingURL=index.mjs.map