15 lines
193 B
JavaScript
Raw Normal View History

2019-09-11 11:00:40 +02:00
import styled from 'styled-components';
const P = styled.p`
margin-top: 10px;
text-align: center;
font-size: 13px;
color: #9ea7b8;
u {
color: #1c5de7;
}
`;
export default P;