bananas-commerce-admin
Version:
What's this, an admin for apes?
8 lines (7 loc) • 339 B
TypeScript
import React from "react";
import { SvgIconTypeMap } from "@mui/material/SvgIcon";
import { ShipmentDestinationType } from "../types/shipment";
export type ShipmentDestinationIconProps = SvgIconTypeMap["props"] & {
type: ShipmentDestinationType;
};
export declare const ShipmentDestinationIcon: React.FC<ShipmentDestinationIconProps>;