mirror of
https://github.com/Sonarr/Sonarr
synced 2026-04-24 22:21:46 +02:00
7 lines
314 B
JavaScript
7 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];
|