From a8de9dd20ce02ecb28b010ddccc4ea71e59538f0 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Thu, 11 Apr 2024 15:08:31 +0300 Subject: [PATCH] fix(left-sidebar-icon-button-story): update with new props --- .../LeftSidebar/LeftSidebarIconButton.stories.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/components/General/LeftSidebar/LeftSidebarIconButton.stories.tsx b/src/components/General/LeftSidebar/LeftSidebarIconButton.stories.tsx index cf32483c..6d865db0 100644 --- a/src/components/General/LeftSidebar/LeftSidebarIconButton.stories.tsx +++ b/src/components/General/LeftSidebar/LeftSidebarIconButton.stories.tsx @@ -3,6 +3,7 @@ import { DashboardIcon } from '@status-im/icons' import { withRouter } from 'storybook-addon-react-router-v6' import LeftSidebarIconButton from './LeftSidebarIconButton' +import { DASHBOARD } from '../../../constants' const meta = { title: 'General/LeftSidebarIconButton', @@ -19,16 +20,14 @@ type Story = StoryObj export const Default: Story = { args: { - iconEl: , - isDisabled: false, - path: 'dashboard', + icon: , + path: DASHBOARD, }, } export const Disabled: Story = { args: { - iconEl: , - isDisabled: true, - path: 'dashboard', + icon: , + path: DASHBOARD, }, }