Skip to content

Commit 89fd7ec

Browse files
authoredMar 22, 2024··
fix(comments): update close icon to be consistent (#6096)
1 parent 3f37c21 commit 89fd7ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎packages/sanity/src/structure/comments/plugin/inspector/CommentsInspectorHeader.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {CheckmarkIcon, ChevronDownIcon, DoubleChevronRightIcon} from '@sanity/icons'
1+
import {CheckmarkIcon, ChevronDownIcon, CloseIcon} from '@sanity/icons'
22
import {Card, Flex, Menu, Text} from '@sanity/ui'
33
import {forwardRef, useCallback} from 'react'
44
import {BetaBadge, useTranslation} from 'sanity'
@@ -81,7 +81,7 @@ export const CommentsInspectorHeader = forwardRef(function CommentsInspectorHead
8181

8282
<Button
8383
aria-label={t('close-pane-button-text-aria-label')}
84-
icon={DoubleChevronRightIcon}
84+
icon={CloseIcon}
8585
mode="bleed"
8686
onClick={onClose}
8787
tooltipProps={{content: t('close-pane-button-text')}}

0 commit comments

Comments
 (0)
Please sign in to comment.