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

12 lines
227 B
Svelte
Raw Normal View History

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