import React, { type ButtonHTMLAttributes, type ReactNode } from "react"; import { Loader } from "./Loader"; interface ButtonProps extends ButtonHTMLAttributes { isLoading?: boolean; children: ReactNode; } export const Button: React.FC = ({ onClick, isLoading = false, children, className = "", ...props }) => { return ( ); };