Skip to content

Commit

Permalink
style(form): update terms and conditions style
Browse files Browse the repository at this point in the history
  • Loading branch information
osiastedian committed Mar 7, 2024
1 parent 29140b3 commit 642d86c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions components/Bridge/Steps/ConnectValidate/AgreeToTermsCheckbox.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { Box, Checkbox, FormControlLabel, Typography } from "@mui/material";
import {
Box,
Checkbox,
FormControlLabel,
Typography,
Link as MUILink,
} from "@mui/material";
import Link from "next/link";
import { useFormContext } from "react-hook-form";

Expand All @@ -16,14 +22,14 @@ export const ConnectValidateAgreeToTermsCheckbox = () => {
label={
<Typography variant="body1">
I agree to the{" "}
<Typography
<MUILink
component={Link}
color="primary"
target="_blank"
href="/Syscoin Terms and Conditions.pdf"
>
terms and conditions.
</Typography>
</MUILink>
</Typography>
}
/>
Expand Down

0 comments on commit 642d86c

Please sign in to comment.