UNPKG

@botonic/react

Version:

Build Chatbots using React

10 lines (8 loc) 228 B
import styled from 'styled-components' export const StyledChatArea = styled.div<{ height: number }>` display: inherit; flex-direction: inherit; height: ${props => props.height}px; width: inherit; overflow: inherit; `