nexxtway/react-rainbow

View on GitHub
src/components/GoogleAddressLookup/styled/icons.js

Summary

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

export const IconCircleColor = attachThemeAttrs(styled.svg)`
    fill: ${props => props.palette.text.disabled}
`;

export const IconPinColor = attachThemeAttrs(styled.svg)`
    fill: ${props => props.palette.background.main}
`;

export const SearchValueIconColor = attachThemeAttrs(styled.svg)`
    fill: ${props => props.palette.brand.main}
`;