mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-18 22:30:40 -07:00
- Introduced a DropdownMenu for action buttons in HistoryTable, enhancing user interaction. - Adjusted column widths in HistoryTable for better layout and readability. - Updated ProfileList to replace icons and improve layout consistency. - Added new DropdownMenu component for reusable dropdown functionality across the application. - Enhanced Slider component with slight position adjustment for better visual alignment.
23 lines
1.1 KiB
TypeScript
23 lines
1.1 KiB
TypeScript
import * as React from 'react';
|
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
import { cn } from '@/lib/utils/cn';
|
|
|
|
const Slider = React.forwardRef<
|
|
React.ElementRef<typeof SliderPrimitive.Root>,
|
|
React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>
|
|
>(({ className, ...props }, ref) => (
|
|
<SliderPrimitive.Root
|
|
ref={ref}
|
|
className={cn('relative flex w-full touch-none select-none items-center', className)}
|
|
{...props}
|
|
>
|
|
<SliderPrimitive.Track className="relative h-2 w-full grow overflow-hidden rounded-full bg-secondary">
|
|
<SliderPrimitive.Range className="absolute h-full bg-primary" />
|
|
</SliderPrimitive.Track>
|
|
<SliderPrimitive.Thumb className="block h-5 w-5 rounded-full border-2 border-primary bg-background ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 translate-x-0.5" />
|
|
</SliderPrimitive.Root>
|
|
));
|
|
Slider.displayName = SliderPrimitive.Root.displayName;
|
|
|
|
export { Slider };
|