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

12 lines
228 B
Svelte
Raw Normal View History

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