react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 459 B
JavaScript
import React from 'react';
export default function HomeCityOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-home-city-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M10 2v2.26l2 1.33V4h10v15h-5v2h7V2H10M7.5 5L0 10v11h15V10L7.5 5M14 6v.93L15.61 8H16V6h-2m4 0v2h2V6h-2M7.5 7.5L13 11v8h-3v-6H5v6H2v-8l5.5-3.5M18 10v2h2v-2h-2m0 4v2h2v-2h-2z" />
</svg>
);
}