Make ListItem image optional

It was supposed to be optional anyway, but setting it as undefined
to begin with makes it explicitly optional so Svelte doesn't start
giving warnings and stuff.
This commit is contained in:
Badri Sunderarajan 2024-03-24 23:06:37 +05:30
parent 4d58d0f1c0
commit c4cd385cfe
Signed by: badrihippo
GPG key ID: 9F594532AD60DE03

View file

@ -2,7 +2,7 @@
export let text = 'List Item'
export let subtext = ''
export let indicator = false
export let image
export let image = undefined
export let tabindex = -1
export let autofocus = false
export let fullheight = false