UNPKG

@nqminds/crop-doc-constants

Version:

Cropdoc constants

21 lines (16 loc) 717 B
import textContent from "@nqminds/crop-doc-translations"; const alertCategories = {info: "info", alert: "alert", weather: "weather", pest: "pest", event: "event"}; const categories = { category: alertCategories, categoryText: { [alertCategories.info]: textContent.info, [alertCategories.alert]: textContent.alert, [alertCategories.weather]: textContent.weather, [alertCategories.pest]: textContent.pest, [alertCategories.event]: textContent.event, }, categoryIcons: { [alertCategories.info]: "info", [alertCategories.alert]: "warning", [alertCategories.weather]: "cloud", [alertCategories.pest]: "emoji_nature", [alertCategories.event]: "event", }, }; export default categories;