import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; import React from "react"; import { ModAlertErrorProps } from "./TAlert"; import { RxExclamationTriangle } from "react-icons/rx"; class ModAlertError extends React.Component { constructor(props: ModAlertErrorProps) { super(props); } render(): React.ReactNode { return ( Error {this.props.content} ); } } export { ModAlertError };