import React from 'react'; interface AddressBlockIconProps { fill?: string; width?: number; height?: number; } const AddressBlockIcon: React.FC = ({ fill = 'currentColor', width = 24, height = 24, }) => { return ( {/* House icon */} {/* Door */} {/* Envelope overlay */} ); }; export default AddressBlockIcon;