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