budibase/packages/materialdesign-components/src/Common/Label.svelte

13 lines
177 B
Svelte
Raw Normal View History

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