import { ReactNode } from 'react' import clsx from 'clsx' export default function Button(props: { className?: string onClick?: () => void color: 'green' | 'red' | 'blue' | 'indigo' | 'yellow' | 'gray' children?: ReactNode type?: 'button' | 'reset' | 'submit' }) { const { className, onClick, children, color = 'indigo', type = 'button', } = props return ( ) }