import React from 'react';
import styles from './style.module.scss'
const Button = ({
children,
className,
color = 'black',
type = 'button',
...props
}) => (
);
const ButtonUnobtrusive = ({
children,
className,
type = 'button',
...props
}) => (
);
export { ButtonUnobtrusive };
export default Button;