15 lines
290 B
TypeScript
15 lines
290 B
TypeScript
|
// import chakra button type
|
||
|
import type { ButtonProps } from '@chakra-ui/react';
|
||
|
|
||
|
interface ChakraButtonProps {
|
||
|
defaultProps: ButtonProps;
|
||
|
}
|
||
|
|
||
|
export const ChakraButton: ChakraButtonProps = {
|
||
|
defaultProps: {
|
||
|
colorScheme: 'chakra.throat',
|
||
|
size: 'sm',
|
||
|
variant: 'solid'
|
||
|
}
|
||
|
};
|