UNPKG

vuestic-ui

Version:
28 lines (27 loc) 796 B
import { v as vuesticComponents } from "../vue-plugin/components.mjs"; import { r as registerVuesticWebComponentsEssential } from "./register-vuestic-web-components-essential.mjs"; const defaultCSS = ` .material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; line-height: 1; letter-spacing: normal; text-transform: none; display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-smoothing: antialiased; }`; const registerVuesticWebComponents = (options = {}) => { const { css = defaultCSS } = options; registerVuesticWebComponentsEssential({ css, components: vuesticComponents }); }; export { registerVuesticWebComponents as r }; //# sourceMappingURL=register-vuestic-web-components.mjs.map