UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

10 lines 459 B
import React from "react"; import { BusinessCenterOutlined, PersonOutlineOutlined } from "@mui/icons-material"; import { CustomerType } from "../types/member"; export const CustomerTypeIcon = (type) => { if (type === CustomerType.COMPANY) { return React.createElement(BusinessCenterOutlined, { fontSize: "small" }); } return React.createElement(PersonOutlineOutlined, { fontSize: "small" }); }; //# sourceMappingURL=customerTypeIcon.js.map