Interface OutlineBorder

interface OutlineBorder {
    color?: string | ((theme) => string);
    focusColor?: string | ((theme) => string);
    hoverColor?: string | ((theme) => string);
}

Properties

color?: string | ((theme) => string)

Type declaration

    • (theme): string
    • Parameters

      • theme: Theme

      Returns string

focusColor?: string | ((theme) => string)

Type declaration

    • (theme): string
    • Parameters

      • theme: Theme

      Returns string

hoverColor?: string | ((theme) => string)

Type declaration

    • (theme): string
    • Parameters

      • theme: Theme

      Returns string