UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

16 lines 492 B
import { SxProps } from '@mui/material'; import { MouseEventHandler } from 'react'; type BreadcrumbItem = { text: string; current?: boolean; to?: string; href?: string; onClick?: MouseEventHandler; }; type EntityPageBreadcrumbsProps = { items: BreadcrumbItem[]; sx?: SxProps; }; export default function EntityPageBreadcrumbs(props: EntityPageBreadcrumbsProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=EntityPageBreadcrumbs.d.ts.map