import styled from "styled-components"; import * as React from 'react'; const StyledChipEditor = styled.div ` display: flex; flex-direction: row; flex-wrap: wrap; border-bottom: 2px solid gray; min-height: 38px; background: transparent; width: 100%; padding-bottom: 5px; align-items: flex-end; `; const Input = styled.input ` outline: none; border: none; background: transparent; color: #000; width: 50px; display: inline-block; margin-left: 10px; height: 15px; `; export { StyledChipEditor, Input };