jecs/modules/Jabby/ui/components/display/scroll_frame.luau

22 lines
451 B
Text
Raw Normal View History

2026-02-18 00:29:34 +00:00
local vide = require(script.Parent.Parent.Parent.Parent.vide)
local theme = require(script.Parent.Parent.Parent.util.theme)
local create = vide.create
type props = vide.vScrollingFrame
return function(props: props)
return create "ScrollingFrame" {
AutoLocalize = false,
ScrollBarThickness = 6,
ScrollBarImageColor3 = theme.fg_on_bg_low[0],
CanvasSize = UDim2.new(),
BackgroundTransparency = 1,
props
}
end