aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/site-footer.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/layout/site-footer.stories.tsx')
-rw-r--r--src/components/organisms/layout/site-footer.stories.tsx92
1 files changed, 0 insertions, 92 deletions
diff --git a/src/components/organisms/layout/site-footer.stories.tsx b/src/components/organisms/layout/site-footer.stories.tsx
deleted file mode 100644
index 3f244b0..0000000
--- a/src/components/organisms/layout/site-footer.stories.tsx
+++ /dev/null
@@ -1,92 +0,0 @@
-import type { ComponentMeta, ComponentStory } from '@storybook/react';
-import { Icon } from '../../atoms';
-import { SiteFooter as SiteFooterComponent } from './site-footer';
-
-/**
- * SiteFooter - Storybook Meta
- */
-export default {
- title: 'Organisms/Layout',
- component: SiteFooterComponent,
- argTypes: {
- backToTopClassName: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the back to top button.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- className: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the footer element.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- copyright: {
- description: 'The copyright information.',
- type: {
- name: 'object',
- required: true,
- value: {},
- },
- },
- navItems: {
- description: 'The footer nav items.',
- table: {
- category: 'Options',
- },
- type: {
- name: 'object',
- required: false,
- value: {},
- },
- },
- topId: {
- control: {
- type: 'text',
- },
- description:
- 'An element id (without hashtag) used as target by back to top button.',
- type: {
- name: 'string',
- required: true,
- },
- },
- },
-} as ComponentMeta<typeof SiteFooterComponent>;
-
-const Template: ComponentStory<typeof SiteFooterComponent> = (args) => (
- <SiteFooterComponent {...args} />
-);
-
-const copyright = {
- from: '2017',
- owner: 'Lorem ipsum',
- to: '2022',
-};
-
-const navItems = [{ id: 'legal-notice', href: '#', label: 'Legal notice' }];
-
-/**
- * Layout Stories - SiteFooter
- */
-export const SiteFooter = Template.bind({});
-SiteFooter.args = {
- copyright,
- license: <Icon shape="cc-by-sa" />,
- navItems,
- topId: 'top',
-};