| 3 | import { BUTTON_HEIGHT, DARK_BLUE, SPACING } from '../utils'; |
| 4 | |
| 5 | interface ButtonProps extends PressableProps { |
| 6 | text: string; |
| 7 | hint?: string; |
| 8 | loading?: boolean; |
| 9 | } |
| 10 | |
| 11 | export const Button = (props: ButtonProps) => { |
| 12 | const { text, hint, style, loading, ...rest } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected