import React from 'react' import { COLORS } from '../lib/constants' const Button = ({ id, onClick = () => {}, className = '', background = COLORS.BLACK, color = COLORS.SECONDARY, hoverBackground = COLORS.HOVER, hoverColor, disabled, selected, children, border, center, large, style = {}, flex = 1, padding = 0, margin = 0 }) => ( ) export default Button