mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
14 lines
325 B
Svelte
14 lines
325 B
Svelte
<script lang="ts">
|
|
import Cell from './cell.svelte';
|
|
export let src: string;
|
|
export let alt: string;
|
|
export let onlyDesktop = false;
|
|
export let width = 30;
|
|
</script>
|
|
|
|
<Cell {onlyDesktop} {width}>
|
|
<div class="image">
|
|
<img class="avatar" {width} height={width} {src} {alt} />
|
|
</div>
|
|
</Cell>
|