@udus/notion-renderer
Version:

5 lines (4 loc) • 368 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
export const SelectProperty = ({ propertyItem, }) => {
return (_jsx("div", { id: propertyItem.id, className: "notion-property-item notion-select", children: propertyItem.select && (_jsx("div", { className: `notion-pill notion-pill-color-${propertyItem.select.color}`, children: propertyItem.select.name })) }));
};