forked from Cutlery/immich
* feat(web): randomize password on reest * prettier * chore: clean up --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
17 lines
465 B
Svelte
17 lines
465 B
Svelte
<script lang="ts" context="module">
|
|
export type Color = 'transparent-primary' | 'transparent-gray';
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import Button from './button.svelte';
|
|
|
|
export let color: Color = 'transparent-gray';
|
|
export let disabled = false;
|
|
export let fullwidth = false;
|
|
export let title: string | undefined = undefined;
|
|
</script>
|
|
|
|
<Button {title} size="link" {color} shadow={false} rounded="lg" {disabled} on:click {fullwidth}>
|
|
<slot />
|
|
</Button>
|