// @ts-nocheck import { AlertButton, AlertButtonCross } from '../design/components/Alert.design'; import React from 'react'; export const AlertTemplate = ({ style, options, message, close }) => ( {message} {options.type === 'SUCCESS' && '!'} {options.type === 'DANGER' && '.'} {options.type === 'WARNING' && '.'} {options.type === 'INFO' && '.'} x );