mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-04-04 03:11:22 -06:00
7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
import { ButtonHTMLAttributes } from "react"
|
|
|
|
export function Button(props: ButtonHTMLAttributes<HTMLButtonElement>) {
|
|
return <button {...props} className="px-4 py-2 bg-primary text-white rounded-md hover:bg-secondary transition-colors" />
|
|
}
|
|
|