You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/frontend/src/Helpers/Props/kinds.js

24 lines
456 B

export const DANGER = 'danger';
export const DEFAULT = 'default';
export const DISABLED = 'disabled';
export const INFO = 'info';
export const INVERSE = 'inverse';
export const PRIMARY = 'primary';
export const PURPLE = 'purple';
export const SUCCESS = 'success';
export const WARNING = 'warning';
export const QUEUE = 'queue';
export const all = [
DANGER,
DEFAULT,
DISABLED,
INFO,
INVERSE,
PRIMARY,
PURPLE,
SUCCESS,
WARNING,
QUEUE
];