import classNames from 'classnames' import type { Ref } from 'react' import type { ButtonProps } from 'lib/ui/types.js' export type IconProps = ButtonProps & { elRef?: Ref } export function IconButton({ className, elRef, ...props }: IconProps): JSX.Element { return (