PromucFlow_constructor/app/client/src/widgets/RateWidget/constants.ts
2021-09-09 20:40:22 +05:30

14 lines
205 B
TypeScript

export enum RateSizes {
SMALL = "SMALL",
MEDIUM = "MEDIUM",
LARGE = "LARGE",
}
export const RATE_SIZES = {
SMALL: 12,
MEDIUM: 16,
LARGE: 21,
};
export type RateSize = keyof typeof RateSizes;