winbox-ui-next
Version:
We Design Vue 2.0: A Vue.js 3 UI Library
18 lines (17 loc) • 512 B
JavaScript
import { CssRender } from "css-render";
import { plugin as plugin$1 } from "@css-render/plugin-bem";
export { createKey } from "./create-key.js";
const namespace = "w";
const prefix = `.${namespace}-`;
const elementPrefix = "__";
const modifierPrefix = "--";
const cssr = CssRender();
const plugin = plugin$1({
blockPrefix: prefix,
elementPrefix,
modifierPrefix
});
cssr.use(plugin);
const { c, find } = cssr;
const { cB, cE, cM, cNotM } = plugin;
export { c, cB, cE, cM, cNotM, find, namespace, prefix };