21 lines
473 B
React
21 lines
473 B
React
|
import styled from "styled-components";
|
||
|
|
||
|
import { color } from "../../../../style/varibles";
|
||
|
|
||
|
const BtnSubmitStyled = styled.button`
|
||
|
cursor: pointer;
|
||
|
width: 342px;
|
||
|
padding: 12px;
|
||
|
margin-top: 16px;
|
||
|
background-color: ${color.complement.azulCielo};
|
||
|
color: ${color.pricinpal.blanco};
|
||
|
border: none;
|
||
|
border-radius: 6px;
|
||
|
font-size: 14px;
|
||
|
font-family: "HelveticaRoman";
|
||
|
box-shadow: -1px 0px 8px 0px rgba(255,255,255,.25);
|
||
|
`;
|
||
|
|
||
|
export default BtnSubmitStyled;
|
||
|
|