mirror of
https://github.com/immich-app/immich.git
synced 2025-11-25 12:00:42 +09:00
chore(web): migration svelte 5 syntax (#13883)
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
<script lang="ts">
|
||||
export let size: string = '24';
|
||||
interface Props {
|
||||
size?: string;
|
||||
}
|
||||
|
||||
let { size = '24' }: Props = $props();
|
||||
</script>
|
||||
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user