import type { RcTextFieldProps } from '@ringcentral/juno'; import { RcTextField } from '@ringcentral/juno'; import type { FunctionComponent } from 'react'; import React from 'react'; import { CustomArrowButton } from '../../../../Rcui/CustomArrowButton'; import styles from '../styles.scss'; export type SelectListTextFieldProps = Pick< RcTextFieldProps, 'value' | 'disabled' | 'helperText' | 'label' | 'onClick' | 'required' >; export const SelectListTextField: FunctionComponent< SelectListTextFieldProps > = ({ value, disabled, ...rest }) => { return ( , }} fullWidth clearBtn={false} /> ); };