Skip to content

Commit 783de9e

Browse files
committed
Complete BreadcrumbItem typing
1 parent 322f8d4 commit 783de9e

File tree

1 file changed

+11
-0
lines changed
  • packages/react-components/src/breadcrumb-item

1 file changed

+11
-0
lines changed

packages/react-components/src/breadcrumb-item/index.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,18 @@ const { wrap } = provideReactWrapper(React, provideJupyterDesignSystem());
1212

1313
export const BreadcrumbItem: React.DetailedHTMLFactory<
1414
React.HTMLAttributes<HTMLElement> & {
15+
download?: string;
16+
href?: string;
17+
hreflang?: string;
18+
ping?: string;
19+
referrerpolicy?: string;
20+
rel?: string;
21+
/**
22+
* Whether to display breadcrumb item separator
23+
*/
1524
separator?: boolean;
25+
target?: '_self' | '_blank' | '_parent' | '_top';
26+
type?: string;
1627
},
1728
HTMLElement
1829
> = wrap(jpBreadcrumbItem()) as any;

0 commit comments

Comments
 (0)