13 lines
257 B
JavaScript
13 lines
257 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG } from 'wordpress-components';
|
||
|
|
||
|
const chevronDown = (
|
||
|
<SVG viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||
|
<path d="M17 9.4L12 14 7 9.4l-1 1.2 6 5.4 6-5.4z" />
|
||
|
</SVG>
|
||
|
);
|
||
|
|
||
|
export default chevronDown;
|