Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces a new ChevronRight icon component and its corresponding export index file. The review feedback suggests improving the component's implementation by utilizing the color prop from IconProps as a fallback for the SVG fill to ensure consistency with the interface, and adding a missing trailing newline to the source file.
|
@kishore08-07 Hey can u review it once plz before merging |
ffe42e5 to
d389c0a
Compare
| export const ChevronRight = ({ | ||
| width = DEFAULT_WIDTH, | ||
| height = DEFAULT_HEIGHT, | ||
| fill, |
There was a problem hiding this comment.
fill = DEFAULT_FILL_NONE
| import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; | ||
| import { ONYX_BLACK } from '../../theme'; |
There was a problem hiding this comment.
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
The meshmap package legitimately relies on peer-dep relaxation (e.g. jquery@^4 × cytoscape-clipboard), matching its own install:legacy-peer-deps script. Without this flag the bump job fails with ERESOLVE on npm install, matching the bump-layer5 job which already uses --legacy-peer-deps. Signed-off-by: Lee Calcote <lee.calcote@layer5.io> Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
e13ccc4 to
0967b29
Compare
Signed-off-by: Utkarsh Anand <133217805+ITACHI161105@users.noreply.github.com> Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
Signed-off-by: Utkarsh Anand <133217805+ITACHI161105@users.noreply.github.com> Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
Signed-off-by: Utkarsh Anand <133217805+ITACHI161105@users.noreply.github.com> Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
Signed-off-by: Utkarsh Anand <133217805+ITACHI161105@users.noreply.github.com> Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
9349c09 to
f42e419
Compare
ITACHI161105
left a comment
There was a problem hiding this comment.
"Addressed all review comments — added DEFAULT_FILL_NONE to imports, removed ONYX_BLACK, and updated the default fill and JSX accordingly."
Closes #1415
Added ChevronRight icon following the same pattern as ChevronLeft icon.