adwaveui
Version:
Interactive Web Components inspired by the Gtk Adwaita theme.
19 lines (18 loc) • 432 B
JavaScript
// src/components/switch/switch.css
var stylesheet = "adw-switch{display:flex}";
var exports = {
css: stylesheet,
element: null
};
(function() {
if (typeof window !== "undefined") {
const head = document.head;
const style = document.createElement("style");
style.appendChild(document.createTextNode(stylesheet));
head.appendChild(style);
exports.element = style;
}
})();
export {
exports as default
};