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.
24 lines (21 loc) • 710 B
JavaScript
import { style } from '@primeuix/styles/timeline';
import BaseStyle from '@primevue/core/base/style';
var classes = {
root: function root(_ref) {
var props = _ref.props;
return ['p-timeline p-component', 'p-timeline-' + props.align, 'p-timeline-' + props.layout];
},
event: 'p-timeline-event',
eventOpposite: 'p-timeline-event-opposite',
eventSeparator: 'p-timeline-event-separator',
eventMarker: 'p-timeline-event-marker',
eventConnector: 'p-timeline-event-connector',
eventContent: 'p-timeline-event-content'
};
var TimelineStyle = BaseStyle.extend({
name: 'timeline',
style: style,
classes: classes
});
export { TimelineStyle as default };
//# sourceMappingURL=index.mjs.map