import { RcText } from '@ringcentral/juno'; import React from 'react'; import IconField from '../IconField'; import Line from '../Line'; type IconLineProps = { dataSign?: string; icon?: React.ReactNode; className?: string; iconClassName?: string; onClick?: (...args: any[]) => any; noBorder?: boolean; title?: string; hintText?: string; }; const IconLine: React.FC = (props) => { return ( {props.children} {props.hintText && ( {props.hintText} )} ); }; IconLine.defaultProps = { dataSign: undefined, title: undefined, }; export default IconLine;