UNPKG

@music-loopy/loops

Version:

A React component library for Music Loopy Applications and websites

81 lines (79 loc) 1.86 kB
import { fn } from '@storybook/test'; import { SocialBar } from './index'; // More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export export default { title: 'Components/SocialBar', component: SocialBar, parameters: { // Optional parameter to center the component in the Canvas. More info: https://storybook.js.org/docs/configure/story-layout layout: 'centered' }, // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs tags: ['autodocs'], // More on argTypes: https://storybook.js.org/docs/api/argtypes argTypes: { icons: { control: 'array' } }, // Use `fn` to spy on the onClick arg, which will appear in the actions panel once invoked: https://storybook.js.org/docs/essentials/actions#action-args args: { onClick: fn() } }; // More on writing stories with args: https://storybook.js.org/docs/writing-stories/args export var Vertical = { args: { layout: 'vertical', icons: [{ type: 'facebook', onclick: fn() }, { type: 'apple', onclick: fn() }, { type: 'google', onclick: fn() }, { type: 'instagram', onclick: fn() }] } }; export var Horizontal = { args: { layout: 'horizontal', icons: [{ type: 'facebook', onclick: fn() }, { type: 'apple', onclick: fn() }, { type: 'google', onclick: fn() }, { type: 'linkedin', onclick: fn() }] } }; export var hasBackground = { args: { layout: 'horizontal', hasBackground: true, icons: [{ type: 'facebook', onclick: fn() }, { type: 'apple', onclick: fn() }, { type: 'google', onclick: fn() }, { type: 'linkedin', onclick: fn() }] } };