import * as React from 'react'; import AccessibleSVG from '../../../../icons/accessible-svg'; type Props = { className?: string; height?: number; width?: number; }; const ActivityFeedEmptyStateIllustration = ({ className = '', width = 140, height = 140 }: Props): JSX.Element => ( ); export default ActivityFeedEmptyStateIllustration;