import { IconButton } from '@rocket.chat/fuselage'; import type { ReactElement, ComponentProps } from 'react'; type UserCardActionProps = ComponentProps; const UserCardAction = ({ label, icon, ...props }: UserCardActionProps): ReactElement => ( ); export default UserCardAction;