feat: add Settings/Accounts Settings section (#2853)

Closes #2818
This commit is contained in:
Thaïs
2023-12-07 12:43:38 +01:00
committed by GitHub
parent a8ecc23cbe
commit 62fa55eae6
11 changed files with 172 additions and 15 deletions

View File

@ -60,6 +60,7 @@ export {
IconList,
IconLogout,
IconMail,
IconMailCog,
IconMap,
IconMinus,
IconMoneybag,

View File

@ -1,5 +1,9 @@
import styled from '@emotion/styled';
type SoonPillProps = {
className?: string;
};
const StyledSoonPill = styled.span`
align-items: center;
background: ${({ theme }) => theme.background.transparent.light};
@ -13,8 +17,9 @@ const StyledSoonPill = styled.span`
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>;
export const SoonPill = ({ className }: SoonPillProps) => (
<StyledSoonPill className={className}>Soon</StyledSoonPill>
);