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

12 lines
229 B
Svelte

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