File size: 280 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 |
<script>import { melt } from "@melt-ui/svelte";
import { getCtx } from "../ctx.js";
export let el = void 0;
const {
elements: { input },
options: { value }
} = getCtx();
</script>
<input bind:this={el} {...$input} use:$input.action value={$value ?? "on"} {...$$restProps} />
|