'use client'; import { Button } from '@/components/ui/button'; import { cn } from '@/lib/utils'; interface DurationSelectorProps { value: number; onChange: (bars: number) => void; className?: string; } const presets = [8, 16, 32, 64]; export function DurationSelector({ value, onChange, className }: DurationSelectorProps) { return (