1
0
Fork 0
mirror of synced 2024-09-19 02:39:37 +12:00
budibase/packages/materialdesign-components/src/Typography/H3.svelte
2020-03-23 13:58:40 +00:00

11 lines
227 B
Svelte

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