Last active
December 5, 2018 18:36
-
-
Save fabiogiolito/00682f32724a14cb3164b8295afd7ae9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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