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

@ -277,6 +277,10 @@ const StyledButton = styled.button<
}
`;
const StyledSoonPill = styled(SoonPill)`
margin-left: auto;
`;
export const Button = ({
className,
Icon,
@ -307,7 +311,7 @@ export const Button = ({
>
{Icon && <Icon size={theme.icon.size.sm} />}
{title}
{soon && <SoonPill />}
{soon && <StyledSoonPill />}
</StyledButton>
);
};