mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 21:54:21 -04:00
15 lines
404 B
Svelte
15 lines
404 B
Svelte
<script lang="ts" context="module">
|
|
export type Color = 'transparent-primary' | 'transparent-gray' | 'overlay-primary';
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import Button from './button.svelte';
|
|
|
|
export let color: Color = 'transparent-primary';
|
|
export let title: string | undefined = undefined;
|
|
</script>
|
|
|
|
<Button size="icon" {color} {title} shadow={false} rounded="full" on:click>
|
|
<slot />
|
|
</Button>
|