@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
27 lines (26 loc) • 546 B
TypeScript
export type TypoProps = {
/**
* Truncate text overflow with ellipsis.
*/
truncate?: boolean;
/**
* Adjusts font-weight.
*/
weight?: "regular" | "semibold";
/**
* Adjust text-align.
*/
align?: "start" | "center" | "end";
/**
* Visually hide text. Text will still be accessible for screenreaders.
*/
visuallyHidden?: boolean;
/**
* Adds spacing below text.
*/
spacing?: boolean;
/**
* Adjusts color.
*/
textColor?: "default" | "subtle";
};