mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00: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;
|
|
}
|
|
`;
|