2026-05-19 01:17:58 -05:00
|
|
|
type AdminOnlyNoticeProps = {
|
|
|
|
|
message: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export function AdminOnlyNotice({ message }: AdminOnlyNoticeProps) {
|
|
|
|
|
return (
|
2026-05-20 01:41:15 -05:00
|
|
|
<div className="rounded-xl border border-border bg-card px-6 py-5 text-sm text-muted-foreground shadow-sm">
|
2026-05-19 01:17:58 -05:00
|
|
|
{message}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|