GregBrimble/gregbrimble-components

View on GitHub
src/components/Typography/Bodies/shared.js

Summary

Maintainability
A
40 mins
Test Coverage
import styled from "styled-components"

import ThemeDefault from "../../../themes/ThemeDefault"

export const Body = styled.p`
  color: ${props => props.theme.neutral[`900`]};
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
`

Body.defaultProps = {
  theme: ThemeDefault,
}