UNPKG

@music-loopy/loops

Version:

A React component library for Music Loopy Applications and websites

70 lines (69 loc) 1.9 kB
"use strict"; exports.__esModule = true; exports.medium = exports["default"] = exports.Small = exports.Secondary = exports.Primary = exports.Large = exports.FullWidth = exports.Danger = void 0; var _test = require("@storybook/test"); var _index = require("./index"); // More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export var _default = exports["default"] = { title: 'Components/Button', component: _index.Button, 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: { variant: { control: 'color' } }, // 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: (0, _test.fn)() } }; // More on writing stories with args: https://storybook.js.org/docs/writing-stories/args var Primary = exports.Primary = { args: { variant: 'primary', children: 'Primary' } }; var Secondary = exports.Secondary = { args: { children: 'Secondary', variant: 'secondary' } }; var Danger = exports.Danger = { args: { children: 'Danger', variant: 'danger' } }; var FullWidth = exports.FullWidth = { args: { fullWidth: true, children: 'Full Width' } }; var medium = exports.medium = { args: { size: 'medium', children: 'Medium' } }; var Large = exports.Large = { args: { size: 'large', children: 'Large', variant: 'primary' } }; var Small = exports.Small = { args: { size: 'small', children: 'Small' } };