File size: 1,084 Bytes
88c4c60 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | "use client";
import { cn } from "@/shared/utils/cn";
export default function SegmentedControl({
options = [],
value,
onChange,
size = "md",
className,
}) {
const sizes = {
sm: "h-7 text-xs",
md: "h-9 text-sm",
lg: "h-11 text-base",
};
return (
<div
className={cn(
"inline-flex items-center p-1 rounded-[10px] overflow-x-auto",
"bg-surface-2",
className
)}
>
{options.map((option) => (
<button
key={option.value}
onClick={() => onChange(option.value)}
className={cn(
"shrink-0 px-4 rounded-[8px] font-medium transition-all",
sizes[size],
value === option.value
? "bg-surface text-text-main shadow-sm"
: "text-text-muted hover:text-text-main"
)}
>
{option.icon && (
<span className="material-symbols-outlined text-[16px] mr-1.5">
{option.icon}
</span>
)}
{option.label}
</button>
))}
</div>
);
}
|