aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/images/icons/icon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/images/icons/icon.tsx')
-rw-r--r--src/components/atoms/images/icons/icon.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/atoms/images/icons/icon.tsx b/src/components/atoms/images/icons/icon.tsx
index 23170d9..c694abf 100644
--- a/src/components/atoms/images/icons/icon.tsx
+++ b/src/components/atoms/images/icons/icon.tsx
@@ -8,7 +8,11 @@ import {
} from './plus-minus-icon';
import { type SVGIconShape, SVGPaths, type SVGPathsProps } from './svg-paths';
-export type IconShape = SVGIconShape | PlusMinusIconShape | 'hamburger';
+export type IconShape =
+ | SVGIconShape
+ | PlusMinusIconShape
+ | 'hamburger'
+ | 'help';
export type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';