mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-31 01:16:01 +02:00
* ChangesetTable initial * ChangesetTable bug fixes * Added tabs * Add Applied and Cancelled badges * fix alignment * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * replace updatedAt with createdAt * bug fix * bug fix
13 lines
408 B
TypeScript
13 lines
408 B
TypeScript
import { ArrowRight } from '@mui/icons-material';
|
|
import { useTheme } from '@mui/system';
|
|
import { TextCell } from '../../../../common/Table/cells/TextCell/TextCell';
|
|
|
|
export const ChangesetActionCell = () => {
|
|
const theme = useTheme();
|
|
return (
|
|
<TextCell sx={{ textAlign: 'right' }}>
|
|
<ArrowRight sx={{ color: theme.palette.secondary.main }} />{' '}
|
|
</TextCell>
|
|
);
|
|
};
|