mirror of
https://github.com/Ukendio/jecs.git
synced 2026-03-18 00:44:32 +00:00
22 lines
No EOL
451 B
Text
22 lines
No EOL
451 B
Text
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 |