grafana/public/app/features/explore/Logs/LogsColumnSearch.tsx
Galen Kistler fd863cfc93
Logs Panel: Table UI - Misc UI tweaks (#78150)
* Miscellaneous UI tweaks for logs table UI in explore
2023-11-29 10:57:04 -06:00

24 lines
672 B
TypeScript

import { css } from '@emotion/css';
import React from 'react';
import { GrafanaTheme2 } from '@grafana/data/src';
import { Field, Input, useTheme2 } from '@grafana/ui/src';
function getStyles(theme: GrafanaTheme2) {
return {
searchWrap: css({
padding: theme.spacing(0.4),
}),
};
}
export function LogsColumnSearch(props: { onChange: (e: React.FormEvent<HTMLInputElement>) => void; value: string }) {
const theme = useTheme2();
const styles = getStyles(theme);
return (
<Field className={styles.searchWrap}>
<Input value={props.value} type={'text'} placeholder={'Search fields by name'} onChange={props.onChange} />
</Field>
);
}