25 lines
470 B
TypeScript
25 lines
470 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
import { BsPrefixComponent } from './helpers';
|
||
|
|
||
|
export interface ListGroupItemProps {
|
||
|
action?: boolean;
|
||
|
active?: boolean;
|
||
|
disabled?: boolean;
|
||
|
variant?:
|
||
|
| 'primary'
|
||
|
| 'secondary'
|
||
|
| 'success'
|
||
|
| 'danger'
|
||
|
| 'warning'
|
||
|
| 'info'
|
||
|
| 'dark'
|
||
|
| 'light';
|
||
|
}
|
||
|
|
||
|
declare class ListGroupItem<
|
||
|
As extends React.ElementType = 'a'
|
||
|
> extends BsPrefixComponent<As, ListGroupItemProps> {}
|
||
|
|
||
|
export default ListGroupItem;
|