mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
15 lines
246 B
TypeScript
15 lines
246 B
TypeScript
|
|
import { Typography } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const Container = styled.div`
|
||
|
|
margin-top: 2rem;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const Name = styled(Typography)`
|
||
|
|
&&& {
|
||
|
|
font-weight: 600;
|
||
|
|
color: #177ddc;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
`;
|