import { Field } from '@ankhorage/surface'; import type React from 'react'; import type { SelectProps } from '../../../../types/select'; /*** Wraps Select presentation in the canonical Surface form-field semantics. */ export function SelectField({ children, props }: SelectFieldProps) { return ( {children} ); } interface SelectFieldProps { children: React.ReactNode; props: SelectProps; }