Skip to content

Instantly share code, notes, and snippets.

@fabiogiolito
Last active December 5, 2018 18:36
Show Gist options
  • Save fabiogiolito/00682f32724a14cb3164b8295afd7ae9 to your computer and use it in GitHub Desktop.
Save fabiogiolito/00682f32724a14cb3164b8295afd7ae9 to your computer and use it in GitHub Desktop.
let btn1 = StyledButton(text: "Regular")
let btn2 = StyledButton(text: "Tint primary wide", styles: [.tintPrimary, .wide])
let btn3 = StyledButton(text: "Primary large", styles: [.primary, .large])
let btn4 = StyledButton(text: "Large", styles: [.large])
let btn5 = StyledButton(text: "Label Button", styles: [.label, .tintPrimary])
let btn6 = StyledButton(text: "Secondary", styles: [.secondary])
let btn7 = StyledButton(text: "Tag", styles: [.tag])
let btn8 = StyledButton(text: "Vertical", image: UIImage(named: "circle"), styles: [.iconVertical, .tintSecondary])
let btn9 = StyledButton(text: "With icon", image: UIImage(named: "circle"), styles: [.iconHorizontal])
let btn10 = StyledButton(image: UIImage(named: "star"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment