From 9eeb49155e2e74df4d5cb2833da20669b85fafe5 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 4 Oct 2023 14:21:24 +0200 Subject: feat(components): add a Help icon shape --- src/components/atoms/images/icons/svg-paths/svg-paths.tsx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/components/atoms/images/icons/svg-paths/svg-paths.tsx') 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 = ({ return ; case 'feed': return ; + case 'help': + return ; case 'home': return ; case 'magnifying-glass': -- cgit v1.2.3