import type { ReactNode } from 'react'; import { AffineIconRenderer } from './renderer/affine-icon'; import { type IconData, IconType } from './type'; export const IconRenderer = ({ data, fallback, }: { data?: IconData; fallback?: ReactNode; }) => { if (!data) { return fallback ?? null; } if (data.type === IconType.Emoji && data.unicode) { return data.unicode; } if (data.type === IconType.AffineIcon && data.name) { return ; } if (data.type === IconType.Blob) { // Not supported yet return null; } return fallback ?? null; };