import type { CSSProperties, ReactNode } from 'react'; import { activateOnKey } from '@/utils/a11y'; import './InputAddon.css'; interface InputAddonProps { children: ReactNode; className?: string; style?: CSSProperties; onClick?: () => void; ariaLabel?: string; } export default function InputAddon({ children, className = '', style, onClick, ariaLabel }: InputAddonProps) { return ( {children} ); }