UNPKG

@skhemata/skhemata-form

Version:

Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.

23 lines 702 B
import { html } 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' }, }, }; const Template = ({ name = 'name', label = 'Dropzone', description = 'Drop an image here', }) => html ` <skhemata-form-dropzone name=${name} label=${label} description=${description} horizontal > </skhemata-form-dropzone> `; export const Example = Template.bind({}); //# sourceMappingURL=SkhemataFormDropzone.stories.js.map