@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
17 lines • 700 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.typoClassNames = void 0;
const helpers_1 = require("../utils/helpers");
const typoClassNames = (props) => {
return (0, helpers_1.cl)({
"aksel-typo--spacing": props.spacing,
"aksel-typo--truncate": props.truncate,
"aksel-typo--semibold": props.weight === "semibold",
[`aksel-typo--align-${props.align}`]: props.align,
[`aksel-typo--color-${props.textColor}`]: props.textColor,
"aksel-typo--visually-hidden": props.visuallyHidden,
"aksel-typo--uppercase": props.uppercase,
});
};
exports.typoClassNames = typoClassNames;
//# sourceMappingURL=util.js.map