noredink-ui/styleguide-app/Examples/Divider.elm
2020-04-08 15:13:06 -07:00

37 lines
626 B
Elm

module Examples.Divider exposing (Msg, State, example)
{-|
@docs Msg, State, example
-}
import Category exposing (Category(..))
import Css
import Example exposing (Example)
import Html.Styled as Html
import Html.Styled.Attributes exposing (css)
import Nri.Ui.Divider.V2 as Divider
{-| -}
type alias State =
{}
{-| -}
type alias Msg =
()
{-| -}
example : Example State Msg
example =
{ name = "Nri.Ui.Divider.V2"
, categories = [ Layout ]
, state = {}
, update = \_ state -> ( state, Cmd.none )
, subscriptions = \_ -> Sub.none
, view = \state -> [ Divider.view "Dividing Line" ]
}