Skip to content

Commit

Permalink
Refactor #4391 - For breadcrumb.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ulasturann committed May 15, 2023
1 parent 18b1d31 commit c67f51e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/lib/breadcrumb/breadcrumb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@ export interface BreadCrumbPassThroughOptions {
/**
* Uses to pass attributes to the list's DOM element.
*/
menu?: BreadCrumbPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
menu?: BreadCrumbPassThroughType<React.HTMLAttributes<HTMLUListElement>>;
/**
* Uses to pass attributes to the list item's DOM element.
*/
menuitem?: BreadCrumbPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
menuitem?: BreadCrumbPassThroughType<React.HTMLAttributes<HTMLLIElement>>;
/**
* Uses to pass attributes to the action's DOM element.
*/
action?: BreadCrumbPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
action?: BreadCrumbPassThroughType<React.HTMLAttributes<HTMLAnchorElement>>;
/**
* Uses to pass attributes to the icon's DOM element.
*/
icon?: BreadCrumbPassThroughType<React.SVGProps<SVGSVGElement> | React.HTMLAttributes<HTMLSpanElement>>;
/**
* Uses to pass attributes to the label's DOM element.
*/
label?: BreadCrumbPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
label?: BreadCrumbPassThroughType<React.HTMLAttributes<HTMLSpanElement>>;
/**
* Uses to pass attributes to the separator icon's DOM element.
*/
Expand Down

0 comments on commit c67f51e

Please sign in to comment.