aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/images
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/images')
-rw-r--r--src/components/atoms/images/logo.stories.tsx15
-rw-r--r--src/components/atoms/images/logo.tsx4
2 files changed, 17 insertions, 2 deletions
diff --git a/src/components/atoms/images/logo.stories.tsx b/src/components/atoms/images/logo.stories.tsx
index afb5317..fbc7501 100644
--- a/src/components/atoms/images/logo.stories.tsx
+++ b/src/components/atoms/images/logo.stories.tsx
@@ -4,6 +4,21 @@ import LogoComponent from './logo';
export default {
title: 'Atoms/Images',
component: LogoComponent,
+ argTypes: {
+ title: {
+ control: {
+ type: 'text',
+ },
+ description: 'The SVG title.',
+ table: {
+ category: 'Accessibility',
+ },
+ type: {
+ name: 'string',
+ required: false,
+ },
+ },
+ },
} as ComponentMeta<typeof LogoComponent>;
const Template: ComponentStory<typeof LogoComponent> = (args) => (
diff --git a/src/components/atoms/images/logo.tsx b/src/components/atoms/images/logo.tsx
index 9ce2518..2e52110 100644
--- a/src/components/atoms/images/logo.tsx
+++ b/src/components/atoms/images/logo.tsx
@@ -1,4 +1,4 @@
-import { FC } from 'react';
+import { VFC } from 'react';
import styles from './logo.module.scss';
type LogoProps = {
@@ -13,7 +13,7 @@ type LogoProps = {
*
* Render a SVG logo.
*/
-const Logo: FC<LogoProps> = ({ title }) => {
+const Logo: VFC<LogoProps> = ({ title }) => {
return (
<svg
viewBox="0 0 512 512"