2020-02-14 11:32:19 +01:00
|
|
|
<script>
|
2020-02-25 16:21:23 +01:00
|
|
|
export let bold = false
|
|
|
|
export let text = ""
|
2020-02-14 11:32:19 +01:00
|
|
|
</script>
|
|
|
|
|
2020-02-25 16:21:23 +01:00
|
|
|
<span class="mdc-typography" class:bold>{text}</span>
|
|
|
|
|
2020-02-14 11:32:19 +01:00
|
|
|
<style>
|
|
|
|
.bold {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
</style>
|