9 lines
360 B
TypeScript
9 lines
360 B
TypeScript
import { cn } from './cn';
|
|
|
|
export const popoverPanelClass = cn(
|
|
'z-50 rounded-md border border-line bg-surface p-3 shadow-elev-2 focus:outline-none',
|
|
);
|
|
|
|
export const popoverTriggerClass = cn(
|
|
'inline-flex items-center rounded-md text-foreground hover:bg-accent-wash hover:text-accent focus:outline-none transition-colors duration-fast ease-standard',
|
|
);
|