From 3951a875a5c7619196239ce5f288f832d2f51224 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 31 Mar 2022 23:29:17 +0200 Subject: chore: add a CC BY SA svg icon component --- src/components/atoms/icons/cc-by-sa.tsx | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/components/atoms/icons/cc-by-sa.tsx (limited to 'src/components/atoms/icons/cc-by-sa.tsx') diff --git a/src/components/atoms/icons/cc-by-sa.tsx b/src/components/atoms/icons/cc-by-sa.tsx new file mode 100644 index 0000000..adc8b79 --- /dev/null +++ b/src/components/atoms/icons/cc-by-sa.tsx @@ -0,0 +1,38 @@ +import { FC } from 'react'; +import { useIntl } from 'react-intl'; +import styles from './cc-by-sa.module.scss'; + +/** + * CCBySA component + * + * Render a CC BY SA svg icon. + */ +const CCBySA: FC = () => { + const intl = useIntl(); + + return ( + + + {intl.formatMessage({ + defaultMessage: 'CC BY SA', + description: 'CCBySA: icon title', + id: 'cl7YNU', + })} + + + + + + + + + + + ); +}; + +export default CCBySA; -- cgit v1.2.3