Design Auth index (#325)

This commit is contained in:
Charles Bochet
2023-06-18 23:51:59 +02:00
committed by GitHub
parent ffa8318e2e
commit 5904a39362
17 changed files with 325 additions and 7 deletions

View File

@ -0,0 +1,15 @@
import styled from '@emotion/styled';
type OwnProps = {
title: string;
};
const StyledTitle = styled.div`
font-size: ${({ theme }) => theme.fontSizeExtraLarge};
font-weight: ${({ theme }) => theme.fontWeightSemibold};
margin-top: ${({ theme }) => theme.spacing(10)};
`;
export function Title({ title }: OwnProps): JSX.Element {
return <StyledTitle>{title}</StyledTitle>;
}