bank/components/Button.tsx

13 lines
335 B
TypeScript
Raw Permalink Normal View History

2024-08-23 23:14:39 -05:00
import { JSX } from 'preact'
import { IS_BROWSER } from '$fresh/runtime.ts'
export function Button(props: JSX.HTMLAttributes<HTMLButtonElement>) {
return (
<button
{...props}
disabled={!IS_BROWSER || props.disabled}
class='px-2 py-1 border-gray-500 border-2 rounded bg-white hover:bg-gray-200 transition-colors'
/>
)
}