35 lines
776 B
React
35 lines
776 B
React
|
import styled from "styled-components";
|
||
|
import { color } from "../../style/varibles";
|
||
|
|
||
|
const PageTitleStyled = styled.div`
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
flex-wrap: nowrap;
|
||
|
`;
|
||
|
const UserBtnStyled = styled.button`
|
||
|
display: flex;
|
||
|
width: 218px;
|
||
|
padding: 16px;
|
||
|
text-align: left;
|
||
|
background-color: ${color.pricinpal.grisOscuro};
|
||
|
color: ${color.pricinpal.blanco};
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
font-family: "Helvetica55";
|
||
|
letter-spacing: .5px;
|
||
|
font-size: 14px;
|
||
|
text-transform: capitalize;
|
||
|
align-items: center;
|
||
|
img{
|
||
|
background-color: white;
|
||
|
width: 24px;
|
||
|
height: 24px;
|
||
|
object-fit: contain;
|
||
|
border-radius: 50%;
|
||
|
margin-right: 12px;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export { PageTitleStyled, UserBtnStyled };
|