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

12 lines
279 B
TypeScript

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>
);
}