import Stack, { StackProps } from '@material-hu/mui/Stack';

export const CustomCellBorder = ({ sx = {} }: { sx?: StackProps['sx'] }) => {
  return (
    <Stack
      sx={{
        height: '100%',
        position: 'absolute',
        top: 0,
        width: '1px',
        backgroundColor: ({ palette }) => palette.new.border.neutral.default,
        ...sx,
      }}
    />
  );
};
