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