composer / source /ui /src /lib /DensityOptions.svelte
Ron Au
feat(ui): Add frontend
ca5bd83
raw
history blame
427 Bytes
<script lang="ts">
import Radio from './Radio.svelte';
const options = ['Low', 'Medium', 'High'];
const type: string = 'density';
</script>
<div>
<fieldset>
<legend>Note density</legend>
<Radio {options} {type} />
</fieldset>
</div>
<style>
fieldset {
padding: 0;
border: none;
margin-top: 1rem;
}
legend {
text-align: center;
font-size: 1.25rem;
font-weight: 700;
padding: 0;
margin-bottom: 1rem;
}
</style>