Skip to content

Commit

Permalink
Update Defaults.luau
Browse files Browse the repository at this point in the history
  • Loading branch information
nightcycle authored Aug 1, 2024
1 parent d118bfe commit 1a0c0d5
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/Component/Snackbar/Small/Defaults.luau
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ type CanBeState<V> = ColdFusion.CanBeState<V>
return {
NEW = {
TEXT = "",
BUTTON_TEXT = nil,
ON_BUTTON_CLICK = nil,
ON_CLOSE_CLICK = nil,
BUTTON_TEXT = nil :: string?,
ON_BUTTON_CLICK = nil :: ((() -> ())?),
ON_CLOSE_CLICK = nil :: ((() -> ())?),
TEXT_COLOR = Color3.new(),
BUTTON_TEXT_COLOR = Color3.new(),
BACKGROUND_COLOR = Color3.new(),
Expand All @@ -38,33 +38,33 @@ return {
SURFACE_CONTAINER = {
STYLE = Style.new(1, Enum.Font.SourceSans, "Light", Color3.new(0, 0.4, 0.7)),
TEXT = "",
BUTTON_TEXT = nil,
ON_BUTTON_CLICK = nil,
ON_CLOSE_CLICK = nil,
BUTTON_TEXT = nil :: string?,
ON_BUTTON_CLICK = nil :: ((() -> ())?),
ON_CLOSE_CLICK = nil :: ((() -> ())?),
ELEVATION = 0,
},
PRIMARY_CONTAINER = {
STYLE = Style.new(1, Enum.Font.SourceSans, "Light", Color3.new(0, 0.4, 0.7)),
TEXT = "",
BUTTON_TEXT = nil,
ON_BUTTON_CLICK = nil,
ON_CLOSE_CLICK = nil,
BUTTON_TEXT = nil :: string?,
ON_BUTTON_CLICK = nil :: ((() -> ())?),
ON_CLOSE_CLICK = nil :: ((() -> ())?),
ELEVATION = 0,
},
SECONDARY_CONTAINER = {
STYLE = Style.new(1, Enum.Font.SourceSans, "Light", Color3.new(0, 0.4, 0.7)),
TEXT = "",
BUTTON_TEXT = nil,
ON_BUTTON_CLICK = nil,
ON_CLOSE_CLICK = nil,
BUTTON_TEXT = nil :: string?,
ON_BUTTON_CLICK = nil :: ((() -> ())?),
ON_CLOSE_CLICK = nil :: ((() -> ())?),
ELEVATION = 0,
},
TERTIARY_CONTAINER = {
STYLE = Style.new(1, Enum.Font.SourceSans, "Light", Color3.new(0, 0.4, 0.7)),
TEXT = "",
BUTTON_TEXT = nil,
ON_BUTTON_CLICK = nil,
ON_CLOSE_CLICK = nil,
BUTTON_TEXT = nil :: string?,
ON_BUTTON_CLICK = nil :: ((() -> ())?),
ON_CLOSE_CLICK = nil :: ((() -> ())?),
ELEVATION = 0,
},
}

0 comments on commit 1a0c0d5

Please sign in to comment.