File size: 427 Bytes
ca5bd83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<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>