Code Block

A component for displaying formatted code snippets with syntax highlighting.

Samples

Here is an example of the CodeBlock component.

0

<script lang="ts">

1

  import CodeBlock from 'fluid-ui-svelte/components/CodeBlock.svelte';

2

</script>

3

4

<CodeBlock language="typescript" code="console.log('Hello, Fluid UI!');" />