/**
 * Bootstrap Color
 */
export type BSColor =
    | 'primary'
    | 'secondary'
    | 'success'
    | 'info'
    | 'warning'
    | 'danger';
