mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-28 18:24:04 +03:00
c1ff19f0d0
* make html.styled versions of remaining widgets * upgrade all the examples * change license name
30 lines
406 B
Elm
30 lines
406 B
Elm
module Headings exposing (h1, h2, h3, h4, h5)
|
|
|
|
import Html.Styled exposing (Html)
|
|
import Nri.Ui.Text.V2 as Text
|
|
|
|
|
|
h1 : List (Html msg) -> Html msg
|
|
h1 =
|
|
Text.heading
|
|
|
|
|
|
h2 : List (Html msg) -> Html msg
|
|
h2 =
|
|
Text.heading
|
|
|
|
|
|
h3 : List (Html msg) -> Html msg
|
|
h3 =
|
|
Text.subHeading
|
|
|
|
|
|
h4 : List (Html msg) -> Html msg
|
|
h4 =
|
|
Text.subHeading
|
|
|
|
|
|
h5 : List (Html msg) -> Html msg
|
|
h5 =
|
|
Text.subHeading
|