Skip to content

Commit

Permalink
chore: fix Dropdown action props
Browse files Browse the repository at this point in the history
  • Loading branch information
k0stik committed Oct 19, 2023
1 parent 76297c0 commit 28f192f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/mui/components/dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ import useMediaQuery from "@mui/material/useMediaQuery";
import React, { useCallback, useRef, useState } from "react";

import { DefaultDropdownButton } from "./DefaultDropdownButton";
import { DropdownItem } from "./DropdownItem";
import { DropdownItem, DropdownItemProps } from "./DropdownItem";

export interface DropdownAction {
id: string;
disabled: boolean;
content: string;
icon: JSX.Element;
id: DropdownItemProps["id"];
disabled: DropdownItemProps["disabled"];
content: DropdownItemProps["content"];
icon: DropdownItemProps["icon"];
showCheckIcon: DropdownItemProps["showCheckIcon"];
shouldMenuStayOpened?: boolean;
key?: string;
showCheckIcon?: boolean;
isShown?: boolean;
isSelected?: boolean;
isDivider?: boolean;
Expand Down

0 comments on commit 28f192f

Please sign in to comment.