| 1 | import { cn } from '../shadcn'; |
| 2 | |
| 3 | interface IErrorProps { |
| 4 | className?: string; |
| 5 | error?: string; |
| 6 | } |
| 7 | |
| 8 | export const Error = (props: IErrorProps) => { |
| 9 | const { error, className } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected