Newer
Older
import { ReactNode } from "react"
interface ButtonProps {
type?: "button" | "reset" | "submit"
title: string,
icon?: ReactNode
}
export const Button = (props: ButtonProps) => {
return (
<button
className="border rounded p-4 hover:bg-neutral-200"
type={props.type}