import { Meta, StoryObj } from "@storybook/react" import React from "react" import { TestGridContainer } from "../../../tests/TestGridContainer" import { Error } from "../../icons/material-symbols/outlined/Error" import { Alert } from "./Alert" type Story = StoryObj const meta: Meta = { title: "Design System/Alert", component: Alert, args: { children: ( <> 5 items failed Purchases can fail due to network issues, gas fee increases, or because someone else bought the item before you. ), }, } export default meta export const Default: Story = {} export const WithoutIcon: Story = { args: { children: ( 5 items failed Purchases can fail due to network issues, gas fee increases, or because someone else bought the item before you. ), }, } export const AllVariants: Story = { render: function Render() { return ( ) }, }