UNPKG

512 BTypeScriptView Raw
1import * as React from 'react';
2import { NavItemProps as BaseNavItemProps } from '@restart/ui/NavItem';
3import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
4import { Variant } from './types';
5export interface ListGroupItemProps extends Omit<BaseNavItemProps, 'onSelect'>, BsPrefixProps {
6 action?: boolean;
7 onClick?: React.MouseEventHandler;
8 variant?: Variant;
9}
10declare const ListGroupItem: BsPrefixRefForwardingComponent<'a', ListGroupItemProps>;
11export default ListGroupItem;