| 2 | import { Alert } from "./alert" |
| 3 | |
| 4 | interface WarningAlertProps { |
| 5 | children: ReactNode |
| 6 | title?: string |
| 7 | className?: string |
| 8 | } |
| 9 | |
| 10 | export const WarningAlert = ({ children, title, className }: WarningAlertProps) => { |
| 11 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…