12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
|
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}
|
||
|
/>
|
||
|
);
|
||
|
}
|