UNPKG

@bootstrap-styled/css-utils

Version:

Bootstrap mixins and utilities in javascript for bootstrap-styled.

21 lines (17 loc) 303 B
import { clearfix } from '@bootstrap-styled/css-mixins/lib/clearfix'; export function getClearfixUtilities() { return ` ${getClearfix()} `; } export function getClearfix() { return ` .clearfix { ${clearfix()} } `; } export default { getClearfixUtilities, getClearfix, };