The props passed to the underlying SvgIcon component
A React component that renders the store icon
const StoreIcon: FC<SvgIconProps> = (props) => {
return (
<SvgIcon {...props}>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M20 4H4V6H20V4ZM21 14V12L20 7H4L3 12V14H4V20H14V14H18V20H20V14H21ZM12 18H6V14H12V18Z"
fill="currentColor"
/>
</svg>
</SvgIcon>
);
};
A Material-UI icon component that renders a store/shop icon. This icon is typically used to represent a store, marketplace, or shopping interface.