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

{text}

); }; export default DestructibleAlert;