BoxBorderProperties
export type BoxBorderProperties = {
Color: CanBeState<Color3>?,
Thickness: CanBeState<number>?,
CornerRadius: CanBeState<UDim>?,
[FusionTypes.Child]: GuiObject,
}
The BoxBorderProperties table that is given to the BoxBorder() function that contains data about the desired BoxBorder.
Properties
Color : CanBeState<Color3>?
The color of the border. Can either be a State containing a Color3 or a Color3.
Thickness : CanBeState<number>?
The thickness of the border. Can either be a State containing a number or a number.
CornerRadius : CanBeState<UDim>?
The radius of the border. Can either be a State containing an UDim or an UDim.