diff --git a/src/Button/PrimaryButton.tsx b/src/Button/PrimaryButton.tsx index 65b865f55..d24ab6cb2 100644 --- a/src/Button/PrimaryButton.tsx +++ b/src/Button/PrimaryButton.tsx @@ -2,7 +2,7 @@ import styled, { CSSObject } from "styled-components"; import { darken } from "polished"; import Button, { ButtonProps } from "./Button"; -const PrimaryButton: React.FC> = styled(Button)( +const PrimaryButton = styled(Button)( ({ disabled, theme }: ButtonProps): CSSObject => ({ color: theme.colors.white, borderColor: theme.colors.blue,