Describes the style properties for an element.

interface Style {
    font?: Font;
    backgroundColor?: string;
    color?: string;
    height?: string | number;
    width?: string;
    radius?: string;
    margin?: string;
    padding?: string;
    border?: Border;
    alignment?: AlignmentType;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

font?: Font
backgroundColor?: string
color?: string
height?: string | number
width?: string
radius?: string
margin?: string
padding?: string
border?: Border
alignment?: AlignmentType