mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-16 16:11:30 +08:00
19 lines
346 B
TypeScript
19 lines
346 B
TypeScript
import { Button as ButtonComponent } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const ButtonContainer = styled.div`
|
|
&&& {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 1rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
`;
|
|
|
|
export const Button = styled(ButtonComponent)`
|
|
&&& {
|
|
margin-left: 1rem;
|
|
}
|
|
`;
|