Files
TestMesa/backend/frontend/node_modules/react-bootstrap/esm/ListGroupItem.d.ts
2024-12-17 13:23:11 -08:00

12 lines
512 B
TypeScript

import * as React from 'react';
import { NavItemProps as BaseNavItemProps } from '@restart/ui/NavItem';
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
import { Variant } from './types';
export interface ListGroupItemProps extends Omit<BaseNavItemProps, 'onSelect'>, BsPrefixProps {
action?: boolean;
onClick?: React.MouseEventHandler;
variant?: Variant;
}
declare const ListGroupItem: BsPrefixRefForwardingComponent<'a', ListGroupItemProps>;
export default ListGroupItem;