File

projects/commons/src/lib/elements/tooltip/interfaces/tooltip.interface.ts

Index

Properties

Properties

color
color: Colors
Type : Colors
isActive
isActive: boolean
Type : boolean
Optional
isMultiLine
isMultiLine: boolean
Type : boolean
Optional
label
label: string
Type : string
position
position: "left" | "top" | "right" | "bottom"
Type : "left" | "top" | "right" | "bottom"
import { Colors } from '../../../shared/enums';

export interface ITooltip {
    label: string;
    isActive?: boolean;
    isMultiLine?: boolean;
    color: Colors;
    position: 'left' | 'top' | 'right' | 'bottom';
}

result-matching ""

    No results matching ""