# extendify/0.11.0/src/Library/components/icons/library/growth-arrow.js

Extendify, version 0.11.0. 18 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.11.0/code/src/Library/components/icons/library/growth-arrow.js
- Raw: https://pluginprobe.com/plugins/extendify/0.11.0/raw/src/Library/components/icons/library/growth-arrow.js
- Modified: 2022-05-27T00:51:26+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/extendify/0.11.0/code/src/Library/components/icons/library/growth-arrow.js#L10-L20`.

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

const growthArrow = (
    <SVG
        fill="none"
        height="25"
        viewBox="0 0 25 25"
        width="25"
        xmlns="http://www.w3.org/2000/svg">
        <Path
            d="m16.2382 9.17969.7499.00645.0066-.75988-.7599.00344zm-5.5442.77506 5.5475-.02507-.0067-1.49998-5.5476.02506zm4.7942-.78152-.0476 5.52507 1.5.0129.0475-5.52506zm.2196-.52387-7.68099 7.68104 1.06066 1.0606 7.68103-7.68098z"
            fill="currentColor"
        />
    </SVG>
)

export default growthArrow

```
