import { FC, SVGAttributes } from 'react'; import styles from './posts-stack.module.scss'; export type PostsStackProps = SVGAttributes; /** * Posts stack component. * * Render a posts stack svg icon. */ export const PostsStack: FC = ({ className = '', ...props }) => { return ( ); };