Add avatar fallback
This commit is contained in:
@@ -1,20 +1,18 @@
|
||||
<script lang="ts">
|
||||
import cx from "classnames"
|
||||
import Icon from "@lib/components/Icon.svelte"
|
||||
|
||||
export let src = ""
|
||||
export let size = 7
|
||||
export let icon = "user-rounded"
|
||||
|
||||
$: rem = size * 4
|
||||
</script>
|
||||
|
||||
{#if src}
|
||||
<div
|
||||
class="{$$props.class} relative !flex shrink-0 items-center justify-center overflow-hidden rounded-full"
|
||||
style="width: {rem}px; height: {rem}px; min-width: {rem}px; {$$props.style || ''}">
|
||||
<Icon {icon} size={Math.round(size * 0.8)} />
|
||||
<div
|
||||
class={cx($$props.class, "shrink-0 overflow-hidden rounded-full bg-cover bg-center")}
|
||||
style={`width: ${size * 4}px; height: ${size * 4}px; min-width: ${size * 4}px; background-image: url(${src}); ${$$props.style || ""}`} />
|
||||
{:else}
|
||||
<div
|
||||
class={cx($$props.class, "center !flex rounded-full")}
|
||||
style={`width: ${size * 4}px; height: ${size * 4}px; min-width: ${size * 4}px; ${$$props.style || ""}`}>
|
||||
<Icon {icon} size={Math.round(size * 0.8)} />
|
||||
</div>
|
||||
{/if}
|
||||
class="absolute left-0 top-0 h-full w-full bg-cover bg-center"
|
||||
style="background-image: url({src})" />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user