about summary refs log tree commit diff
path: root/users/wpcarro/website/habit-screens/src/UI.elm
module UI exposing (..)

import Html exposing (..)
import Html.Attributes exposing (..)


button : List (Attribute msg) -> List (Html msg) -> Html msg
button attrs children =
    Html.button ([ class "focus:outline-none" ] ++ attrs) children