ToggleButton(
foregroundColor: Color("blackLD"),
backgroundColor: Color("lightGreyLD"),
iconName: "name=eye, size=small, outlined=no",
size: 18
)
CustomBackButton()
CustomXButton()
LargeButton(state: .default, action: {
print("Default Button Tapped")
}) {
Text("Default")
}
LargeButton(state: .primary, action: {
print("Primary Button Tapped")
}) {
Text("Primary")
}
LargeButton(state: .disabled, action: {
print("Disabled Button Tapped")
}) {
Text("Disabled")
}