Pipeline/frontend/src/components/auth/AdminOnlyNotice.tsx

12 lines
279 B
TypeScript
Raw Normal View History

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">
{message}
</div>
);
}