Skip to content

Commit

Permalink
Replace navigation arrow with chevron
Browse files Browse the repository at this point in the history
See #5
  • Loading branch information
iandunn committed Feb 4, 2023
1 parent aa0b630 commit db6b456
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions settings/src/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* WordPress dependencies
*/
import { StrictMode, createContext, useCallback, useEffect, useState } from '@wordpress/element';
import { Icon, arrowLeft } from '@wordpress/icons';
import { Icon, chevronLeft } from '@wordpress/icons';
import { Card, CardHeader, CardBody, Flex, Spinner } from '@wordpress/components';

/**
Expand Down Expand Up @@ -133,7 +133,7 @@ function Main( { userId } ) {
screen="account-status"
anchorText={
<>
<Icon icon={ arrowLeft } />
<Icon icon={ chevronLeft } />
Back
</>
}
Expand Down
4 changes: 3 additions & 1 deletion settings/src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
a {
position: relative;
top: -4px;
color: #4ca6cf;
}

svg {
position: relative;
top: 7px;
margin-right: 3px;
margin-right: -3px;
fill: #4ca6cf;
}

h3 {
Expand Down

0 comments on commit db6b456

Please sign in to comment.