ERP-node/frontend/components/auth/ErrorMessage.tsx

15 lines
342 B
TypeScript

interface ErrorMessageProps {
message: string;
}
/**
* 에러 메시지 표시 컴포넌트
*/
export function ErrorMessage({ message }: ErrorMessageProps) {
if (!message) return null;
return (
<div className="my-4 rounded-lg border border-destructive/20 bg-destructive/10 px-4 py-3 text-sm text-red-700">{message}</div>
);
}