fix: changed font weight of page title

This commit is contained in:
Ivana Andersson 2023-08-16 14:39:05 +03:00
parent cc90bc4d32
commit 1f5ff18605
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ type TitleProps = {
const Title = ({ color, children }: TitleProps) => {
return (
<Text size={27} weight={'medium'} color={color}>
<Text size={27} weight={'semibold'} color={color}>
{children}
</Text>
)