| 1 |
/** |
| 2 |
* WordPress dependencies |
| 3 |
*/ |
| 4 |
import { Path, SVG } from '@wordpress/primitives' |
| 5 |
|
| 6 |
const patterns = ( |
| 7 |
<SVG |
| 8 |
width="24" |
| 9 |
height="24" |
| 10 |
viewBox="0 0 24 24" |
| 11 |
fill="none" |
| 12 |
xmlns="http://www.w3.org/2000/svg"> |
| 13 |
<Path |
| 14 |
fillRule="evenodd" |
| 15 |
clipRule="evenodd" |
| 16 |
d="M7.49271 18.0092C6.97815 17.1176 7.28413 15.9755 8.17569 15.4609C9.06724 14.946 10.2094 15.252 10.7243 16.1435C11.2389 17.0355 10.9329 18.1772 10.0413 18.6922C9.14978 19.2071 8.00764 18.9011 7.49271 18.0092V18.0092Z" |
| 17 |
fill="currentColor" |
| 18 |
/> |
| 19 |
<Path |
| 20 |
fillRule="evenodd" |
| 21 |
clipRule="evenodd" |
| 22 |
d="M16.5073 6.12747C17.0218 7.01903 16.7158 8.16117 15.8243 8.67573C14.9327 9.19066 13.7906 8.88467 13.2757 7.99312C12.7611 7.10119 13.0671 5.95942 13.9586 5.44449C14.8502 4.92956 15.9923 5.23555 16.5073 6.12747V6.12747Z" |
| 23 |
fill="currentColor" |
| 24 |
/> |
| 25 |
<Path |
| 26 |
fillRule="evenodd" |
| 27 |
clipRule="evenodd" |
| 28 |
d="M4.60135 11.1355C5.11628 10.2439 6.25805 9.93793 7.14998 10.4525C8.04153 10.9674 8.34752 12.1096 7.83296 13.0011C7.31803 13.8927 6.17588 14.1987 5.28433 13.6841C4.39278 13.1692 4.08679 12.0274 4.60135 11.1355V11.1355Z" |
| 29 |
fill="currentColor" |
| 30 |
/> |
| 31 |
<Path |
| 32 |
fillRule="evenodd" |
| 33 |
clipRule="evenodd" |
| 34 |
d="M19.3986 13.0011C18.8837 13.8927 17.7419 14.1987 16.85 13.6841C15.9584 13.1692 15.6525 12.027 16.167 11.1355C16.682 10.2439 17.8241 9.93793 18.7157 10.4525C19.6072 10.9674 19.9132 12.1092 19.3986 13.0011V13.0011Z" |
| 35 |
fill="currentColor" |
| 36 |
/> |
| 37 |
<Path |
| 38 |
d="M9.10857 8.92594C10.1389 8.92594 10.9742 8.09066 10.9742 7.06029C10.9742 6.02992 10.1389 5.19464 9.10857 5.19464C8.0782 5.19464 7.24292 6.02992 7.24292 7.06029C7.24292 8.09066 8.0782 8.92594 9.10857 8.92594Z" |
| 39 |
fill="currentColor" |
| 40 |
/> |
| 41 |
<Path |
| 42 |
d="M14.8913 18.942C15.9217 18.942 16.7569 18.1067 16.7569 17.0763C16.7569 16.046 15.9217 15.2107 14.8913 15.2107C13.8609 15.2107 13.0256 16.046 13.0256 17.0763C13.0256 18.1067 13.8609 18.942 14.8913 18.942Z" |
| 43 |
fill="currentColor" |
| 44 |
/> |
| 45 |
<Path |
| 46 |
fillRule="evenodd" |
| 47 |
clipRule="evenodd" |
| 48 |
d="M10.3841 13.0011C9.86951 12.1096 10.1755 10.9674 11.067 10.4525C11.9586 9.93793 13.1007 10.2439 13.6157 11.1355C14.1302 12.0274 13.8242 13.1692 12.9327 13.6841C12.0411 14.1987 10.899 13.8927 10.3841 13.0011V13.0011Z" |
| 49 |
fill="currentColor" |
| 50 |
/> |
| 51 |
</SVG> |
| 52 |
) |
| 53 |
|
| 54 |
export default patterns |
| 55 |
|