mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
16 lines
596 B
TypeScript
16 lines
596 B
TypeScript
import React from 'react';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
import { EventKey, Variant } from './types';
|
|
export interface ListGroupItemProps extends Omit<React.HTMLAttributes<HTMLElement>, 'onSelect'>, BsPrefixProps {
|
|
action?: boolean;
|
|
active?: boolean;
|
|
disabled?: boolean;
|
|
eventKey?: EventKey;
|
|
href?: string;
|
|
onClick?: React.MouseEventHandler;
|
|
variant?: Variant;
|
|
}
|
|
declare type ListGroupItem = BsPrefixRefForwardingComponent<'a', ListGroupItemProps>;
|
|
declare const ListGroupItem: ListGroupItem;
|
|
export default ListGroupItem;
|