mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-19 21:41:09 +08:00

* feat(builder): add having filter * feat(builder): add having filter * feat(builder): add having filter * feat: return initial query builder * fix: having filter operators and values
27 lines
511 B
TypeScript
27 lines
511 B
TypeScript
import { CloseCircleOutlined } from '@ant-design/icons';
|
|
import { Row } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const StyledDeleteEntity = styled(CloseCircleOutlined)`
|
|
position: absolute;
|
|
top: 0.5rem;
|
|
right: 0.9375rem;
|
|
z-index: 1;
|
|
cursor: pointer;
|
|
opacity: 0.45;
|
|
width: 1.3125rem;
|
|
height: 1.3125rem;
|
|
svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
`;
|
|
|
|
export const StyledRow = styled(Row)`
|
|
padding-right: 3rem;
|
|
`;
|
|
|
|
export const StyledFilterRow = styled(Row)`
|
|
margin-bottom: 0.875rem;
|
|
`;
|