@rxdi/ui-kit
Version:
UI Components for building graphql-server website
21 lines • 707 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IMAGES = void 0;
const lit_html_1 = require("@rxdi/lit-html");
const plus_svg_1 = require("../../images/plus.svg");
const minus_svg_1 = require("../../images/minus.svg");
exports.IMAGES = (0, lit_html_1.css) `
.plus {
width: 30px;
height: 30px;
background-image: url('data:image/svg+xml;utf8,${(0, lit_html_1.unsafeCSS)(plus_svg_1.PlusSVG)}');
background-repeat: no-repeat;
}
.minus {
width: 30px;
height: 30px;
background-image: url('data:image/svg+xml;utf8,${(0, lit_html_1.unsafeCSS)(minus_svg_1.MinusSVG)}');
background-repeat: no-repeat;
}
`;
//# sourceMappingURL=images.js.map