monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
24 lines (19 loc) • 427 B
JavaScript
import { SIZES } from "../../constants/sizes";
export const COUNTER_TYPES = {
FILL: "fill",
LINE: "line"
};
export const COUNTER_COLORS = {
PRIMARY: "primary",
DARK: "dark",
NEGATIVE: "negative"
};
const OLD_COUNTER_SIZES = {
sm: SIZES.SMALL,
md: SIZES.MEDIUM,
lg: SIZES.LARGE
};
// Support old sizes (backward compatible)
export const getActualSize = size => {
return OLD_COUNTER_SIZES[size] || size;
};