2020-02-10 16:47:47 +01:00
|
|
|
<script>
|
|
|
|
export let text = ""
|
2020-03-23 14:58:40 +01:00
|
|
|
export let verticalMargin = 0
|
|
|
|
export let horizontalMargin = 0
|
2020-02-10 16:47:47 +01:00
|
|
|
</script>
|
|
|
|
|
2020-03-23 14:58:40 +01:00
|
|
|
<span
|
2020-04-14 15:15:32 +02:00
|
|
|
style={`margin: ${verticalMargin}px ${horizontalMargin}px;`}
|
2020-03-23 14:58:40 +01:00
|
|
|
class="mdc-typography--body1">
|
|
|
|
{text}
|
|
|
|
</span>
|