link-button.svelte 361 B

1234567891011121314
  1. <script lang="ts" context="module">
  2. export type Color = 'transparent-primary' | 'transparent-gray';
  3. </script>
  4. <script lang="ts">
  5. import Button from './button.svelte';
  6. export let color: Color = 'transparent-gray';
  7. export let disabled = false;
  8. </script>
  9. <Button size="link" {color} shadow={false} rounded="lg" {disabled} on:click>
  10. <slot />
  11. </Button>