Skip to content

Commit

Permalink
chore: add aria-label value to links in NavigationBar Storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
sarkaaa committed Dec 3, 2024
1 parent e64f49f commit c9f7027
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,13 @@ export const NavigationBarComponent: Story = {
Flights
</ButtonLink>
<Stack direction="row" spacing="100" justify="end" shrink>
<ButtonLink iconLeft={<StarFull />} type="secondary" />
<ButtonLink iconLeft={<QuestionCircle />} type="secondary" />
<ButtonLink iconLeft={<AccountCircle />} type="secondary" />
<ButtonLink aria-label="Favourites" iconLeft={<StarFull />} type="secondary" />
<ButtonLink
aria-label="Questions and Answers"
iconLeft={<QuestionCircle />}
type="secondary"
/>
<ButtonLink aria-label="Account" iconLeft={<AccountCircle />} type="secondary" />
</Stack>
</Stack>
</NavigationBar>
Expand Down

0 comments on commit c9f7027

Please sign in to comment.