16 lines
342 B
JavaScript
16 lines
342 B
JavaScript
import styled from "styled-components";
|
|
const StyledInput = styled.input`
|
|
width: 100%;
|
|
background: #ffffff;
|
|
border: 1px solid #e5e7eb;
|
|
box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
|
|
border-radius: 4px;
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #78787c;
|
|
padding: 8px;
|
|
`;
|
|
|
|
export default StyledInput;
|