12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
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;
|