8 lines
No EOL
407 B
TypeScript
8 lines
No EOL
407 B
TypeScript
import {ButtonHTMLAttributes, DetailedHTMLProps, FC} from "react";
|
|
import {clsx} from "clsx";
|
|
|
|
export const Button: FC<DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>> = (props) => {
|
|
return (
|
|
<button {...props} type={props.type || 'button'} className={clsx('bg-forth px-[24px] h-[40px] cursor-pointer items-center justify-center flex', props?.className)} />
|
|
)
|
|
} |