# elasticpress/4.2.1/assets/js/sync/components/icons/play.js

ElasticPress, version 4.2.1. 16 lines.

- Page: https://pluginprobe.com/plugins/elasticpress/4.2.1/code/assets/js/sync/components/icons/play.js
- Raw: https://pluginprobe.com/plugins/elasticpress/4.2.1/raw/assets/js/sync/components/icons/play.js
- Modified: 2022-05-26T12:34:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elasticpress/4.2.1/code/assets/js/sync/components/icons/play.js#L10-L20`.

```javascript
import { SVG, Path } from '@wordpress/primitives';

export default () => {
	return (
		<SVG
			version="1.1"
			xmlns="http://www.w3.org/2000/svg"
			width="20"
			height="20"
			viewBox="0 0 20 20"
		>
			<Path d="M5 4l10 6-10 6v-12z" />
		</SVG>
	);
};

```
