UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

18 lines (17 loc) 698 B
import React from 'react'; import { IBreadcrumbsControlled } from './types/breadcrumbs'; /** * @description * Breadcrumbs component is a component that shows a breadcrumbs with a message. * to show list of links. * @param {React.PropsWithChildren<IBreadcrumbsControlled<V>>} props * @returns {JSX.Element} * @example * <BreadcrumbsControlled /> * <BreadcrumbsControlled variant="primary" /> */ declare const BreadcrumbsControlled: <V extends string | unknown>(props: React.PropsWithChildren<IBreadcrumbsControlled<V>> & { ref?: React.ForwardedRef<HTMLDivElement> | undefined | null; }) => JSX.Element; export { BreadcrumbsControlled }; export { BreadcrumbsControlled as Breadcrumbs };