Files
AstralRinth/theseus_gui/src/components/WindowSettings.svelte
2022-08-03 00:44:17 -07:00

16 lines
260 B
Svelte

<script lang="ts">
import { Field, TextInput } from 'omorphia';
</script>
<div class="section">
<Field label="Window width">
<TextInput />
</Field>
<Field label="Window height">
<TextInput />
</Field>
</div>
<style lang="postcss">
</style>