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