import { InputUrl, type FieldUrlProps as InputUrlProps } from "./InputUrl"; import { Block } from "./Block"; type FieldUrlProps = InputUrlProps & { label: string; fieldSpec?: { doc: string } }; export const FieldUrl: React.FC = (props) => { return ( ); };