nexxtway/react-rainbow

View on GitHub
src/components/HighlightedText/styled/index.js

Summary

Maintainability
A
1 hr
Test Coverage
import styled from 'styled-components';
import attachThemeAttrs from '../../../styles/helpers/attachThemeAttrs';

export const DefaultHitContainer = attachThemeAttrs(styled.span)`
    color: ${props => props.palette.text.main};
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Lato Black';
`;

export const DefaultTextContainer = attachThemeAttrs(styled.span)`
    color: ${props => props.palette.text.main};
    font-size: 1rem;
`;