mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
17 lines
437 B
Svelte
17 lines
437 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { Icon, Text } from '@immich/ui';
|
||
|
|
import { mdiCheck, mdiClose } from '@mdi/js';
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
title: string;
|
||
|
|
state: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
let { title, state }: Props = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div class="flex justify-between items-center">
|
||
|
|
<Text class="text-sm font-medium">{title}</Text>
|
||
|
|
<Icon icon={state ? mdiCheck : mdiClose} class={state ? 'text-primary' : 'text-danger'} size="24" />
|
||
|
|
</div>
|