feat: Serve static assets of apps
This commit is contained in:
@@ -7,8 +7,9 @@ type AppIconProps = {
|
||||
};
|
||||
|
||||
export default function AppIcon(props: AppIconProps) {
|
||||
const { color, name, url } = props;
|
||||
|
||||
const { name, url } = props;
|
||||
const color = url ? 'white' : props.color
|
||||
|
||||
return (
|
||||
<Avatar component="span" variant="square" sx={{ bgcolor: `#${color}` }} src={url} alt={name} />
|
||||
);
|
||||
|
Reference in New Issue
Block a user