import type { ComponentProps } from "react"; import { cn } from "../../utils/cn"; type Props = ComponentProps<"button"> & { loading?: boolean; loadingClassName?: string; }; export function Button({ loading, loadingClassName, children, ...props }: Props) { return ( ); }