import Icon from './../Icon'; export interface Props { text?: string, icon?: any, onClick?: (...args: any[]) => any, className?: string, children?: any } const DropdownItem = ({ text, icon, onClick, children, className }: Props): JSX.Element => ( ); export default DropdownItem