test(web): Button

This commit is contained in:
Paul Armstrong
2021-02-11 14:13:30 -08:00
committed by Blake Blackshear
parent 85776cc7d0
commit a202c44a0f
2 changed files with 36 additions and 4 deletions

View File

@@ -1,7 +1,5 @@
import { h } from 'preact';
const noop = () => {};
const ButtonColors = {
blue: {
contained: 'bg-blue-500 focus:bg-blue-400 active:bg-blue-600 ring-blue-300',
@@ -50,7 +48,6 @@ export default function Button({
color = 'blue',
disabled = false,
href,
onClick,
size,
type = 'contained',
...attrs
@@ -73,7 +70,6 @@ export default function Button({
aria-disabled={disabled ? 'true' : 'false'}
tabindex="0"
className={classes}
onClick={onClick || noop}
href={href}
{...attrs}
>