You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
import { type ReactNode } from "react";
|
|
import { LoadingSpinner } from "@/components/ui/loading-spinner";
|
|
|
|
interface PrimaryButtonProps
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
loading?: boolean;
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function PrimaryButton({
|
|
loading = false,
|
|
disabled,
|
|
children,
|
|
className = "",
|
|
...rest
|
|
}: PrimaryButtonProps) {
|
|
const isDisabled = disabled || loading;
|
|
return (
|
|
<button
|
|
{...rest}
|
|
disabled={isDisabled}
|
|
className={`inline-flex h-10 items-center justify-center gap-2 rounded-md bg-primary px-4 text-sm font-medium text-white transition-colors hover:bg-primary-hover active:bg-primary-active focus:outline-none focus:ring-2 focus:ring-primary/30 disabled:cursor-not-allowed disabled:opacity-50 ${className}`}
|
|
>
|
|
{loading && <LoadingSpinner size={16} className="text-white" />}
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
interface SecondaryButtonProps
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
loading?: boolean;
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function SecondaryButton({
|
|
loading = false,
|
|
disabled,
|
|
children,
|
|
className = "",
|
|
...rest
|
|
}: SecondaryButtonProps) {
|
|
const isDisabled = disabled || loading;
|
|
return (
|
|
<button
|
|
{...rest}
|
|
disabled={isDisabled}
|
|
className={`inline-flex h-10 items-center justify-center gap-2 rounded-md border border-border bg-surface px-4 text-sm font-medium text-text-primary transition-colors hover:bg-bg focus:outline-none focus:ring-2 focus:ring-primary/30 disabled:cursor-not-allowed disabled:opacity-50 ${className}`}
|
|
>
|
|
{loading && <LoadingSpinner size={16} className="text-primary" />}
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|