/** * WordPress dependencies */ import { TextControl, BaseControl } from '@safe-wordpress/components'; import { useInstanceId } from '@safe-wordpress/compose'; /** * External dependencies */ import { css } from '@nelio/forms/css'; /** * Internal dependencies */ import { SmartFieldTagsControl } from './smart-field-tags-control'; export type NumberFieldControlProps = { readonly label: string; readonly value: string; readonly help?: string; readonly onChange: ( value: string ) => void; }; export const NumberFieldControl = ( props: NumberFieldControlProps ): JSX.Element => { const { label, help, value, onChange } = props; const instanceId = useInstanceId( NumberFieldControl ); return ( ); }; // ====== // STYLES // ====== const FIELD_CONTROL = css( { position: 'relative', } );