import { h } from 'preact'; const noop = () => {}; const BUTTON_COLORS = { blue: { normal: 'bg-blue-500', hover: 'hover:bg-blue-400' }, red: { normal: 'bg-red-500', hover: 'hover:bg-red-400' }, green: { normal: 'bg-green-500', hover: 'hover:bg-green-400' }, }; export default function Button({ children, className, color = 'blue', onClick, size, ...attrs }) { return (
{children}
); }