UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

16 lines (15 loc) 548 B
// biome-ignore lint: lint/style/useImportType import * as React from 'react'; import { rule } from 'nano-theme'; import { Paper } from 'nice-ui/lib/4-card/Paper'; import { UrlDisplayLayout } from '../components/UrlDisplayLayout'; const blockClass = rule({ w: '100%', minW: '220px', bxz: 'border-box', pd: '16px', }); export const UrlDisplayCard = (props) => { return (React.createElement(Paper, { className: blockClass, fill: 2, noOutline: true, round: true }, React.createElement(UrlDisplayLayout, { ...props }))); };