13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG } from 'wordpress-components';
|
||
|
|
||
|
const chevronRight = (
|
||
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||
|
<path d="M10.6 6L9.4 7l4.6 5-4.6 5 1.2 1 5.4-6z" />
|
||
|
</SVG>
|
||
|
);
|
||
|
|
||
|
export default chevronRight;
|