Interface CornerTriangleProps

interface CornerTriangleProps {
    anchorLocation?: AnchorLocation;
    cellHeight?: number;
    cellWidth?: number;
    darkMode?: boolean;
    fill?: string;
    inset?: number;
    pathProps?: SVGProps<SVGPathElement>;
    size?: number;
}

Hierarchy

  • SVGProps<SVGSVGElement>
    • CornerTriangleProps

Properties

anchorLocation?: AnchorLocation

Default Value

AnchorLocation.TopLeft
cellHeight?: number
cellWidth?: number
darkMode?: boolean
fill?: string

defaults based on corner

inset?: number

inset within the cell

Default Value

1
pathProps?: SVGProps<SVGPathElement>
size?: number

The right sides of the triangle.

Default Value

7