123
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
import { Avatar, Image, ThemeIcon } from '@mantine/core';
|
||||
import { BaseMarketplaceSchema } from '@/lib/client';
|
||||
|
||||
type Props = {
|
||||
object: BaseMarketplaceSchema;
|
||||
};
|
||||
const BaseMarketplaceColumnRender = ({ object }: Props) => {
|
||||
return <Avatar src={object.iconUrl} radius={"xs"} />;
|
||||
};
|
||||
|
||||
export default BaseMarketplaceColumnRender;
|
||||
Reference in New Issue
Block a user