1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-23 13:46:45 +02:00

use old component instead

This commit is contained in:
Thomas Heartman 2025-07-02 13:23:29 +02:00
parent d94eed0844
commit 5197032bfb
2 changed files with 2 additions and 15 deletions

View File

@ -1,10 +1,7 @@
import type { FC, ReactNode } from 'react';
import {
ChangeItemInfo,
ChangeItemWrapper,
LegacyChangeItemWrapper,
} from './Change.styles.tsx';
import { ChangeItemInfo, ChangeItemWrapper } from './Change.styles.tsx';
import { styled } from '@mui/material';
import { ChangeItemWrapper as LegacyChangeItemWrapper } from './LegacyStrategyChange.tsx';
type ArchiveFeatureChange = {
actions?: ReactNode;

View File

@ -51,13 +51,3 @@ export const ChangeItemWrapper = styled('div')(({ theme }) => ({
alignItems: 'center',
gap: theme.spacing(1),
}));
/**
* Deprecated: use ChangeItemWrapper instead; remove with flag crDiffView
* @deprecated
*/
export const LegacyChangeItemWrapper = styled('span')({
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
});