From e3676d2a1e5d94cb43567220a17b2cb051bec579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Dombya?= <135591453+hervedombya@users.noreply.github.com> Date: Thu, 19 Sep 2024 11:05:01 +0200 Subject: [PATCH] Refactor iconTable in Icon component --- src/lib/components/icon/Icon.component.tsx | 1 + stories/icons.mdx | 1 + 2 files changed, 2 insertions(+) diff --git a/src/lib/components/icon/Icon.component.tsx b/src/lib/components/icon/Icon.component.tsx index d20923847c..01e1407e87 100644 --- a/src/lib/components/icon/Icon.component.tsx +++ b/src/lib/components/icon/Icon.component.tsx @@ -136,6 +136,7 @@ export const iconTable = { News: 'fas faBullhorn', Ring: 'fas faRing', Stop: 'fas faStop', + Play: 'fas faPlay', }; const getColor = (color: string | undefined): string => { diff --git a/stories/icons.mdx b/stories/icons.mdx index e0a35c6840..78e9e8920f 100644 --- a/stories/icons.mdx +++ b/stories/icons.mdx @@ -94,6 +94,7 @@ When next to a text, the icon and the text should have the same size. | | Hourglass | Status | FA | hourglass | `` | regular Style (far) | ? | Workflow delayed | | | Pause | Status | FA | pause | `` | solid Style (fas) | yes | Workflow paused | | | Stop | Status | FA | stop | `` | solid Style (fas) | yes | Upload stop | +| | Play | Status | FA | play | `` | solid Style (fas) | yes | Upload play | | | Upgrade | Button-action | FA | level-up-alt | `` | solid Style (fas) | yes | Upgrade version | | | Expansion | Button-action | FA | expand-alt | `` | solid Style (fas) | yes | Expand with no rebalancing | | | Rebalance | Button-action | FA | balance-scale | `` | solid Style (fas) | yes | Expand with rebalancing |