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.
25 lines (22 loc) • 631 B
JavaScript
import { style } from '@primeuix/styles/avatar';
import BaseStyle from '@primevue/core/base/style';
var classes = {
root: function root(_ref) {
var props = _ref.props;
return ['p-avatar p-component', {
'p-avatar-image': props.image != null,
'p-avatar-circle': props.shape === 'circle',
'p-avatar-lg': props.size === 'large',
'p-avatar-xl': props.size === 'xlarge'
}];
},
label: 'p-avatar-label',
icon: 'p-avatar-icon'
};
var AvatarStyle = BaseStyle.extend({
name: 'avatar',
style: style,
classes: classes
});
export { AvatarStyle as default };
//# sourceMappingURL=index.mjs.map