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.
23 lines (20 loc) • 658 B
JavaScript
import { style } from '@primeuix/styles/terminal';
import BaseStyle from '@primevue/core/base/style';
var classes = {
root: 'p-terminal p-component',
welcomeMessage: 'p-terminal-welcome-message',
commandList: 'p-terminal-command-list',
command: 'p-terminal-command',
commandValue: 'p-terminal-command-value',
commandResponse: 'p-terminal-command-response',
prompt: 'p-terminal-prompt',
promptLabel: 'p-terminal-prompt-label',
promptValue: 'p-terminal-prompt-value'
};
var TerminalStyle = BaseStyle.extend({
name: 'terminal',
style: style,
classes: classes
});
export { TerminalStyle as default };
//# sourceMappingURL=index.mjs.map