({ children, ...rest })
| 25 | }; |
| 26 | |
| 27 | export function PrimaryButton({ children, ...rest }) { |
| 28 | return ( |
| 29 | <Button {...rest} className="bg-slate-600 text-white active:bg-slate-700"> |
| 30 | {children} |
| 31 | </Button> |
| 32 | ); |
| 33 | } |
| 34 | |
| 35 | PrimaryButton.propTypes = ButtonType; |
nothing calls this directly
no outgoing calls
no test coverage detected