jecs/modules/Jabby/ui/components/util/shadow.luau
2026-02-18 01:39:54 +01:00

20 lines
No EOL
342 B
Text

local vide = require(script.Parent.Parent.Parent.Parent.vide)
local create = vide.create
type can<T> = T | () -> T
type props = {
zindex: can<number>?,
transparency: can<number>?
}
return function(props: props)
return create "UIStroke" {
Thickness = 2,
Color = Color3.new(0, 0, 0),
Transparency = 0.8
}
end