@cimpress/react-components
Version:
React components to support the MCP styleguide
10 lines • 393 B
TypeScript
import React, { ReactNode } from 'react';
import { PublicComponentProps } from './types';
export interface BreadcrumbsProps extends PublicComponentProps {
/**
* The inner contents of the component.
*/
children?: ReactNode;
}
export declare const Breadcrumbs: ({ children, className, ...rest }: BreadcrumbsProps) => React.JSX.Element;
//# sourceMappingURL=Breadcrumbs.d.ts.map