UNPKG

@tsc_tech/medusa-plugin-notification-template

Version:
23 lines (22 loc) 530 B
import { Input, Checkbox, Textarea } from "@medusajs/ui"; import EventSelect from "../SelectEvent/index.js"; import CustomTagInput from "../TagInput/index.js"; const getInputElement = (type) => { switch (type) { case "input": return Input; case "TagInputComponent": return CustomTagInput; case "EventSelect": return EventSelect; case "Textarea": return Textarea; case "checkbox": return Checkbox; default: return Input; } }; export { getInputElement as default };