Properties of the FadeOutEffect

interface FadeOutEffectProps {
    fade?: number | number[];
}

Hierarchy (view full)

Properties

Properties

fade?: number | number[]

Fade around the edges of the node

You can input an array with a length of up to four or a number.

array length 4: [top, right, bottom, left]

array length 2: [20, 40] -> [20(top), 40(right), 20(bottom), 40(left)]

array length 3: [20, 40, 60] -> [20(top), 40(right), 60(bottom), 20(left)]

number: 30 -> [30, 30, 30, 30]

10