import classNames from "classnames"; import { I18nText, ThemeColor, useC } from "../common"; import Spinner from "../Spinner"; import "./LoadingButton.css"; interface LoadingButtonProps extends React.ComponentPropsWithoutRef<"button"> { color?: ThemeColor; text?: I18nText; loading?: boolean; } export default function LoadingButton(props: LoadingButtonProps) { const c = useC(); const { color, text, loading, className, children, ...otherProps } = props; if (text != null && children != null) { console.warn("You can't set both text and children props."); } return ( ); }