mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 06:18:19 +01:00
83 lines
2.7 KiB
TypeScript
83 lines
2.7 KiB
TypeScript
|
|
import clsx from "clsx";
|
||
|
|
import Link from "next/link";
|
||
|
|
import type { ComponentPropsWithoutRef } from "react";
|
||
|
|
|
||
|
|
function ArrowIcon(props: ComponentPropsWithoutRef<"svg">) {
|
||
|
|
return (
|
||
|
|
<svg viewBox="0 0 20 20" fill="none" aria-hidden="true" {...props}>
|
||
|
|
<path
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="m11.5 6.5 3 3.5m0 0-3 3.5m3-3.5h-9"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
const variantStyles = {
|
||
|
|
primary:
|
||
|
|
"rounded-full bg-zinc-900 py-1 px-3 text-white hover:bg-zinc-700 dark:bg-emerald-400/10 dark:text-emerald-400 dark:ring-1 dark:ring-inset dark:ring-emerald-400/20 dark:hover:bg-emerald-400/10 dark:hover:text-emerald-300 dark:hover:ring-emerald-300",
|
||
|
|
secondary:
|
||
|
|
"rounded-full bg-zinc-100 py-1 px-3 text-zinc-900 hover:bg-zinc-200 dark:bg-zinc-800/40 dark:text-zinc-400 dark:ring-1 dark:ring-inset dark:ring-zinc-800 dark:hover:bg-zinc-800 dark:hover:text-zinc-300",
|
||
|
|
filled: "rounded-full bg-zinc-900 py-1 px-3 text-white hover:bg-zinc-700 dark:bg-emerald-500 dark:text-white dark:hover:bg-emerald-400",
|
||
|
|
outline:
|
||
|
|
"rounded-full py-1 px-3 text-zinc-700 ring-1 ring-inset ring-zinc-900/10 hover:bg-zinc-900/2.5 hover:text-zinc-900 dark:text-zinc-400 dark:ring-white/10 dark:hover:bg-white/5 dark:hover:text-white",
|
||
|
|
text: "text-emerald-500 hover:text-emerald-600 dark:text-emerald-400 dark:hover:text-emerald-500",
|
||
|
|
};
|
||
|
|
|
||
|
|
type ButtonProps = {
|
||
|
|
variant?: keyof typeof variantStyles;
|
||
|
|
arrow?: "left" | "right";
|
||
|
|
} & (
|
||
|
|
| ComponentPropsWithoutRef<typeof Link>
|
||
|
|
| (ComponentPropsWithoutRef<"button"> & { href?: undefined })
|
||
|
|
);
|
||
|
|
|
||
|
|
export function Button({
|
||
|
|
variant = "primary",
|
||
|
|
className,
|
||
|
|
children,
|
||
|
|
arrow,
|
||
|
|
...props
|
||
|
|
}: ButtonProps) {
|
||
|
|
className = clsx(
|
||
|
|
"inline-flex gap-0.5 justify-center overflow-hidden text-sm font-medium transition",
|
||
|
|
variantStyles[variant],
|
||
|
|
className,
|
||
|
|
);
|
||
|
|
|
||
|
|
const arrowIcon = (
|
||
|
|
<ArrowIcon
|
||
|
|
className={clsx(
|
||
|
|
"mt-0.5 h-5 w-5",
|
||
|
|
variant === "text" && "relative top-px",
|
||
|
|
arrow === "left" && "-ml-1 rotate-180",
|
||
|
|
arrow === "right" && "-mr-1",
|
||
|
|
)}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
|
||
|
|
const inner = (
|
||
|
|
<>
|
||
|
|
{arrow === "left" && arrowIcon}
|
||
|
|
{children}
|
||
|
|
{arrow === "right" && arrowIcon}
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
|
||
|
|
if (typeof props.href === "undefined") {
|
||
|
|
return (
|
||
|
|
<button className={className} {...props}>
|
||
|
|
{inner}
|
||
|
|
</button>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Link className={className} {...props}>
|
||
|
|
{inner}
|
||
|
|
</Link>
|
||
|
|
);
|
||
|
|
}
|