projeto-hit/frontend/src/components/Base/Form/Label/LabelComponent.style.jsx

15 lines
329 B
React
Raw Normal View History

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;