import Button from 'react-bootstrap/Button';

const Buttons = ({children}: {children: React.ReactNode}) => {
    return (
        <Button className='btn-primary default-btn-style border-0'>
            {children}
        </Button>
    )
}

export default Buttons