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

12 lines
227 B
Svelte
Raw Normal View History

2020-02-10 16:47:47 +01:00
<script>
export let text = ""
export let verticalMargin = 5
export let horizontalMargin = 0
2020-02-10 16:47:47 +01:00
</script>
<h2
style={`margin: ${verticalMargin}px ${horizontalMargin}px`}
class="mdc-typography--headline2">
{text}
</h2>