feat: add initial input prototypes

This commit is contained in:
2024-03-14 16:55:11 +01:00
parent 9b76299272
commit 19234bdac1
13 changed files with 168 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
<script lang="ts">
import type { Hst } from "@histoire/plugin-svelte";
export let Hst: Hst;
import Float from "./Float.svelte";
</script>
<Hst.Story>
<div>
<Float value={0} min={0} max={6.9} />
</div>
</Hst.Story>
<style>
div {
padding: 1em;
}
</style>