mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-17 21:44:48 -04:00
10 lines
333 B
TypeScript
10 lines
333 B
TypeScript
export const EXTRA_SMALL = 'extraSmall';
|
|
export const SMALL = 'small';
|
|
export const MEDIUM = 'medium';
|
|
export const LARGE = 'large';
|
|
export const EXTRA_LARGE = 'extraLarge';
|
|
|
|
export const all = [EXTRA_SMALL, SMALL, MEDIUM, LARGE, EXTRA_LARGE] as const;
|
|
|
|
export type Size = 'extraSmall' | 'small' | 'medium' | 'large' | 'extraLarge';
|