Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/ListGroupItem.d.ts
Henry Whitaker ea5808047f Tweaked gitignore
gitignore removed all composer and npm files, so automated builds would fail
2020-04-12 21:24:03 +01:00

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;