23 lines
752 B
TypeScript
23 lines
752 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: flex;
|
|
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 }) => theme.spacing(1)} ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
export function SoonPill() {
|
|
return <StyledSoonPill>Soon</StyledSoonPill>;
|
|
}
|