We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1963079 commit cd89453Copy full SHA for cd89453
1 file changed
src/SubmitButton.tsx
@@ -24,7 +24,7 @@ export const SubmitButton: React.FC<{
24
</Text>
25
</Box>
26
<Box borderStyle={'round'} borderColor={!props.canSubmit ? 'gray' : isFocused ? 'blue' : 'green'} paddingX={2}>
27
- <Text color={!props.canSubmit ? 'gray' : isFocused ? 'blue' : 'white'} bold={true} underline={isFocused}>
+ <Text color={!props.canSubmit ? 'gray' : isFocused ? 'blue' : 'green'} bold={true} underline={isFocused}>
28
{props.canSubmit ? 'Submit form' : 'Cannot submit form yet'}
29
30
0 commit comments