This commit is contained in:
2026-05-13 02:49:13 +08:00
parent 33951a649b
commit 92e4fd11f1
18 changed files with 697 additions and 1717 deletions

View File

@@ -0,0 +1,9 @@
import { ComponentPropsWithRef } from "react";
type ButtonLoadingProps = ComponentPropsWithRef<"span">;
export const ButtonLoading = (props: ButtonLoadingProps) => {
const { children, ...rest } = props;
return <span {...rest}>{children}</span>;
};
ButtonLoading.displayName = "ButtonLoading";