import * as React from 'react' import { CollectionPropertySchema } from 'notion-types' import { PropertyIcon } from '../icons/property-icon' export const CollectionColumnTitle: React.FC<{ schema: CollectionPropertySchema }> = ({ schema }) => { return (
{schema.name}
) }