({ disabled, onClick, children })
| 6 | import { Button } from '../../components/buttons'; |
| 7 | |
| 8 | function PaginationButton({ disabled, onClick, children }) { |
| 9 | return ( |
| 10 | <Button disabled={disabled} onClick={onClick} className="bg-slate-500 text-white"> |
| 11 | {children} |
| 12 | </Button> |
| 13 | ); |
| 14 | } |
| 15 | |
| 16 | PaginationButton.propTypes = { |
| 17 | disabled: T.bool, |
nothing calls this directly
no outgoing calls
no test coverage detected