diff options
Diffstat (limited to 'src/components/atoms/icons/hamburger.tsx')
| -rw-r--r-- | src/components/atoms/icons/hamburger.tsx | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/components/atoms/icons/hamburger.tsx b/src/components/atoms/icons/hamburger.tsx deleted file mode 100644 index cc4e7b9..0000000 --- a/src/components/atoms/icons/hamburger.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { FC } from 'react'; -import styles from './hamburger.module.scss'; - -export type HamburgerProps = { - /** - * Set additional classnames to the icon wrapper. - */ - className?: string; - /** - * Set additional classnames to the icon. - */ - iconClassName?: string; -}; - -/** - * Hamburger component - * - * Render a Hamburger icon. - */ -export const Hamburger: FC<HamburgerProps> = ({ - className = '', - iconClassName = '', -}) => { - return ( - <span className={`${styles.wrapper} ${className}`}> - <span className={`${styles.icon} ${iconClassName}`}></span> - </span> - ); -}; |
