A svelte action that automatically resizes input fields based on their value.
$ npm install svelte-textarea-auto-height
<script>
import { autoHeight } from 'svelte-textarea-auto-height';
</script>
<textarea
use:autoHeight
cols="30"
placeholder="Type and watch me resize!"
></textarea>