mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
22 lines
515 B
TypeScript
22 lines
515 B
TypeScript
import * as React from 'react';
|
|
|
|
import ListGroupItem from './ListGroupItem';
|
|
|
|
import { BsPrefixComponent, SelectCallback } from './helpers';
|
|
|
|
export interface ListGroupProps {
|
|
variant?: 'flush';
|
|
horizontal?: boolean | 'sm' | 'md' | 'lg' | 'xl';
|
|
activeKey?: unknown;
|
|
defaultActiveKey?: unknown;
|
|
onSelect?: SelectCallback;
|
|
}
|
|
|
|
declare class ListGroup<
|
|
As extends React.ElementType = 'div'
|
|
> extends BsPrefixComponent<As, ListGroupProps> {
|
|
static Item: typeof ListGroupItem;
|
|
}
|
|
|
|
export default ListGroup;
|