mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-03-12 13:29:15 +01:00
29 lines
728 B
TypeScript
29 lines
728 B
TypeScript
import clsx from "clsx";
|
|
import React from "react";
|
|
import "./button.less";
|
|
|
|
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
className?: string;
|
|
}
|
|
|
|
const Button: React.FC<ButtonProps> = ({ className = "primary", children, disabled, ...props }) => {
|
|
const hasIcon = React.Children.toArray(children).some(
|
|
(child) => React.isValidElement(child) && (child as React.ReactElement).type === "svg"
|
|
);
|
|
|
|
return (
|
|
<button
|
|
className={clsx("button", className, {
|
|
disabled,
|
|
hasIcon,
|
|
})}
|
|
disabled={disabled}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</button>
|
|
);
|
|
};
|
|
|
|
export { Button };
|