mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-20 08:56:29 +00:00
32 lines
794 B
TypeScript
32 lines
794 B
TypeScript
|
|
import './QueryAggregationOptions.styles.scss';
|
||
|
|
|
||
|
|
import { Input } from 'antd';
|
||
|
|
import InputWithLabel from 'components/InputWithLabel/InputWithLabel';
|
||
|
|
|
||
|
|
function QueryAggregationOptions(): JSX.Element {
|
||
|
|
return (
|
||
|
|
<div className="query-aggregation-container">
|
||
|
|
<Input
|
||
|
|
placeholder="Search aggregation options..."
|
||
|
|
className="query-aggregation-options-input"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<div className="query-aggregation-interval">
|
||
|
|
<div className="query-aggregation-interval-label">every</div>
|
||
|
|
<div className="query-aggregation-interval-input-container">
|
||
|
|
<InputWithLabel
|
||
|
|
initialValue="60"
|
||
|
|
label="Seconds"
|
||
|
|
placeholder="60"
|
||
|
|
type="number"
|
||
|
|
labelAfter
|
||
|
|
onClose={(): void => {}}
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default QueryAggregationOptions;
|