mirror of
https://github.com/plankanban/planka.git
synced 2025-12-23 01:11:40 +03:00
22 lines
573 B
JavaScript
22 lines
573 B
JavaScript
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Icon, Message } from 'semantic-ui-react';
|
|
|
|
const SourceCardNotMovableToast = React.memo(() => {
|
|
const [t] = useTranslation();
|
|
|
|
return (
|
|
<Message visible negative size="tiny">
|
|
<Icon name="paste" />
|
|
{t('common.sourceCardIsNoLongerAvailableForMoving')}
|
|
</Message>
|
|
);
|
|
});
|
|
|
|
export default SourceCardNotMovableToast;
|