@udus/notion-renderer
Version:

5 lines (4 loc) • 363 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
export const UniqueIdProperty = ({ propertyItem, }) => {
return (_jsxs("div", { id: propertyItem.id, className: "notion-property-item notion-unique-id", children: [_jsx("span", { children: propertyItem.unique_id.prefix }), "-", _jsx("span", { children: propertyItem.unique_id.number })] }));
};