2018-06-22 12:37:43 +03:00
|
|
|
module Headings exposing (h1, h2, h3, h4, h5)
|
|
|
|
|
2018-10-23 19:55:30 +03:00
|
|
|
import Html.Styled exposing (Html)
|
|
|
|
import Nri.Ui.Text.V2 as Text
|
2018-06-22 12:37:43 +03:00
|
|
|
|
|
|
|
|
2018-10-23 19:55:30 +03:00
|
|
|
h1 : List (Html msg) -> Html msg
|
2018-06-22 12:37:43 +03:00
|
|
|
h1 =
|
2018-10-23 19:55:30 +03:00
|
|
|
Text.heading
|
2018-06-22 12:37:43 +03:00
|
|
|
|
|
|
|
|
2018-10-23 19:55:30 +03:00
|
|
|
h2 : List (Html msg) -> Html msg
|
2018-06-22 12:37:43 +03:00
|
|
|
h2 =
|
2018-10-23 19:55:30 +03:00
|
|
|
Text.heading
|
2018-06-22 12:37:43 +03:00
|
|
|
|
|
|
|
|
2018-10-23 19:55:30 +03:00
|
|
|
h3 : List (Html msg) -> Html msg
|
2018-06-22 12:37:43 +03:00
|
|
|
h3 =
|
2018-10-23 19:55:30 +03:00
|
|
|
Text.subHeading
|
2018-06-22 12:37:43 +03:00
|
|
|
|
|
|
|
|
2018-10-23 19:55:30 +03:00
|
|
|
h4 : List (Html msg) -> Html msg
|
2018-06-22 12:37:43 +03:00
|
|
|
h4 =
|
2018-10-23 19:55:30 +03:00
|
|
|
Text.subHeading
|
2018-06-22 12:37:43 +03:00
|
|
|
|
|
|
|
|
2018-10-23 19:55:30 +03:00
|
|
|
h5 : List (Html msg) -> Html msg
|
2018-06-22 12:37:43 +03:00
|
|
|
h5 =
|
2018-10-23 19:55:30 +03:00
|
|
|
Text.subHeading
|