2024-07-09 17:49:18 +02:00
|
|
|
<script lang="ts">
|
2025-02-02 11:17:22 +01:00
|
|
|
export let type: 'note' | 'warning' = 'note';
|
2024-07-09 17:49:18 +02:00
|
|
|
</script>
|
|
|
|
|
2024-07-09 22:15:05 +02:00
|
|
|
<div
|
2025-02-02 11:17:22 +01:00
|
|
|
class="bg-secondary border-l-8 {type === 'note'
|
|
|
|
? 'border-link'
|
|
|
|
: 'border-destructive'} p-2 text-sm rounded-md"
|
2024-07-09 22:15:05 +02:00
|
|
|
>
|
2025-02-02 11:17:22 +01:00
|
|
|
<slot />
|
2024-07-09 17:49:18 +02:00
|
|
|
</div>
|
2024-07-12 18:08:27 +02:00
|
|
|
|
|
|
|
<style lang="postcss">
|
2025-02-02 11:17:22 +01:00
|
|
|
div :global(a) {
|
|
|
|
@apply text-link;
|
|
|
|
@apply hover:underline;
|
|
|
|
}
|
2024-07-12 18:08:27 +02:00
|
|
|
</style>
|