7 lines
322 B
TypeScript
7 lines
322 B
TypeScript
import * as React from 'react';
|
|
import { TypographyProps } from '../../primitives/Typography';
|
|
export interface CrumbProps extends TypographyProps {
|
|
isCurrent?: boolean;
|
|
}
|
|
export declare const Crumb: React.ForwardRefExoticComponent<CrumbProps & React.RefAttributes<HTMLDivElement>>;
|
|
//# sourceMappingURL=Crumb.d.ts.map
|