budibase/packages/materialdesign-components/src/Typography/H1.svelte

12 lines
227 B
Svelte

<script>
export let text = ""
export let verticalMargin = 5
export let horizontalMargin = 0
</script>
<h1
style={`margin: ${verticalMargin}px ${horizontalMargin}px`}
class="mdc-typography--headline1">
{text}
</h1>