Skip to content

Commit

Permalink
cr them context
Browse files Browse the repository at this point in the history
  • Loading branch information
OmerGery committed Jan 23, 2024
1 parent cdb8558 commit 6dc5c8b
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions examples/client/Locomotion/src/Components/EmptyState/styled.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Text, View } from 'react-native';
import styled from 'styled-components';
import { FONT_SIZES, FONT_WEIGHTS } from '../../context/theme';

export const Container = styled(View)`
border-radius: 8px;
Expand All @@ -17,26 +18,23 @@ export const Title = styled(Text)`
align-self: stretch;
color: #212229;
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
${FONT_WEIGHTS.REGULAR};
${FONT_SIZES.LARGE};
font-weight: 600;
`;
export const Description = styled(Text)`
align-self: stretch;
color: #666975;
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
${FONT_WEIGHTS.REGULAR};
${FONT_SIZES.LARGE};
font-weight: 400;
`;
export const TitleWithoutDescription = styled(Text)`
align-self: stretch;
color: #666975;
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
${FONT_WEIGHTS.REGULAR};
${FONT_SIZES.LARGE};
font-weight: 500;
`;

0 comments on commit 6dc5c8b

Please sign in to comment.