diff --git a/docs/_includes/layouts/icons-example.njk b/docs/_includes/layouts/icons-example.njk index 9a691ee..cc34adf 100644 --- a/docs/_includes/layouts/icons-example.njk +++ b/docs/_includes/layouts/icons-example.njk @@ -20,7 +20,13 @@ {{ nhsappIcon('calendar') }} calendar calendar.svg - + Add to calendar + + + {{ nhsappIcon('clock') }} + clock + clock.svg + Long stay on appointments {{ nhsappIcon('chevronRight') }} @@ -44,19 +50,19 @@ {{ nhsappIcon('download') }} download download.svg - + Download a document on appointments {{ nhsappIcon('email') }} email - email.svg - + email.svg + Get a copy of document by email on appointments {{ nhsappIcon('filter') }} filter filter.svg - + Filter a list {{ nhsappIcon('heartFilled') }} @@ -91,8 +97,8 @@ {{ nhsappIcon('letter') }} letter - letter.svg - + letter.svg + Get a copy of document by post on appointments {{ nhsappIcon('messagesFilled') }} @@ -118,11 +124,24 @@ messages-unread.svg Messages with unread items - bottom navigation and card links + + {{ nhsappIcon('night') }} + night + night.svg + Overnight stay on appointments + + + {{ nhsappIcon('phoneCall') }} + phoneCall + + phone-call.svg + Call to confirm on appointments + {{ nhsappIcon('sort') }} sort sort.svg - + Sort a list {{ nhsappIcon('switchProfile') }} diff --git a/src/assets/icons/clock.svg b/src/assets/icons/clock.svg new file mode 100644 index 0000000..5a6a822 --- /dev/null +++ b/src/assets/icons/clock.svg @@ -0,0 +1,4 @@ + diff --git a/src/assets/icons/night.svg b/src/assets/icons/night.svg new file mode 100644 index 0000000..8ac4396 --- /dev/null +++ b/src/assets/icons/night.svg @@ -0,0 +1,3 @@ + diff --git a/src/assets/icons/phone-call.svg b/src/assets/icons/phone-call.svg new file mode 100644 index 0000000..e8def07 --- /dev/null +++ b/src/assets/icons/phone-call.svg @@ -0,0 +1,3 @@ + diff --git a/src/styles/icon/icons.njk b/src/styles/icon/icons.njk index 64844d4..2f887f4 100644 --- a/src/styles/icon/icons.njk +++ b/src/styles/icon/icons.njk @@ -10,6 +10,10 @@ {% include "../../assets/icons/chevron-right.svg" %} {% endmacro %} +{% macro clock() %} + {% include "../../assets/icons/clock.svg" %} +{% endmacro %} + {% macro crossFilled() %} {% include "../../assets/icons/cross-filled.svg" %} {% endmacro %} @@ -70,6 +74,14 @@ {% include "../../assets/icons/messages-unread.svg" %} {% endmacro %} +{% macro night() %} + {% include "../../assets/icons/night.svg" %} +{% endmacro %} + +{% macro phoneCall() %} + {% include "../../assets/icons/phone-call.svg" %} +{% endmacro %} + {% macro sort() %} {% include "../../assets/icons/sort.svg" %} {% endmacro %}