Interface FontIcon<T>

interface FontIcon<T> {
    className?: string;
    color?: string;
    content?: T extends object
        ? keyof T<T> & string
        : string;
    font?: string;
    height?: number;
    isLiga?: boolean;
    offsetLeft?: number;
    offsetTop?: number;
    tagName?: string;
    width?: number;
}

Type Parameters

  • T

Properties

className?: string
color?: string
content?: T extends object
    ? keyof T<T> & string
    : string
font?: string
height?: number
isLiga?: boolean
offsetLeft?: number
offsetTop?: number
tagName?: string
width?: number