import { FC } from 'react'; import { Dialogue } from '../Dialogue/Dialogue'; import { styled } from '@mui/material'; import { Link } from 'react-router-dom'; interface IFeatureArchiveNotAllowedDialogProps { isOpen: boolean; onClose: () => void; features: string[]; project: string; } const StyledLink = styled(Link)(({ theme }) => ({ textDecoration: 'none', color: theme.palette.primary.main, fontWeight: theme.fontWeight.bold, })); export const FeatureArchiveNotAllowedDialog: FC< IFeatureArchiveNotAllowedDialogProps > = ({ isOpen, onClose, features, project }) => { return (

The following features depend on your feature:

); };