import clsx from 'clsx' import { ClickHandler } from './usa-map' type USAStateProps = { state: string dimensions: string fill: string onClickState?: ClickHandler stateName: string hideStateTitle?: boolean } export const USAState = ({ state, dimensions, fill, onClickState, stateName, hideStateTitle, }: USAStateProps) => { return ( {hideStateTitle ? null : {stateName}} ) }