mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
14 lines
515 B
TypeScript
14 lines
515 B
TypeScript
import React from 'react';
|
|
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface BreadcrumbItemProps extends BsPrefixPropsWithChildren {
|
|
active?: boolean;
|
|
href?: string;
|
|
linkAs?: React.ElementType;
|
|
target?: string;
|
|
title?: React.ReactNode;
|
|
linkProps?: Record<string, any>;
|
|
}
|
|
declare type BreadcrumbItem = BsPrefixRefForwardingComponent<'li', BreadcrumbItemProps>;
|
|
declare const BreadcrumbItem: BreadcrumbItem;
|
|
export default BreadcrumbItem;
|