24 lines
474 B
TypeScript
24 lines
474 B
TypeScript
import type { ButtonHTMLAttributes, PropsWithChildren } from "react";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
type ButtonProps = PropsWithChildren<ButtonHTMLAttributes<HTMLButtonElement>>;
|
|
|
|
export function Button({
|
|
children,
|
|
className = "",
|
|
type = "button",
|
|
...props
|
|
}: ButtonProps) {
|
|
return (
|
|
<button
|
|
type={type}
|
|
className={twMerge("button-play", className)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export default Button;
|