1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<script lang="ts"> export let href: string; export let text: string; </script> <div class="toc-entry"> <a {href}>{text}</a> </div> <style scoped lang="scss"> @use "src/styles/variables"; .toc-entry { font-size: 16px; padding: 4px; } .toc-entry a { color: variables.$blue-primary; } </style>