import React, { FC } from 'react'; import { FilterInput } from '../../core/components/FilterInput/FilterInput'; interface Props { searchQuery: string; disabled: boolean; onAddClick: () => void; onSearchChange: (value: string) => void; } export const ApiKeysActionBar: FC = ({ searchQuery, disabled, onAddClick, onSearchChange }) => { return (
); };