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

12 lines
227 B
Svelte

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