/* @flow */ import React from 'react' import classnames from 'classnames' import { joinPresent, titleize } from '../utilities/text' import { Body, Hashtag, Title } from '../' import { globalProps } from '../utilities/globalProps.js' type HomeAddressStreetProps = { address: string, addressCont: string, city: string, className?: string, dark?: boolean, emphasis: "street" | "city", homeId: number, houseStyle: string, homeUrl: string, state: string, zipcode: string, territory: string, } const HomeAddressStreet = (props: HomeAddressStreetProps) => { const { address, addressCont, city, className, dark = false, emphasis = 'street', homeId, homeUrl, houseStyle, state, zipcode, territory, } = props const classes = (className, dark) => classnames( className, { 'pb_home_address_street': !dark, 'pb_home_address_street_dark': dark, }, globalProps(props) ) return (