aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/link.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-31 22:34:23 +0200
committerArmand Philippot <git@armandphilippot.com>2022-03-31 22:34:23 +0200
commit4a79f0d5511d6a6732428687740f8190e000f1b9 (patch)
treedbd7c8a1abdb607f18dc2f72406e5a225cde1602 /src/components/atoms/links/link.stories.tsx
parent581632a626f81bce522be1cd809e9832d5b11c99 (diff)
chore: add a Link component
Diffstat (limited to 'src/components/atoms/links/link.stories.tsx')
-rw-r--r--src/components/atoms/links/link.stories.tsx66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/components/atoms/links/link.stories.tsx b/src/components/atoms/links/link.stories.tsx
new file mode 100644
index 0000000..e5a8b0a
--- /dev/null
+++ b/src/components/atoms/links/link.stories.tsx
@@ -0,0 +1,66 @@
+import { ComponentMeta, ComponentStory } from '@storybook/react';
+import LinkComponent from './link';
+
+export default {
+ title: 'Atoms/Links',
+ component: LinkComponent,
+ argTypes: {
+ children: {
+ control: {
+ type: 'text',
+ },
+ description: 'The link body.',
+ type: {
+ name: 'string',
+ required: true,
+ },
+ },
+ external: {
+ control: {
+ type: 'boolean',
+ },
+ table: {
+ category: 'Options',
+ },
+ description: 'Determine if the link is external of the current website.',
+ type: {
+ name: 'boolean',
+ required: false,
+ },
+ },
+ href: {
+ control: {
+ type: 'text',
+ },
+ description: 'The link target.',
+ type: {
+ name: 'string',
+ required: true,
+ },
+ },
+ lang: {
+ control: {
+ type: 'text',
+ },
+ table: {
+ category: 'Options',
+ },
+ description: 'The target language as code language.',
+ type: {
+ name: 'string',
+ required: false,
+ },
+ },
+ },
+} as ComponentMeta<typeof LinkComponent>;
+
+const Template: ComponentStory<typeof LinkComponent> = (args) => (
+ <LinkComponent {...args} />
+);
+
+export const Link = Template.bind({});
+Link.args = {
+ children: 'A link',
+ href: '#',
+ external: false,
+};