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 --- .../svg-paths/icons-paths/help-icon-paths.module.scss | 3 +++ .../icons/svg-paths/icons-paths/help-icon-paths.tsx | 15 +++++++++++++++ .../atoms/images/icons/svg-paths/icons-paths/index.ts | 1 + 3 files changed, 19 insertions(+) create mode 100644 src/components/atoms/images/icons/svg-paths/icons-paths/help-icon-paths.module.scss create mode 100644 src/components/atoms/images/icons/svg-paths/icons-paths/help-icon-paths.tsx (limited to 'src/components/atoms/images/icons/svg-paths/icons-paths') diff --git a/src/components/atoms/images/icons/svg-paths/icons-paths/help-icon-paths.module.scss b/src/components/atoms/images/icons/svg-paths/icons-paths/help-icon-paths.module.scss new file mode 100644 index 0000000..477cd53 --- /dev/null +++ b/src/components/atoms/images/icons/svg-paths/icons-paths/help-icon-paths.module.scss @@ -0,0 +1,3 @@ +.icon { + fill: var(--color-primary); +} diff --git a/src/components/atoms/images/icons/svg-paths/icons-paths/help-icon-paths.tsx b/src/components/atoms/images/icons/svg-paths/icons-paths/help-icon-paths.tsx new file mode 100644 index 0000000..dae2190 --- /dev/null +++ b/src/components/atoms/images/icons/svg-paths/icons-paths/help-icon-paths.tsx @@ -0,0 +1,15 @@ +/* eslint-disable react/jsx-no-literals */ +import type { FC } from 'react'; +import styles from './help-icon-paths.module.scss'; + +/** + * HelpIconPaths + * + * Render the svg paths to make a help icon. + */ +export const HelpIconPaths: FC = () => ( + +); diff --git a/src/components/atoms/images/icons/svg-paths/icons-paths/index.ts b/src/components/atoms/images/icons/svg-paths/icons-paths/index.ts index 43927ae..ed82fc1 100644 --- a/src/components/atoms/images/icons/svg-paths/icons-paths/index.ts +++ b/src/components/atoms/images/icons/svg-paths/icons-paths/index.ts @@ -6,6 +6,7 @@ export * from './computer-icon-paths'; export * from './cross-icon-paths'; export * from './envelop-icon-paths'; export * from './feed-icon-paths'; +export * from './help-icon-paths'; export * from './home-icon-paths'; export * from './magnifying-glass-icon-paths'; export * from './moon-icon-paths'; -- cgit v1.2.3