@music-loopy/loops
Version:
A React component library for Music Loopy Applications and websites
66 lines (64 loc) • 1.76 kB
JavaScript
import { fn } from '@storybook/test';
import { Card } from './index';
// More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export
export default {
title: 'Components/Card',
component: Card,
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: {
size: {
control: {
type: 'select',
options: ['small', 'medium', 'large']
}
},
fullWidth: {
control: 'boolean'
}
},
// 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 SmallCard = {
args: {
size: 'small',
header: 'Small Card Header',
children: 'This is a small card.'
}
};
export var MediumCard = {
args: {
size: 'medium',
header: 'Medium Card Header',
children: 'This is a medium card.'
}
};
export var LargeCard = {
args: {
size: 'large',
header: 'Large Card Header',
children: 'This is a large card.'
}
};
export var FullWidthCard = {
args: {
fullWidth: true,
header: 'Full Width Card Header',
children: 'This card takes the full width of its container.'
}
};
export var CardWithoutHeader = {
args: {
size: 'medium',
children: 'This card has no header.'
}
};