mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const Container = styled.div`
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: flex-end;
|
||
|
|
gap: 0.5rem;
|
||
|
|
`;
|