iztech-design-system-neo
Version:
Design System of project IZtech
24 lines (21 loc) • 460 B
JavaScript
/**
* This served as price for other components, such as:
* - online/offline course
* - event
* - book
*/
// example: 100.000 vnd / month
const SUBCRIPTION_RANGE = {
PER_MONTH: "{0} / month",
PER_WEEK: "{0} / week",
PER_DAY: "{0} / day",
PER_LESSON: "{0} / lesson",
}
export default {
SUBCRIPTION_RANGE,
OWNED: "Owned",
FREE: "Free",
CONTACT: "Contact",
// specialized for offline course
OFFLINE_COURSE_IS_LEARNING: "Is Learning",
}