noredink-ui/styleguide-app/Examples/Divider.elm
2020-06-19 13:41:28 -07:00

39 lines
729 B
Elm

module Examples.Divider exposing (Msg, State, example)
{-|
@docs Msg, State, example
-}
import AtomicDesignType exposing (AtomicDesignType(..))
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 ]
, atomicDesignType = AtomicDesignType.Atom
, state = {}
, update = \_ state -> ( state, Cmd.none )
, subscriptions = \_ -> Sub.none
, view = \state -> [ Divider.view "Dividing Line" ]
}