import { AlertTriangle } from "lucide-react" import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert" import { Button } from "@/components/ui/button" interface ExperimentalWarningProps { message?: string } export function ExperimentalWarning({ message }: ExperimentalWarningProps) { const defaultMessage = message || "This icon submission system is currently in an experimentation phase. Submissions will not be reviewed or processed at this time. We're gathering feedback to improve the experience." return (
Experimental Feature {defaultMessage}
) }