UNPKG

@mojito-inc/secondary-market

Version:

Mojito secondary market is the platform to purchase NFT.

16 lines (15 loc) 562 B
import { type SxProps } from '@mui/material/styles'; export interface BreadcrumbItem { label: string; value: string; } export interface BreadcrumbsProps { list: BreadcrumbItem[]; selectedValue: string; separator?: JSX.Element; separatorStyle?: SxProps; itemStyle?: SxProps; itemHighlightedStyle?: SxProps; } declare const BreadcrumbsContainer: ({ list, selectedValue, separator, separatorStyle, itemStyle, itemHighlightedStyle, }: BreadcrumbsProps) => import("react/jsx-runtime").JSX.Element; export default BreadcrumbsContainer;