implementing pages and styles
This commit is contained in:
19
react-native/app/components/button/styles.ts
Normal file
19
react-native/app/components/button/styles.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import styled from 'styled-components/native';
|
||||
import { colors } from '../../styles/colors';
|
||||
|
||||
|
||||
export const ButtonAppStyle = styled.TouchableHighlight`
|
||||
height: 50px;
|
||||
font-size: 22px;
|
||||
background-color: ${colors.primary_light};
|
||||
border-radius: 5px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
`
|
||||
|
||||
export const TextButton = styled.Text`
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
|
||||
`
|
||||
Reference in New Issue
Block a user