import type { ReactElement } from 'react' import React from 'react' import { twMerge } from '@toptal/picasso-tailwind-merge' import type { BaseProps } from '@toptal/picasso-shared' import { ButtonCircular } from '@toptal/picasso-button' type Props = BaseProps & { active?: boolean disabled?: boolean icon: ReactElement onClick?: (e: React.MouseEvent) => void id?: string } const RichTextEditorButton = ({ active = false, disabled = false, onClick = () => {}, className, ...rest }: Props) => ( ) RichTextEditorButton.displayName = 'RichTextEditorButton' export default RichTextEditorButton