Created ComponentChip and CellComponentChip and their stories (#186)

* Created ComponentChip and CellComponentChip and their stories

* Fixed from comments

* Fixed icon color

* Fixed needle in a haystack bug
This commit is contained in:
Lucas Bordeau
2023-06-02 17:22:48 +02:00
committed by GitHub
parent a618636180
commit 69c1095055
6 changed files with 145 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import styled from '@emotion/styled';
import { CommentChip, CommentChipProps } from './CommentChip';
const StyledCellWrapper = styled.div`
position: relative;
right: 38px;
top: -14px;
width: 0;
height: 0;
`;
export function CellCommentChip(props: CommentChipProps) {
return (
<StyledCellWrapper>
<CommentChip {...props} />
</StyledCellWrapper>
);
}