19 lines
379 B
TypeScript
19 lines
379 B
TypeScript
import styled from '@emotion/styled';
|
|
import { CommentChip, CommentChipProps } from './CommentChip';
|
|
|
|
const StyledCellWrapper = styled.div`
|
|
position: relative;
|
|
right: 38px;
|
|
top: -13px;
|
|
width: 0;
|
|
height: 0;
|
|
`;
|
|
|
|
export function CellCommentChip(props: CommentChipProps) {
|
|
return (
|
|
<StyledCellWrapper>
|
|
<CommentChip {...props} />
|
|
</StyledCellWrapper>
|
|
);
|
|
}
|