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-07-17 10:58:23 +00:00
|
|
|
className={`${className} border border-custom-border-200 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-07-17 10:58:23 +00:00
|
|
|
} ${disabled ? "cursor-not-allowed border-custom-border-200 bg-custom-background-90" : ""} ${
|
2023-03-17 05:10:38 +00:00
|
|
|
outline
|
2023-07-10 07:17:00 +00:00
|
|
|
? "bg-transparent hover:bg-custom-background-80"
|
|
|
|
: "bg-custom-background-80 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>
|
|
|
|
);
|