@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
13 lines • 542 B
JavaScript
import { cl } from "../utils/helpers/index.js";
export const typoClassNames = (props) => {
return 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,
});
};
//# sourceMappingURL=util.js.map