|
type AdminOnlyNoticeProps = {
|
|
message: string;
|
|
};
|
|
|
|
export function AdminOnlyNotice({ message }: AdminOnlyNoticeProps) {
|
|
return (
|
|
<div className="rounded-xl border border-border bg-card px-6 py-5 text-sm text-muted-foreground shadow-sm">
|
|
{message}
|
|
</div>
|
|
);
|
|
}
|