UNPKG

collaborative-ui

Version:

React component library for building real-time collaborative editing applications.

11 lines (10 loc) 418 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IdLabel = void 0; const tslib_1 = require("tslib"); const React = tslib_1.__importStar(require("react")); const Code_1 = require("nice-ui/lib/1-inline/Code"); const IdLabel = ({ children }) => { return (React.createElement(Code_1.Code, { size: -1, nowrap: true, noBg: true, alt: true }, children)); }; exports.IdLabel = IdLabel;