import React from 'react'; import {getInputFieldClassNames} from '../input-field/get-input-field-class-names'; import {BaseFieldProps} from '../input-field/base-field-props'; interface Props extends BaseFieldProps, Omit, 'size'> {} export function NativeSelect(props: Props) { const style = getInputFieldClassNames(props); const {label, id, children, size, ...other} = {...props}; return (
{label && ( )}
); }