@@ -12,9 +12,9 @@ import {
1212 visuallyHidden ,
1313} from '@guardian/source/foundations' ;
1414import {
15- SvgMinus ,
15+ SvgChevronDownSingle ,
16+ SvgChevronUpSingle ,
1617 SvgPinned ,
17- SvgPlus ,
1818} from '@guardian/source/react-components' ;
1919import { palette } from '../palette' ;
2020import type { Block } from '../types/blocks' ;
@@ -36,12 +36,12 @@ const pinnedPostContainer = css`
3636 margin-bottom : ${ space [ 1 ] } px;
3737 }
3838 # pinned-post-checkbox : checked ~ # pinned-post-overlay ,
39- # pinned-post-checkbox ~ label # svgminus ,
40- # pinned-post-checkbox : checked ~ label # svgplus {
39+ # pinned-post-checkbox ~ label # svgchevronupsingle ,
40+ # pinned-post-checkbox : checked ~ label # svgchevrondownsingle {
4141 display : none;
4242 }
43- # pinned-post-checkbox ~ label # svgplus ,
44- # pinned-post-checkbox : checked ~ label # svgminus {
43+ # pinned-post-checkbox ~ label # svgchevrondownsingle ,
44+ # pinned-post-checkbox : checked ~ label # svgchevronupsingle {
4545 display : block;
4646 }
4747 # pinned-post-checkbox ~ label ::after {
@@ -188,11 +188,11 @@ export const PinnedPost = ({ pinnedPost, children, serverTime }: Props) => {
188188 id = "pinned-post-button"
189189 >
190190 < >
191- < span id = "svgminus " css = { buttonIcon } >
192- < SvgMinus />
191+ < span id = "svgchevronupsingle " css = { buttonIcon } >
192+ < SvgChevronUpSingle />
193193 </ span >
194- < span id = "svgplus " css = { buttonIcon } >
195- < SvgPlus />
194+ < span id = "svgchevrondownsingle " css = { buttonIcon } >
195+ < SvgChevronDownSingle />
196196 </ span >
197197 </ >
198198 </ label >
0 commit comments