import { ButtonHTMLAttributes, DetailedHTMLProps } from 'react'; import { cn } from '../../../helper/cn'; export const Button = ({ isLoading, ...props }: DetailedHTMLProps< ButtonHTMLAttributes, HTMLButtonElement > & { isLoading?: boolean; }) => { return ( ); };