import {Alert} from "ui";
import {ArgsTable, Meta, Story} from "@storybook/addon-docs";
<Meta title="Components/Text/Alert/old" component={Alert}/>
export const Template = (args) => <Alert {...args} />;
# Alert
This component renders an alert.
## Props
<ArgsTable story="Default"/>
## Examples
<Story name="Default" args={{text: "Example", icon: "alarm", level: "Info"}}>
{Template.bind({})}
</Story>