diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-08 19:32:58 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-08 19:32:58 +0200 | 
| commit | 5c75a302c2203cb3ebf31233121026b4775662cf (patch) | |
| tree | efaaeb7805d9f211a5f01f920aaa3609648ddc0b /src/components/atoms/icons/posts-stack.tsx | |
| parent | a1e8f1e4426ed3560ce1b76fb73a6969388ed253 (diff) | |
chore(icons): accept a classname as prop
Diffstat (limited to 'src/components/atoms/icons/posts-stack.tsx')
| -rw-r--r-- | src/components/atoms/icons/posts-stack.tsx | 13 | 
1 files changed, 10 insertions, 3 deletions
| diff --git a/src/components/atoms/icons/posts-stack.tsx b/src/components/atoms/icons/posts-stack.tsx index 22069ac..1998d25 100644 --- a/src/components/atoms/icons/posts-stack.tsx +++ b/src/components/atoms/icons/posts-stack.tsx @@ -1,17 +1,24 @@ -import { FC } from 'react'; +import { VFC } from 'react';  import styles from './posts-stack.module.scss'; +export type PostsStackProps = { +  /** +   * Set additional classnames to the icon. +   */ +  className?: string; +}; +  /**   * Posts stack component.   *   * Render a posts stack svg icon.   */ -const PostsStack: FC = () => { +const PostsStack: VFC<PostsStackProps> = ({ className = '' }) => {    return (      <svg        viewBox="0 0 100 100"        xmlns="http://www.w3.org/2000/svg" -      className={styles.icon} +      className={`${styles.icon} ${className}`}      >        <path          className={styles.background} | 
