/** * @name GetValuesEnum * @description Helper type to get the values of an enum dynamically * @author Pol Gubau Amores - https://polgubau.com */ export type GetValuesEnum = T[keyof T]; /** * @name MainSizesEnum * @description Enum for the different sizes of the components * @property {string} xs - Extra small * @property {string} sm - Small * @property {string} md - Medium * @property {string} lg - Large * @property {string} xl - Extra large * @example *