@starter-ui/core
Version:
This is a UI Components built with the utility classes from Tailwind CSS.
17 lines (16 loc) • 403 B
TypeScript
import { default as React } from 'react';
interface Props {
id?: string;
data: {
title: string | React.ReactElement;
url: string;
isDisabled?: boolean;
className?: string;
}[];
size?: string;
underline?: string;
className?: string;
onClick?: (url: string) => () => void;
}
declare const Breadcrumb: React.FC<Props>;
export default Breadcrumb;