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

remove deprecated component

This commit is contained in:
Thomas Heartman 2025-07-02 10:34:01 +02:00
parent c7a108498b
commit 8326e6f35a

View File

@ -1,4 +1,4 @@
import type { ReactNode, VFC } from 'react';
import type { FC, ReactNode } from 'react';
import { Box } from '@mui/material';
import { Badge } from 'component/common/Badge/Badge';
import { ChangeItemInfo, ChangeItemWrapper } from './Change.styles';
@ -8,7 +8,7 @@ interface IToggleStatusChange {
actions?: ReactNode;
}
export const ToggleStatusChange: VFC<IToggleStatusChange> = ({
export const ToggleStatusChange: FC<IToggleStatusChange> = ({
enabled,
actions,
}) => {