Properties of the Border shader

interface BorderProps {
    bottom: number;
    color: number;
    left: number;
    right: number;
    top: number;
    width: number | [number, number, number, number];
}

Properties

bottom: number

Bottom width

color: number

Color of the border in 0xRRGGBBAA

0xffffffff
left: number

Left width

right: number

Right width

top: number

Top width

width: number | [number, number, number, number]

Width of the border in pixels

0