소스 검색

updated subcmit button to outline-success

Abhinav-grd 4 년 전
부모
커밋
800fdcbebc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/components/SubmitButton.tsx

+ 1 - 1
src/components/SubmitButton.tsx

@@ -7,7 +7,7 @@ interface Props {
 }
 const SubmitButton = ({ loading, buttonText }: Props) => (
     <Button
-        variant="success"
+        variant="outline-success"
         type="submit"
         block
         disabled={loading}