aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/images/icons/svg-paths/svg-paths.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/images/icons/svg-paths/svg-paths.tsx')
-rw-r--r--src/components/atoms/images/icons/svg-paths/svg-paths.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/atoms/images/icons/svg-paths/svg-paths.tsx b/src/components/atoms/images/icons/svg-paths/svg-paths.tsx
index 0f5be6e..88de5ef 100644
--- a/src/components/atoms/images/icons/svg-paths/svg-paths.tsx
+++ b/src/components/atoms/images/icons/svg-paths/svg-paths.tsx
@@ -14,6 +14,7 @@ import {
PostsStackIconPaths,
SunIconPaths,
CrossIconPaths,
+ HelpIconPaths,
} from './icons-paths';
export type SVGIconOrientation = ArrowOrientation;
@@ -27,6 +28,7 @@ export type SVGIconShape =
| 'cross'
| 'envelop'
| 'feed'
+ | 'help'
| 'home'
| 'magnifying-glass'
| 'moon'
@@ -67,6 +69,8 @@ export const SVGPaths: FC<SVGPathsProps> = ({
return <EnvelopIconPaths />;
case 'feed':
return <FeedIconPaths />;
+ case 'help':
+ return <HelpIconPaths />;
case 'home':
return <HomeIconPaths />;
case 'magnifying-glass':