Segmented Control

Pill-grouped segmented control with inset muted track and a raised card under the active choice.

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Form24 } from "@/components/beste/piece/form24";

<Form24
  label="View mode"
  options={[
    "Kanban",
    "List",
    "Calendar",
    "Timeline"
  ]}
  activeIndex={1}
/>