import React from 'react' import styled from 'styled-components' import { color } from '../_utils/branding' import { BaseIcon, BaseIconDefaultProps, Icon } from '../_utils/icon' const CarpoolIcon = (props: Icon) => ( ) const StyledCarpoolIcon = styled(CarpoolIcon)` & path, & circle { color: ${props => (props.isDisabled ? color.gray : 'currentColor')}; } ` StyledCarpoolIcon.defaultProps = { ...BaseIconDefaultProps, } export { StyledCarpoolIcon as CarpoolIcon }