UNPKG

470 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface ListGroupItemProps {
6 action?: boolean;
7 active?: boolean;
8 disabled?: boolean;
9 variant?:
10 | 'primary'
11 | 'secondary'
12 | 'success'
13 | 'danger'
14 | 'warning'
15 | 'info'
16 | 'dark'
17 | 'light';
18}
19
20declare class ListGroupItem<
21 As extends React.ElementType = 'a'
22> extends BsPrefixComponent<As, ListGroupItemProps> {}
23
24export default ListGroupItem;