File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import PullRequestContext from '../common/context';
1313import emitter from '../common/events' ;
1414import { useStateProp } from '../common/hooks' ;
1515import { ContextDropdown } from './contextDropdown' ;
16- import { commentIcon , deleteIcon , editIcon } from './icon' ;
16+ import { deleteIcon , editIcon , quoteIcon } from './icon' ;
1717import { nbsp , Spaced } from './space' ;
1818import { Timestamp } from './timestamp' ;
1919import { AuthorLink , Avatar } from './user' ;
@@ -93,7 +93,7 @@ export function CommentView(commentProps: Props) {
9393 className = "icon-button"
9494 onClick = { ( ) => emitter . emit ( 'quoteReply' , bodyMd ) }
9595 >
96- { commentIcon }
96+ { quoteIcon }
9797 </ button >
9898 { canEdit ? (
9999 < button title = "Edit comment" className = "icon-button" onClick = { ( ) => setEditMode ( true ) } >
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export const skipIcon = <Icon src={require('../../resources/icons/skip.svg')} cl
1818export const chevronIcon = < Icon src = { require ( '../../resources/icons/chevron.svg' ) } /> ;
1919export const chevronDownIcon = < Icon src = { require ( '../../resources/icons/chevron_down.svg' ) } /> ;
2020export const commentIcon = < Icon src = { require ( '../../resources/icons/comment.svg' ) } /> ;
21+ export const quoteIcon = < Icon src = { require ( '../../resources/icons/quote.svg' ) } /> ;
2122export const commitIcon = < Icon src = { require ( '../../resources/icons/commit_icon.svg' ) } /> ;
2223export const copyIcon = < Icon src = { require ( '../../resources/icons/copy.svg' ) } /> ;
2324export const deleteIcon = < Icon src = { require ( '../../resources/icons/delete.svg' ) } /> ;
You can’t perform that action at this time.
0 commit comments