import type { RcDialPadProps } from '@ringcentral/juno'; import { RcDialerPadSoundsMPEG, RcDialPad } from '@ringcentral/juno'; import clsx from 'clsx'; import type { FunctionComponent } from 'react'; import React from 'react'; import styles from './styles.scss'; type DialPadProps = { dataSign?: string; } & RcDialPadProps; /** @deprecated use juno RcDialPad directly */ export const DialPad: FunctionComponent = ({ className, dataSign, onChange, ...rest }) => { const handleChange = (e: string) => { // @ts-expect-error TS(2554): Expected 2 arguments, but got 1. return onChange && onChange(e); }; return ( ); };