mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
21 lines
367 B
TypeScript
21 lines
367 B
TypeScript
|
|
import { Button as ButtonComponent, Drawer } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const Container = styled.div`
|
||
|
|
margin-top: 0.5rem;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const Button = styled(ButtonComponent)`
|
||
|
|
&&& {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const DrawerContainer = styled(Drawer)`
|
||
|
|
.ant-drawer-header {
|
||
|
|
padding: 0;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
`;
|