Font
type Font = {
    italic?: boolean;
    bold?: boolean;
    fontFamily?: React.CSSProperties["fontFamily"];
    fontSize?: React.CSSProperties["fontSize"];
};italic
Whether the text is italic.
bold
Whether the text is bold.
fontFamily
See fontFamily (opens in a new tab).