aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ThemeToggle
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ThemeToggle')
0 files changed, 0 insertions, 0 deletions
d='n33' href='#n33'>33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
import { ComponentMeta, ComponentStory } from '@storybook/react';
import Overview, { OverviewMeta } from './overview';

/**
 * Overview - Storybook Meta
 */
export default {
  title: 'Organisms/Layout/Overview',
  component: Overview,
  argTypes: {
    className: {
      control: {
        type: 'text',
      },
      description: 'Set additional classnames to the overview wrapper.',
      table: {
        category: 'Styles',
      },
      type: {
        name: 'string',
        required: false,
      },
    },
    cover: {
      description: 'The overview cover',
      table: {
        category: 'Options',
      },
      type: {
        name: 'object',
        required: false,
        value: {},
      },
    },
    meta: {
      description: 'The overview meta.',
      type: {
        name: 'object',
        required: true,
        value: {},
      },
    },
  },
} as ComponentMeta<typeof Overview>;

const Template: ComponentStory<typeof Overview> = (args) => (
  <Overview {...args} />
);

const cover = {
  alt: 'picture',
  height: 480,
  src: 'http://placeimg.com/640/480/cats',
  width: 640,
};

const meta: OverviewMeta = {
  creation: { date: '2022-05-09' },
  license: 'Dignissimos ratione veritatis',
};

/**
 * Overview Stories - Default
 */
export const Default = Template.bind({});
Default.args = {
  meta,
};

/**
 * Overview Stories - With cover
 */
export const WithCover = Template.bind({});
WithCover.args = {
  cover,
  meta,
};