-
+ {FeatureOverviewSidePanel}
-
+
+ }
+ elseShow={}
+ />
({
+ height: theme.spacing(3.5),
+ width: theme.spacing(3.5),
+}));
+
const StyledPopover = styled(Popover)(({ theme }) => ({
borderRadius: theme.shape.borderRadiusLarge,
padding: theme.spacing(1, 1.5),
}));
-export const DependencyActions: FC<{
+interface IDependencyActionsProps {
feature: string;
onEdit: () => void;
onDelete: () => void;
-}> = ({ feature, onEdit, onDelete }) => {
+}
+
+export const DependencyActions = ({
+ feature,
+ onEdit,
+ onDelete,
+}: IDependencyActionsProps) => {
const id = `dependency-${feature}-actions`;
const menuId = `${id}-menu`;
@@ -42,8 +53,7 @@ export const DependencyActions: FC<{
return (
-
-
+