import React from 'react' import { Input, InputProps } from '../forms/Input' import { TopBar } from './TopBar' export function SearchableTopBar({ buttons, ...props }: InputProps & { buttons: React.ReactNode }) { return ( } after={buttons} /> ) }