import { cva } from 'class-variance-authority'; import { Check } from 'phosphor-react'; import { forwardRef } from 'react'; import { Button } from '@sd/ui'; export interface TopBarButtonProps { children: React.ReactNode; rounding?: 'none' | 'left' | 'right' | 'both'; active?: boolean; className?: string; onClick?: () => void; checkIcon?: React.ReactNode; disabled?: boolean; } const topBarButtonStyle = cva( 'text-md relative mr-[1px] flex border-none !p-0.5 font-medium text-ink outline-none transition-colors duration-100 hover:bg-app-selected hover:text-ink radix-state-open:bg-app-selected', { variants: { active: { true: '!bg-app-selected', false: 'bg-transparent' }, rounding: { none: 'rounded-none', left: 'rounded-l-md rounded-r-none', right: 'rounded-l-none rounded-r-md', both: 'rounded-md' } }, defaultVariants: { active: false, rounding: 'both' } } ); export default forwardRef( ({ active, rounding, className, checkIcon, ...props }, ref) => { return ( ); } );