({ children, title, className }: WarningAlertProps)
| 8 | } |
| 9 | |
| 10 | export const WarningAlert = ({ children, title, className }: WarningAlertProps) => { |
| 11 | return ( |
| 12 | <Alert variant="warning" title={title} className={className}> |
| 13 | {children} |
| 14 | </Alert> |
| 15 | ) |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…