9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
|
|
import styled from 'styled-components/native';
|
||
|
|
|
||
|
|
const Input = styled.TextInput`
|
||
|
|
margin: 10px 0;
|
||
|
|
border-radius: 5px;
|
||
|
|
padding: 15px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default Input;
|