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; export default meta; type Story = StoryObj; export const Default: Story = { args: { copyright: , }, }; export const WithLicense: Story = { args: { copyright: , license: , }, }; export const WithLinks: Story = { args: { copyright: , links: [ { href: '#legal', id: 'item-1', label: 'Legal notice' }, { href: '#credits', id: 'item-2', label: 'Credits' }, ], }, }; export const WithLicenseAndLinks: Story = { args: { copyright: , license: , links: [ { href: '#legal', id: 'item-1', label: 'Legal notice' }, { href: '#credits', id: 'item-2', label: 'Credits' }, ], }, };