13 lines
179 B
Svelte
13 lines
179 B
Svelte
|
<script>
|
||
|
export let bold = false;
|
||
|
export let text = "";
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.bold {
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<span class="mdc-typography" class:bold>{text}</span>
|