* ui docs * UI docs for display components * docs for display and feedback components * minor edits * minor changes * cleaned up code * Move telemetry * Revised Feedback/Display UI docs & added input UI docs * Docs for Input components * updated icons * docs for input/components * minor edits based on feedback * add css to ui components * Fixed spacing issue in button groups --------- Co-authored-by: Félix Malfait <felix.malfait@gmail.com> Co-authored-by: Charles Bochet <charles@twenty.com>
21 lines
722 B
TypeScript
21 lines
722 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const StyledSoonPill = styled.span`
|
|
align-items: center;
|
|
background: ${({ theme }) => theme.background.transparent.light};
|
|
border-radius: 50px;
|
|
color: ${({ theme }) => theme.font.color.light};
|
|
display: inline-block;
|
|
font-size: ${({ theme }) => theme.font.size.xs};
|
|
font-style: normal;
|
|
font-weight: ${({ theme }) => theme.font.weight.medium};
|
|
gap: ${({ theme }) => theme.spacing(2)};
|
|
height: ${({ theme }) => theme.spacing(4)};
|
|
justify-content: flex-end;
|
|
line-height: ${({ theme }) => theme.text.lineHeight.lg};
|
|
margin-left: auto;
|
|
padding: ${({ theme }) => `0 ${theme.spacing(2)}`};
|
|
`;
|
|
|
|
export const SoonPill = () => <StyledSoonPill>Soon</StyledSoonPill>;
|