import { ComponentPropsWithRef } from "react"; type ButtonLoadingProps = ComponentPropsWithRef<"span">; export const ButtonLoading = (props: ButtonLoadingProps) => { const { children, ...rest } = props; return {children}; }; ButtonLoading.displayName = "ButtonLoading";