import { X } from "lucide-react"; import React, { useState } from "react"; import { FaExclamationCircle } from "react-icons/fa"; import { Button } from "@/components/ui/button"; interface NoticeProps { message: string hidden?: boolean } const WarningNotice = ({ message, hidden = false } : NoticeProps ) => { const [open, setOpen] = useState(true) return (
Info

{message}

); } export default WarningNotice;