Browse Source

fix: bad List.Item type (#35454) (#35455)

Co-authored-by: Ron Smeral <ron.smeral@merck.com>
pull/35471/head
Ron Šmeral 3 years ago
committed by GitHub
parent
commit
1d3fd70dbf
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/list/Item.tsx

2
components/list/Item.tsx

@ -63,7 +63,7 @@ export const Meta: FC<ListItemMetaProps> = ({
};
export interface ListItemTypeProps
extends ForwardRefExoticComponent<ListItemMetaProps & React.RefAttributes<HTMLElement>> {
extends ForwardRefExoticComponent<ListItemProps & React.RefAttributes<HTMLElement>> {
Meta: typeof Meta;
}

Loading…
Cancel
Save