Files
website/src/markdoc/nodes/Code.svelte
Elad Shechter ec7025ab7d Refactor CSS prefix
- changed from AW to WEB
2024-03-06 11:27:37 +01:00

6 lines
115 B
Svelte

<script lang="ts">
export let content: string;
</script>
<span class="web-inline-code web-code">{content}</span>