/** * WordPress dependencies */ import { Icon, __experimentalInputControlPrefixWrapper as InputControlPrefixWrapper, } from '@wordpress/components'; import { link } from '@wordpress/icons'; /** * Internal dependencies */ import type { DataFormControlProps } from '../../types'; import ValidatedText from './utils/validated-input'; export default function Url< Item >( { data, field, onChange, hideLabelFromVision, markWhenOptional, validity, }: DataFormControlProps< Item > ) { return ( ), } } /> ); }