14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
![]() |
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}
|
||
|
/>
|
||
|
)
|