import { html, TemplateResult } from 'lit-html'; import '../skhemata-form'; export default { title: 'General/SkhemataForm/SkhemataFormDropzone', component: 'skhemata-form-dropzone', argTypes: { name: { control: 'text' }, label: { control: 'text' }, description: { control: 'text' }, horitontal: { control: 'boolean' }, }, }; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { name?: string; label?: string; description?: string; horizontal?: boolean; } const Template: Story = ({ name = 'name', label = 'Dropzone', description = 'Drop an image here', }: ArgTypes) => html` `; export const Example = Template.bind({});