diff --git a/src/components/Alert/__stories__/Alert.stories.tsx b/src/components/Alert/__stories__/Alert.stories.tsx index ddb2f1564c..30f85ed893 100644 --- a/src/components/Alert/__stories__/Alert.stories.tsx +++ b/src/components/Alert/__stories__/Alert.stories.tsx @@ -25,7 +25,7 @@ export const Default: Story = { }, }; -const themeCases: Array = [ +const themeCases: Array> = [ 'normal', 'info', 'success', @@ -56,7 +56,7 @@ export const CustomIcon: Story = { }, }; -const cornersCases: Array = ['rounded', 'square']; +const cornersCases: Array> = ['rounded', 'square']; export const Corners: Story = { render: (args) => ( @@ -73,7 +73,7 @@ export const Corners: Story = { }, }; -const viewCases: Array = ['filled', 'outlined']; +const viewCases: Array> = ['filled', 'outlined']; export const View: Story = { render: (args) => ( @@ -90,7 +90,7 @@ export const View: Story = { }, }; -const layoutCases: Array = ['vertical', 'horizontal']; +const layoutCases: Array> = ['vertical', 'horizontal']; export const Layout: Story = { render: (args) => ( @@ -145,7 +145,7 @@ export const Actions: Story = { }, }; -const alignCases: Array = ['center', 'baseline']; +const alignCases: Array> = ['center', 'baseline']; export const Align: Story = { render: (args) => (