button : List Framework.Modifier.Modifier -> Maybe msg -> String -> Element msg
Generate an Input.button element. Example:
button [ Medium, Success, Outlined ] Nothing "Button"
buttonWidth : List Framework.Modifier.Modifier -> Maybe msg -> String -> Basics.Int -> Element msg
buttonLink : List Framework.Modifier.Modifier -> String -> String -> Element msg
buttonLinkWidth : List Framework.Modifier.Modifier -> String -> String -> Basics.Int -> Element msg
buttonCustomizable : { width : Basics.Int, label : String, onPress : Maybe msg, modifiers : List Framework.Modifier.Modifier, extraAttrs : List (Element.Attribute msg) } -> Element msg
buttonAttr : List Framework.Modifier.Modifier -> List (Element.Attribute msg)
Generate a list of attributes that can be attached to any element
row (buttonAttr [ Info ] ++ [ spacing 10 ]) [ text "Col 1", text "Col 2" ]
Used internally to generate the Style Guide
introspection : { name : String, description : String, signature : String, variations : List ( String, List ( Element a1, String ) ) }