123456789101112131415161718192021222324 |
- 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;
|