| 1 | <script lang="ts"> |
| 2 | export let id:string; |
| 3 | export let active = false; |
| 4 | export let label: string; |
| 5 | </script> |
| 6 | |
| 7 | <!-- svelte-ignore a11y-click-events-have-key-events --> |
| 8 | <div {id} class="sidebar-tab" class:active title={label} on:click> |
| 9 | <slot></slot> |
| 10 | </div> |
| 11 | |
| 12 | <style lang="scss"> |
| 13 | .sidebar-tab { |
| 14 | display: flex; |
| 15 | justify-content: center; |
| 16 | align-items: center; |
| 17 | height: 2.5rem; |
| 18 | margin: 5px; |
| 19 | border-radius: 3px; |
| 20 | cursor: pointer; |
| 21 | :global(svg) { |
| 22 | width: 22px; |
| 23 | height: 22px; |
| 24 | } |
| 25 | } |
| 26 | </style> |