use album icon for unloaded image (#1136)

This commit is contained in:
jeffvli
2025-12-08 22:31:30 -08:00
parent a19a6815e9
commit 3d07290231
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ export const AppIcon = {
edit: LuPencilLine, edit: LuPencilLine,
ellipsisHorizontal: LuEllipsis, ellipsisHorizontal: LuEllipsis,
ellipsisVertical: LuEllipsisVertical, ellipsisVertical: LuEllipsisVertical,
emptyImage: LuImageOff, emptyImage: LuDisc3,
error: LuShieldAlert, error: LuShieldAlert,
externalLink: LuExternalLink, externalLink: LuExternalLink,
favorite: LuHeart, favorite: LuHeart,
+1 -1
View File
@@ -134,7 +134,7 @@ export function ImageLoader({ className }: ImageLoaderProps) {
export function ImageUnloader({ className }: ImageUnloaderProps) { export function ImageUnloader({ className }: ImageUnloaderProps) {
return ( return (
<div className={clsx(styles.unloader, className)}> <div className={clsx(styles.unloader, className)}>
<Icon color="default" icon="emptyImage" size="xl" /> <Icon color="default" icon="emptyImage" size="25%" />
</div> </div>
); );
} }