2023-03-17 05:10:38 +00:00
|
|
|
// types
|
|
|
|
import { ButtonProps } from "./type";
|
|
|
|
|
|
|
|
export const SecondaryButton: React.FC<ButtonProps> = ({
|
|
|
|
children,
|
|
|
|
className = "",
|
|
|
|
onClick,
|
|
|
|
type = "button",
|
|
|
|
disabled = false,
|
|
|
|
loading = false,
|
|
|
|
size = "sm",
|
|
|
|
outline = false,
|
|
|
|
}) => (
|
|
|
|
<button
|
|
|
|
type={type}
|
2023-04-20 08:11:24 +00:00
|
|
|
className={`${className} border border-brand-base font-medium duration-300 ${
|
2023-03-17 05:10:38 +00:00
|
|
|
size === "sm"
|
|
|
|
? "rounded px-3 py-2 text-xs"
|
|
|
|
: size === "md"
|
|
|
|
? "rounded-md px-3.5 py-2 text-sm"
|
|
|
|
: "rounded-lg px-4 py-2 text-base"
|
2023-06-16 13:27:17 +00:00
|
|
|
} ${disabled ? "cursor-not-allowed border-brand-base bg-brand-surface-1" : ""} ${
|
2023-03-17 05:10:38 +00:00
|
|
|
outline
|
2023-04-20 08:11:24 +00:00
|
|
|
? "bg-transparent hover:bg-brand-surface-2"
|
|
|
|
: "bg-brand-surface-2 hover:border-opacity-70 hover:bg-opacity-70"
|
2023-03-17 05:10:38 +00:00
|
|
|
} ${loading ? "cursor-wait" : ""}`}
|
|
|
|
onClick={onClick}
|
|
|
|
disabled={disabled || loading}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</button>
|
|
|
|
);
|