dnazarenkosignoz 7415de4751
feat: add the options menu (#2832)
Co-authored-by: Nazarenko19 <danil.nazarenko2000@gmail.com>
Co-authored-by: Palash Gupta <palashgdev@gmail.com>
2023-06-08 14:50:39 +05:30

20 lines
401 B
TypeScript

import { Card, Space, Typography } from 'antd';
import styled from 'styled-components';
export const OptionsContainer = styled(Card)`
.ant-card-body {
display: flex;
padding: 0.25rem 0.938rem;
cursor: pointer;
}
`;
export const OptionsContentWrapper = styled(Space)`
min-width: 11rem;
padding: 0.25rem 0.5rem;
`;
export const FieldTitle = styled(Typography.Text)`
font-size: 0.75rem;
`;