import React from 'react' /* Import components here */ import { StyledAlert } from './alert.styles' /* Import interfaces here */ import { AlertProps } from './alert.interfaces' import { alertTheme } from './alert.theme' /* Import utilities here */ export const Alert = ({ accent, message, outline, size, status = 'basic' }: AlertProps): JSX.Element => { return ( {message} ) } Alert.defaultTheme = alertTheme