import * as React from 'react'; import { ComponentClassNames, ComponentText } from '../shared/constants'; import { FieldGroupIconButton } from '../FieldGroupIcon'; import { IconSearch } from '../Icon/internal'; import { ForwardRefPrimitive, Primitive, BaseSearchFieldButtonProps, SearchFieldButtonProps, } from '../types'; const ariaLabelText = ComponentText.SearchField.searchButtonLabel; const SearchFieldButtonPrimitive: Primitive = ({ size, ...props }, ref) => { return ( ); }; export const SearchFieldButton: ForwardRefPrimitive< BaseSearchFieldButtonProps, 'button' > = React.forwardRef(SearchFieldButtonPrimitive); SearchFieldButton.displayName = 'SearchFieldButton';