no-mui-icons-filled
Version:
Filled (standard) Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 459 B
JSX
export function BungalowFilledIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-filled-icon no-mui-bungalow-filled-icon ${ className ?? '' }`} {...props} xmlns="http://www.w3.org/2000/svg" enableBackground="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><rect fill="none" height="24" width="24"/><path d="M12,3L4.2,15.5l1.7,1.06L7,14.8V21h4v-5h2v5h4v-6.21l1.1,1.77l1.7-1.06L12,3z M13,14h-2v-2h2V14z"/></svg>
);
}