Files
bigbluebutton-tablet/react-native/app/components/button/styles.ts
Gustavo Emanuel Farias Rosa 713a4a3a4d fix es list
2022-03-18 15:32:46 -03:00

18 lines
402 B
TypeScript

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;
`;