import { cn, pressable } from '@/styles/theme'; import type { ReactNode } from 'react'; type PressableIconProps = { children: ReactNode; className?: string; onClick?: () => void; 'aria-label'?: string; }; export function PressableIcon({ children, className, onClick, 'aria-label': ariaLabel, }: PressableIconProps) { return ( ); }