mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
16 lines
577 B
TypeScript
16 lines
577 B
TypeScript
import ListGroupItem from './ListGroupItem';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent, SelectCallback } from './helpers';
|
|
import { EventKey } from './types';
|
|
export interface ListGroupProps extends BsPrefixProps {
|
|
variant?: 'flush';
|
|
horizontal?: boolean | 'sm' | 'md' | 'lg' | 'xl';
|
|
activeKey?: EventKey;
|
|
defaultActiveKey?: EventKey;
|
|
onSelect?: SelectCallback;
|
|
}
|
|
declare type ListGroup = BsPrefixRefForwardingComponent<'div', ListGroupProps> & {
|
|
Item: typeof ListGroupItem;
|
|
};
|
|
declare const ListGroup: ListGroup;
|
|
export default ListGroup;
|