mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-14 19:11:28 +08:00

* feat: added usefeatureflags hook and relevant code * chore: resolved lint issues * chore: applied translations * feat: added signup for sso
20 lines
449 B
TypeScript
20 lines
449 B
TypeScript
import { MinusSquareOutlined } from '@ant-design/icons';
|
|
import styled from 'styled-components';
|
|
|
|
export const ManageLicenseContainer = styled.div`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 1rem;
|
|
`;
|
|
|
|
export const ManageLicenseWrapper = styled.div`
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
`;
|
|
|
|
export const FreePlanIcon = styled(MinusSquareOutlined)`
|
|
background-color: hsla(0, 0%, 100%, 0.3);
|
|
`;
|