UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

8 lines 481 B
import * as React from 'react'; import { useStyles } from 'nice-ui/lib/styles/context'; export const ContextPaneHeaderSep = () => { const style = useStyles(); return (React.createElement("div", { style: { background: style.g(0, 0.05), width: '100%', height: '8px' } }, React.createElement("div", { style: { background: style.col.mapped('bg') + '', borderRadius: '8px 8px 0 0', width: '100%', height: '8px' } }))); }; //# sourceMappingURL=ContextPaneHeaderSep.js.map