bigbluebutton-tablet/react-native/app/components/input/text/styles.ts
2022-02-24 16:03:28 -03:00

16 lines
295 B
TypeScript

import styled from 'styled-components/native';
export const WrapperInputText = styled.TextInput`
background-color: #f2f2f2;
padding: 10px 20px 10px 20px;
border-radius: 5px
`
export const LabelInput = styled.Text`
color: #fff;
font-size: 20px;
font-weight: bold;
`