From 3398457feedfa3b8a772edcf3a9af89340d7c7c6 Mon Sep 17 00:00:00 2001 From: Nightcycle <77173389+nightcycle@users.noreply.github.com> Date: Tue, 23 Jan 2024 17:11:57 -0500 Subject: [PATCH] Integrated progress indicator into main interface --- src/init.luau | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/init.luau b/src/init.luau index 3b1edde0..cacda48e 100644 --- a/src/init.luau +++ b/src/init.luau @@ -34,8 +34,8 @@ Synthetic.Component = { Dialog = require(Component:WaitForChild("Dialog")), Menu = { Row = { - Segmented = require(Component:WaitForChild("Menu"):WaitForChild("Row"):WaitForChild("Segmented")), Tabs = nil, + Segmented = require(Component:WaitForChild("Menu"):WaitForChild("Row"):WaitForChild("Segmented")), Bar = { Bottom = require(Component:WaitForChild("Menu"):WaitForChild("Row"):WaitForChild("Bar"):WaitForChild("Bottom")), Navigation = nil, @@ -53,6 +53,10 @@ Synthetic.Component = { PopUp = nil, }, }, + ProgressIndicator = { + Circular = require(Component:WaitForChild("ProgressIndicator"):WaitForChild("Circular")), + Linear = nil, + }, Button = { Badge = require(Component:WaitForChild("Button"):WaitForChild("Badge")), ElevatedButton = require(Component:WaitForChild("Button"):WaitForChild("ElevatedButton")),