sombreroEnPuntas/car-gallery

View on GitHub
components/wrappers/ErrorCode.js

Summary

Maintainability
A
0 mins
Test Coverage
import styled from 'styled-components'
import { colors, fonts } from '.'

const ErrorCode = styled.code`
  color: ${colors.error.outline};
  font-family: ${fonts.fontFamily};
  font-size: 0.65em;
  font-weight: bold;
`

export default ErrorCode