File size: 316 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export const AspectRatios = {
FREE: 'FREE',
ORIGINAL: 'ORIGINAL',
ASPECT_1X1: 'ASPECT_1X1',
ASPECT_16X9: 'ASPECT_16X9',
ASPECT_4X3: 'ASPECT_4X3',
ASPECT_3X2: 'ASPECT_3X2',
};
export const MinimumImageDimensions = {
WIDTH: 50,
HEIGHT: 50,
};
export const AspectRatiosValues = Object.values( AspectRatios );
|