chore(icons): add more icons

This commit is contained in:
Sarah Vaupel 2020-08-27 23:32:43 +02:00
parent 66352522da
commit dddb2746e5

View File

@ -86,6 +86,11 @@ data Icon
| IconFileUploadSession
| IconStandaloneFieldError
| IconFileUser
| IconFastBackward
| IconBackward
| IconCurrent
| IconForward
| IconFastForward
deriving (Eq, Ord, Enum, Bounded, Show, Read, Generic, Typeable)
iconText :: Icon -> Text
@ -150,6 +155,11 @@ iconText = \case
IconFileUploadSession -> "file-upload"
IconStandaloneFieldError -> "exclamation"
IconFileUser -> "file-user"
IconFastBackward -> "angle-double-left"
IconBackward -> "angle-left"
IconCurrent -> "circle"
IconForward -> "angle-right"
IconFastForward -> "angle-double-right"
instance Universe Icon
instance Finite Icon