Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kolebjak committed Jul 13, 2023
1 parent 8017b01 commit d237db5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions src/components/FundWallet/FundWalletButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@ import { ButtonProps } from "../Button/Button"
import { useTranslation } from "react-i18next"
import { Button } from "../Button/Button"


type Props = Pick<ButtonProps, "onClick">

export const FundWalletButton = (props: Props) => {
const { t } = useTranslation()

return (
<Button {...props} variant="primary" sx={{ fontSize: 12, lineHeight: 12, p: '11px 15px' }}>
<Button
{...props}
variant="primary"
sx={{ fontSize: 12, lineHeight: 12, p: "11px 15px" }}
>
{t("fund.button")}
</Button>
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/FundWallet/components/CryptoBlockTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const CryptoBlockTitle = () => {
const { t } = useTranslation()

return (
<div sx={{ display: 'flex', align: 'center', gap: 9 }}>
<div sx={{ display: "flex", align: "center", gap: 9 }}>
<FundCryptoIcon />
<Heading as="h2" fw={600} fs={20}>
{t("fund.modal.crypto.title")}
Expand Down

0 comments on commit d237db5

Please sign in to comment.