/* eslint-disable react/prop-types */ import * as React from 'react' /* Import components here */ import { StyledButton } from './button.styles' /* Import interfaces here */ import { ButtonProps } from './button.interfaces' import { buttonTheme } from './button.theme' export const Button = ({ children, className, appearance = 'filled', disabled, fullWidth = false, onClick, pulse, type = 'button', shape = 'rectangle', size = 'medium', status = 'basic', }: ButtonProps): JSX.Element => { return ( {children} ) } Button.defaultTheme = buttonTheme