import { ActionIcon } from '@mantine/core'; import { Icon } from '../icon/Icon'; import { CSSProperties, MouseEventHandler, forwardRef } from 'react'; export type ActionButtonProps = { icon: string; ariaLabel?: string; disabled?: boolean; onClick?: MouseEventHandler; style?: CSSProperties; }; export const ActionButton = forwardRef(function ActionButton( { icon, disabled, onClick, ariaLabel, style }, ref ) { return ( {icon} ); });