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/icon.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/components/atoms/images/icons/icon.tsx') 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'; -- cgit v1.2.3