import styled from "styled-components";
export const TextArea = styled.textarea`
border: none;
resize: none;
background-color: transparent;
color: #fafafa;
width: 100%;
height: 100%;
padding: 10px;
&:focus {
outline: none;
}
`