···11+<script>
22+ import PdfViewer from "$docs/wip/pdf-viewer/PDFViewer.svelte";
33+</script>
44+<PdfViewer />
+3-3
src/routes/components/extras/undraw/Undraw.md
···1919202021211. Download a svg illustration from [undraw](https://undraw.co/illustrations) leaving the theme color as it is (#6c63ff).
2222-2. Import that svg and use it with the undraw component. This will automatically change the theme color to your theme color.
2222+2. Import that svg with the `?raw` extension and use it with the undraw component. The theme color will automatically change to your theme color, all other colors will have to be manually changed using the `colorMap` prop (or if not using dark mode, leave as is).
23232424```svelte
2525<script lang="ts">
2626- import Undraw from '$lib/components/extra/undraw/Undraw.svelte';
2626+ import { Undraw } from 'fuchs';
27272828- import svg from '$docs/assets/undraw_yoga.svg?raw';
2828+ import svg from './your-illustration.svg?raw';
2929</script>
30303131<Undraw
+1-1
src/routes/docs/philosophy/Philosophy.md
···35353636## Lots of components
37373838-While currently only the base components are visible, there are lots of components in the pipeline.
3838+While currently only the base and some extra components are visible, there are lots of components in the pipeline.
3939The aim is to have a component library that has lots of components that are useful for building
4040webapps/websites/games, all in a consistent style/theme.
4141