aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/colophon/colophon.stories.tsx
blob: 83db4f4d04351c610d906a94950d33d3bd18ca74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import type { Meta, StoryObj } from '@storybook/react';
import { Icon } from '../../atoms';
import { Copyright } from '../copyright';
import { Colophon } from './colophon';

const meta = {
  component: Colophon,
  title: 'Molecules/Colophon',
} satisfies Meta<typeof Colophon>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Default: Story = {
  args: {
    copyright: <Copyright from="2021" owner="Brand" to="2023" />,
  },
};

export const WithLicense: Story = {
  args: {
    copyright: <Copyright from="2021" owner="Brand" to="2023" />,
    license: <Icon heading="CC BY SA" shape="cc-by-sa" />,
  },
};

export const WithLinks: Story = {
  args: {
    copyright: <Copyright from="2021" owner="Brand" to="2023" />,
    links: [
      { href: '#legal', id: 'item-1', label: 'Legal notice' },
      { href: '#credits', id: 'item-2', label: 'Credits' },
    ],
  },
};

export const WithLicenseAndLinks: Story = {
  args: {
    copyright: <Copyright from="2021" owner="Brand" to="2023" />,
    license: <Icon heading="CC BY SA" shape="cc-by-sa" />,
    links: [
      { href: '#legal', id: 'item-1', label: 'Legal notice' },
      { href: '#credits', id: 'item-2', label: 'Credits' },
    ],
  },
};