2
0

fix: 🐛 UpgradeModal ending with a dot

This commit is contained in:
Baptiste Arnaud
2022-04-05 14:55:19 +02:00
parent 786908e9cf
commit 1fb4328938
11 changed files with 8 additions and 8 deletions

View File

@ -0,0 +1,13 @@
import { Button, ButtonProps } from '@chakra-ui/react'
import * as React from 'react'
export const ActionButton = (props: ButtonProps) => (
<Button
colorScheme="blue"
size="lg"
w="full"
fontWeight="extrabold"
py={{ md: '8' }}
{...props}
/>
)