@bootstrap-styled/css-utils
Version:
Bootstrap mixins and utilities in javascript for bootstrap-styled.
24 lines (19 loc) • 586 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getClearfixUtilities = getClearfixUtilities;
exports.getClearfix = getClearfix;
exports.default = void 0;
var _clearfix = require("@bootstrap-styled/css-mixins/lib/clearfix");
function getClearfixUtilities() {
return "\n ".concat(getClearfix(), "\n ");
}
function getClearfix() {
return "\n .clearfix {\n ".concat((0, _clearfix.clearfix)(), "\n }\n ");
}
var _default = {
getClearfixUtilities: getClearfixUtilities,
getClearfix: getClearfix
};
exports.default = _default;
;