mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-25 01:15:26 +10:00
50ba37a27f
* chore(release): v5.1.0 * feat: implement resume thumbnails * fix: remove unused mcp tools * docs: fix formatting of docs
78 lines
2.4 KiB
TypeScript
78 lines
2.4 KiB
TypeScript
import type { VariantProps } from "class-variance-authority";
|
|
import { mergeProps } from "@base-ui/react/merge-props";
|
|
import { useRender } from "@base-ui/react/use-render";
|
|
import { cva } from "class-variance-authority";
|
|
import { Separator } from "@reactive-resume/ui/components/separator";
|
|
import { cn } from "@reactive-resume/utils/style";
|
|
|
|
const buttonGroupVariants = cva(
|
|
"flex w-fit items-stretch *:focus-visible:relative *:focus-visible:z-10 has-[>[data-slot=button-group]]:gap-2 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-e-lg [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1",
|
|
{
|
|
variants: {
|
|
orientation: {
|
|
horizontal:
|
|
"*:data-slot:rounded-e-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-e-lg! [&>[data-slot]~[data-slot]]:rounded-s-none [&>[data-slot]~[data-slot]]:border-s-0",
|
|
vertical:
|
|
"flex-col *:data-slot:rounded-b-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-b-lg! [&>[data-slot]~[data-slot]]:rounded-t-none [&>[data-slot]~[data-slot]]:border-t-0",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
orientation: "horizontal",
|
|
},
|
|
},
|
|
);
|
|
|
|
function ButtonGroup({
|
|
className,
|
|
orientation,
|
|
...props
|
|
}: React.ComponentProps<"fieldset"> & VariantProps<typeof buttonGroupVariants>) {
|
|
return (
|
|
<fieldset
|
|
data-slot="button-group"
|
|
data-orientation={orientation}
|
|
className={cn(buttonGroupVariants({ orientation }), className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function ButtonGroupText({ className, render, ...props }: useRender.ComponentProps<"div">) {
|
|
return useRender({
|
|
defaultTagName: "div",
|
|
props: mergeProps<"div">(
|
|
{
|
|
className: cn(
|
|
"flex items-center gap-2 rounded-lg border bg-muted px-2.5 font-medium text-sm [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none",
|
|
className,
|
|
),
|
|
},
|
|
props,
|
|
),
|
|
render,
|
|
state: {
|
|
slot: "button-group-text",
|
|
},
|
|
});
|
|
}
|
|
|
|
function ButtonGroupSeparator({
|
|
className,
|
|
orientation = "vertical",
|
|
...props
|
|
}: React.ComponentProps<typeof Separator>) {
|
|
return (
|
|
<Separator
|
|
data-slot="button-group-separator"
|
|
orientation={orientation}
|
|
className={cn(
|
|
"relative self-stretch bg-input data-horizontal:mx-px data-vertical:my-px data-vertical:h-auto data-horizontal:w-auto",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export { ButtonGroup, ButtonGroupSeparator, ButtonGroupText, buttonGroupVariants };
|