From 28af7865e6a8103865df8e9a8b229e4982c57b41 Mon Sep 17 00:00:00 2001 From: Jesse Katsumata Date: Fri, 12 Apr 2024 13:16:45 +0900 Subject: [PATCH] fix: remove unused import --- src/Dividers/Divider.stories.mdx | 1 - src/Labels/BaseLabel.stories.tsx | 36 +++++++++++++++++--------------- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/src/Dividers/Divider.stories.mdx b/src/Dividers/Divider.stories.mdx index e9c362b..50b3a38 100644 --- a/src/Dividers/Divider.stories.mdx +++ b/src/Dividers/Divider.stories.mdx @@ -1,5 +1,4 @@ import {Meta, Story, Canvas, ArgsTable} from '@storybook/addon-docs'; -import {action} from '@storybook/addon-actions'; import {Divider} from './Divider'; { - const {primaryColor, white} = useColors(); + const { primaryColor, white } = useColors(); return ( - - + + Label - + Primary {'\u2714'}}> + style={{ margin: 8 }} + leadingComponent={{"\u2714"}} + > With Leading Component {'\u2714'}}> + style={{ margin: 8 }} + tailingComponent={{"\u2714"}} + > With Tailing Component - + With ActionButton @@ -49,5 +51,5 @@ dark.story = { }; export default { - title: 'Labels/BaseLabel', + title: "Labels/BaseLabel", };