UNPKG

react-bootstrap

Version:

Bootstrap 4 components built with React

25 lines (20 loc) 470 B
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;