import { FC } from 'react'; import styles from './feed.module.scss'; export type FeedProps = { /** * Set additional classnames to the icon. */ className?: string; }; /** * Feed Component * * Render a feed svg icon. */ const Feed: FC = ({ className = '' }) => { return ( ); }; export default Feed;