UNPKG

@bootstrap-styled/css-utils

Version:

Bootstrap mixins and utilities in javascript for bootstrap-styled.

18 lines (14 loc) 307 B
import { srOnly, srOnlyFocusable } from '@bootstrap-styled/css-mixins/lib/screen-reader'; export function getScreenReadersUtilities() { return ` .sr-only { ${srOnly()} } .sr-only-focusable { ${srOnlyFocusable()} } `; } export default { getScreenReadersUtilities, };