import { h } from 'preact'; const noop = () => {}; export default function Button({ children, color, onClick, size }) { return (
{children}
); }