import React from "react"; interface DestructibleAlertProps { text: string; extraStyles?: string; } const DestructibleAlert = ({ text, extraStyles = "", }: DestructibleAlertProps) => { return (

{text}

); }; export default DestructibleAlert;