import { Button, Text, useColorModeValue } from '@chakra-ui/react'; export const PrimaryBtn = ({ children, w, display, m, onClick, type, bg, disabled, }) => { const color = useColorModeValue('light.primary', 'dark.primary'); return ( ); }; export const SecondaryBtn = ({ children, w, display, onClick, color, disabled, size, m, p, name, }) => { const hoverColor = useColorModeValue( 'light.headingHover', 'dark.headingHover' ); return ( ); }; export const LightBtn = ({ children, onClick, disabled, w, bg, m }) => { return ( ); }; export const ReactionButton = ({ value, text, onClick, disabled, children, }) => { const ghostColor = useColorModeValue('light.ghostColor', 'dark.ghostColor'); return ( ); }; export const BtnRed = ({ children, ...props }) => { return ( ); }; export const BtnDefault = ({ children, ...props }) => { return ( ); };