UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

7 lines (6 loc) 356 B
import * as React from 'react'; import { QuickSearchInput } from './QuickSearchInput'; export const QuickSearchViewPanelControl = (props) => { let elementType = props.viewType === 'ToolPanel' ? 'DashboardToolbar' : 'ToolPanel'; return React.createElement(QuickSearchInput, { className: `ab-${elementType}__QuickSearch__text`, width: '15rem' }); };