mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
25 lines
688 B
JavaScript
25 lines
688 B
JavaScript
import { storiesOf } from '@storybook/vue'
|
|
import { withA11y } from '@storybook/addon-a11y'
|
|
import HcEmpty from '~/components/Empty/Empty'
|
|
import helpers from '~/storybook/helpers'
|
|
|
|
helpers.init()
|
|
|
|
storiesOf('Empty', module)
|
|
.addDecorator(withA11y)
|
|
.addDecorator(helpers.layout)
|
|
.add(
|
|
'tasks icon with message',
|
|
() => ({
|
|
components: { HcEmpty },
|
|
template: '<hc-empty icon="tasks" message="Sorry, there are no ... available." />',
|
|
}),
|
|
{
|
|
notes: "Possible icons include 'messages', 'events', 'alert', 'tasks', 'docs', and 'file'",
|
|
},
|
|
)
|
|
.add('default icon, no message', () => ({
|
|
components: { HcEmpty },
|
|
template: '<hc-empty />',
|
|
}))
|