19 lines
413 B
React
19 lines
413 B
React
|
import styled from "styled-components";
|
||
|
|
||
|
import { color } from "../../../../style/varibles";
|
||
|
|
||
|
const InputBlockStyled = styled.div`
|
||
|
width: 320px;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
background: ${color.complement.azulOscuro};
|
||
|
color: ${color.complement.azulCielo};
|
||
|
font-size: 11px;
|
||
|
margin: 8px 0;
|
||
|
padding: 12px;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
gap: 12px;
|
||
|
`;
|
||
|
|
||
|
export default InputBlockStyled;
|