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