aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/hamburger.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/hamburger.tsx')
-rw-r--r--src/components/atoms/icons/hamburger.tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/atoms/icons/hamburger.tsx b/src/components/atoms/icons/hamburger.tsx
index 93aed2a..cc4e7b9 100644
--- a/src/components/atoms/icons/hamburger.tsx
+++ b/src/components/atoms/icons/hamburger.tsx
@@ -6,7 +6,6 @@ export type HamburgerProps = {
* Set additional classnames to the icon wrapper.
*/
className?: string;
-
/**
* Set additional classnames to the icon.
*/
@@ -18,7 +17,7 @@ export type HamburgerProps = {
*
* Render a Hamburger icon.
*/
-const Hamburger: FC<HamburgerProps> = ({
+export const Hamburger: FC<HamburgerProps> = ({
className = '',
iconClassName = '',
}) => {
@@ -28,5 +27,3 @@ const Hamburger: FC<HamburgerProps> = ({
</span>
);
};
-
-export default Hamburger;