import { FC, SVGAttributes } from 'react'; import styles from './feed.module.scss'; export type FeedProps = SVGAttributes; /** * Feed Component * * Render a feed svg icon. */ export const Feed: FC = ({ className = '', ...props }) => { return ( ); };