primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
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