mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-20 12:21:09 +08:00
21 lines
373 B
TypeScript
21 lines
373 B
TypeScript
import { Tag } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const TagContainer = styled(Tag)`
|
|
&&& {
|
|
border-radius: 0.25rem;
|
|
padding: 0.063rem 0.5rem;
|
|
font-weight: 600;
|
|
font-size: 0.75rem;
|
|
line-height: 1.25rem;
|
|
}
|
|
`;
|
|
|
|
export const TagLabel = styled.span`
|
|
font-weight: 400;
|
|
`;
|
|
|
|
export const TagValue = styled.span`
|
|
text-transform: capitalize;
|
|
`;
|