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

13 lines
179 B
Svelte
Raw Normal View History

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