From 5a40588810f28585cb32f4ca6ff7f9855a15f1cf Mon Sep 17 00:00:00 2001 From: Ravindra Kele Date: Fri, 27 Sep 2024 16:05:40 +0530 Subject: [PATCH] Fixes in Container --- .../container/container.stories.jsx | 28 ------------------- 1 file changed, 28 deletions(-) diff --git a/src/components/container/container.stories.jsx b/src/components/container/container.stories.jsx index 89f5eede..2a31e4ee 100644 --- a/src/components/container/container.stories.jsx +++ b/src/components/container/container.stories.jsx @@ -103,34 +103,6 @@ export default { }, }; -export const BasicFlexbox = { - args: { - gap: 'sm', - direction: 'row', - justify: 'start', - align: 'stretch', - className: 'bg-gray-200 p-4', - }, - render: ( args ) => { - const containerStyle = args.direction === 'row' ? { height: '7rem' } : { width: '7rem' }; - const itemStyle = args.direction === 'row' ? { height: '4rem' } : { width: '4rem' }; - - return ( - - - Item 1 - - - Item 2 - - - Item 3 - - - ); - }, -}; - export const ResponsiveFlex = { args: { gap: 'sm',