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