import Button from "@ui5/webcomponents/dist/Button.js"; import ButtonDesign from "@ui5/webcomponents/dist/types/ButtonDesign.js"; import type ShellBar from "../../ShellBar.js"; function ShellBarSearchField(this: ShellBar) { return ( // .ui5-shellbar-search-field-area is used to measure the width of // the search field. It must be present even if the search is in full-width mode.
{!this.showFullWidthSearch && ( )}
); } function ShellBarSearchFieldFullWidth(this: ShellBar) { return (
); } export { ShellBarSearchField, ShellBarSearchFieldFullWidth, };