import { storiesOf, html } from '@open-wc/demoing-storybook'; import '../lion-textarea.js'; storiesOf('Forms|Textarea', module) .add( 'Default', () => html` `, ) .add( 'Prefilled', () => html`

Default "rows" is 2 and it will grow to a max of 6

`, ) .add( 'Disabled', () => html` `, ) .add( 'Stop Growing', () => html` `, ) .add( 'Non Growing', () => html`

To have a fixed size provide rows and maxRows with the same value

`, );