11 lines
168 B
JavaScript
Raw Normal View History

import styled from '@emotion/styled';
const Lead = styled.p`
font-size: 20px;
margin-bottom: 24px;
${p => p.light && 'color: white;'};
`;
export default Lead;