mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
8 lines
314 B
JavaScript
8 lines
314 B
JavaScript
export const EXTRA_SMALL = 'extraSmall';
|
|
export const SMALL = 'small';
|
|
export const MEDIUM = 'medium';
|
|
export const LARGE = 'large';
|
|
export const EXTRA_LARGE = 'extraLarge';
|
|
export const EXTRA_EXTRA_LARGE = 'extraExtraLarge';
|
|
export const all = [EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE, EXTRA_EXTRA_LARGE];
|