jecs/modules/Jabby/ui/components/util/shadow.luau

20 lines
342 B
Text
Raw Normal View History

2026-02-18 00:29:34 +00:00
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