import { cva, type VariantProps } from 'class-variance-authority'; export const progressBarTrackVariants = cva([ 'w-full flex-row overflow-hidden rounded-full bg-surface-action-tint h-1', ]); export const progressBarIndicatorVariants = cva(['rounded-full bg-surface-action-strong']); export type ProgressBarTrackVariantProps = VariantProps;