15 lines
329 B
React
15 lines
329 B
React
|
import styled from "styled-components";
|
||
|
import { color } from "../../../../style/varibles";
|
||
|
|
||
|
const LabelComponentStyled = styled.label`
|
||
|
color: ${color.pricinpal.blanco};
|
||
|
text-align: left;
|
||
|
font-size: 16px;
|
||
|
font-family: "Helvetica85";
|
||
|
text-transform: uppercase;
|
||
|
margin: 6px 0;
|
||
|
`;
|
||
|
|
||
|
export default LabelComponentStyled;
|
||
|
|