import { RcIconButton } from '@ringcentral/juno'; import type { FunctionComponent } from 'react'; import React from 'react'; import type { CallLogActionButton } from '../CallHistoryPanel.interface'; export const ActionButton: FunctionComponent = ({ icon, label, disabled, action, dataSign, }) => { return ( ); };