Interface PathIcon<T>

interface PathIcon<T> {
    color?: string;
    height: number;
    path: T extends object
        ? keyof T<T> & string
        : string;
    width: number;
}

Type Parameters

  • T

Properties

Properties

color?: string
height: number
path: T extends object
    ? keyof T<T> & string
    : string
width: number