input styles

This commit is contained in:
Jan Prochazka
2021-03-04 15:52:12 +01:00
parent ef5bfb5a89
commit ce44e271ae
6 changed files with 151 additions and 2 deletions

View File

@@ -5,10 +5,11 @@
export let label;
export let name;
export let templateProps = {};
export let focused = false;
const { template } = getFormContext();
</script>
<svelte:component this={template} type="text" {label} {...templateProps}>
<FromTextFieldRaw {name} {...$$restProps} />
<FromTextFieldRaw {name} {...$$restProps} {focused} />
</svelte:component>