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) • 500 B
JavaScript
import { style } from '@primeuix/styles/inplace';
import BaseStyle from '@primevue/core/base/style';
var classes = {
root: 'p-inplace p-component',
display: function display(_ref) {
var props = _ref.props;
return ['p-inplace-display', {
'p-disabled': props.disabled
}];
},
content: 'p-inplace-content'
};
var InplaceStyle = BaseStyle.extend({
name: 'inplace',
style: style,
classes: classes
});
export { InplaceStyle as default };
//# sourceMappingURL=index.mjs.map