1
0
Fork 0
mirror of synced 2024-09-19 18:59:06 +12:00
budibase/packages/bbui/src/Typography/Code.svelte

11 lines
186 B
Svelte
Raw Normal View History

2021-04-14 20:53:23 +12:00
<script>
2021-04-30 23:39:34 +12:00
import "@spectrum-css/typography/dist/index-vars.css"
2021-04-14 20:53:23 +12:00
2021-04-30 23:39:34 +12:00
// Sizes
export let size = "M"
2021-04-14 20:53:23 +12:00
</script>
2021-04-30 23:39:34 +12:00
<code class="spectrum-Code spectrum-Code--size{size}">
<slot />
</code>