|
|
@ -86,7 +86,10 @@ export function UserAvatar(props: { |
|
|
|
export function NoUserAvatar(props: { iconClass?: string }) { |
|
|
|
export function NoUserAvatar(props: { iconClass?: string }) { |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<div className="relative inline-block p-1 text-type-dimmed"> |
|
|
|
<div className="relative inline-block p-1 text-type-dimmed"> |
|
|
|
<Icon className={props.iconClass ?? "text-xl"} icon={Icons.MENU} /> |
|
|
|
<Icon |
|
|
|
|
|
|
|
className={props.iconClass ?? "text-base ssm:text-xl"} |
|
|
|
|
|
|
|
icon={Icons.MENU} |
|
|
|
|
|
|
|
/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|