@cimpress/react-components
Version:
React components to support the MCP styleguide
14 lines • 499 B
TypeScript
import React, { ReactNode } from 'react';
import { PublicComponentProps } from './types';
export interface BreadcrumbItemProps extends PublicComponentProps {
/**
* Whether or not the breadcrumb is active.
*/
active?: boolean;
/**
* The inner contents of the component.
*/
children?: ReactNode;
}
export declare const BreadcrumbItem: ({ active, children, className, ...rest }: BreadcrumbItemProps) => React.JSX.Element;
//# sourceMappingURL=BreadcrumbItem.d.ts.map