import { Alert } from '@pega/cosmos-react-core';
export default {
    title: 'Core/Badges/Alert',
    component: Alert
};
export const AlertBadge = (args) => {
    return <Alert variant={args.variant}/>;
};
AlertBadge.args = {
    variant: 'success'
};
AlertBadge.argTypes = {
    variant: { options: ['success', 'urgent'], control: { type: 'select' } }
};
//# sourceMappingURL=Alert.stories.jsx.map