NarraLeaf

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.

fontSize

See fontSize.

On this page