mirror of
https://github.com/immich-app/immich
synced 2026-08-29 13:15:45 +00:00
16 lines
445 B
Svelte
16 lines
445 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" fontWeight="medium">{title}</Text>
|
|
<Icon icon={state ? mdiCheck : mdiClose} class={state ? 'text-primary' : 'text-danger'} size="24" />
|
|
</div>
|