(props)
| 9 | } |
| 10 | |
| 11 | export const ClearButton: React.FC<ClearButtonProps> = (props) => ( |
| 12 | <button |
| 13 | type="button" |
| 14 | data-testid={props.dataTestId} |
| 15 | className={cn( |
| 16 | "text-xs font-semibold text-accent-foreground", |
| 17 | props.className, |
| 18 | )} |
| 19 | onClick={props.onClick} |
| 20 | > |
| 21 | Clear |
| 22 | </button> |
| 23 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…