import * as React from 'react' import styled, { useTheme } from 'styled-components/native' const Inner = styled.TextInput` height: 150px; ` interface Props { lines?: number, value?: string, placeholder?: string } const OTextarea = (props: Props) => { const theme = useTheme(); const Wrapper = styled.View` padding: 10px; border-radius: 10px; border: 1px solid ${theme.colors.lightGray}; ` return ( ) } export default OTextarea;