Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 | import React from 'react'; export const GoneFishing = props => ( <svg className="slds-illustration__svg" viewBox="0 0 466 263" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" > <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd"> <g transform="translate(-69.000000, -67.000000)"> <g> <g transform="translate(455.000000, 232.000000) scale(-1, 1) translate(-455.000000, -232.000000) translate(377.000000, 213.000000)"> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="26 36 72.5 0 105.5 27" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="96 17 105.5 9 138 36" /> <path vectorEffect="non-scaling-stroke" d="M0,36.5 L156,36.5" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> <path vectorEffect="non-scaling-stroke" d="M34.202166,22.8278095 L37.207834,33.1133915 L30.8916038,28.4131636 L32.2719085,22.8668 C32.4052855,22.3308624 32.9478721,22.0045226 33.4838096,22.1378996 C33.8288998,22.223781 34.102419,22.486469 34.202166,22.8278095 Z" className="slds-illustration__fill-secondary" transform="translate(34.049719, 27.610728) scale(-1, 1) translate(-34.049719, -27.610728) " /> <path vectorEffect="non-scaling-stroke" d="M28.9755366,18.8278095 L34.0379951,36.1518555 L29.5001232,33.2627202 L24.2782891,29.9851658 L27.0452792,18.8668 C27.1786561,18.3308624 27.7212427,18.0045226 28.2571802,18.1378996 C28.6022704,18.223781 28.8757896,18.486469 28.9755366,18.8278095 Z" className="slds-illustration__fill-secondary" transform="translate(29.158142, 27.129960) scale(-1, 1) translate(-29.158142, -27.129960) " /> <path vectorEffect="non-scaling-stroke" d="M134.935531,21.7547479 L139.204202,37 L130.811328,29.6057303 L133.009603,21.7547479 C133.158515,21.2229175 133.710367,20.9125013 134.242197,21.0614138 C134.57853,21.1555869 134.841358,21.4184152 134.935531,21.7547479 Z" className="slds-illustration__fill-secondary" /> </g> <g transform="translate(71.000000, 188.000000)"> <path vectorEffect="non-scaling-stroke" d="M237,61.5 L249,61.5" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> <path vectorEffect="non-scaling-stroke" d="M0,61.5 L230,61.5" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> <path vectorEffect="non-scaling-stroke" d="M34.9102011,32.0436939 L38.3925781,48.4296875 L26.453125,58.6445313 L32.9606296,32.0141932 C33.0917307,31.4776944 33.6329274,31.1490548 34.1694262,31.2801559 C34.5424771,31.3713162 34.8303699,31.6680556 34.9102011,32.0436939 Z" className="slds-illustration__fill-secondary" /> <path vectorEffect="non-scaling-stroke" d="M191.962964,27.4391572 L198,49 L186.770218,39.1063642 L190.037036,27.4391572 C190.185948,26.9073269 190.7378,26.5969106 191.26963,26.7458231 C191.605963,26.8399963 191.868791,27.1028246 191.962964,27.4391572 Z" className="slds-illustration__fill-secondary" /> <path vectorEffect="non-scaling-stroke" d="M39.9662349,37.3583594 L42.6016149,47.2410342 L40.7070312,48.7349783 L35,48.7349783 L38.0337651,37.3583594 C38.1760682,36.8247225 38.7240258,36.5074839 39.2576627,36.6497871 C39.6036917,36.7420615 39.8739605,37.0123303 39.9662349,37.3583594 Z" className="slds-illustration__fill-secondary" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="25 61 99.5 0 157.5 45" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="140 30.9433962 157.5 16 212 60" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(104.488255, 25.339689) scale(-1, 1) translate(-104.488255, -25.339689) " points="130.394479 18.5 115.925727 18.5 101.621349 32.1793777 92.3230131 22.8810419 83.6661566 31.5378985 78.5820312 26.4537731" /> </g> <g transform="translate(145.000000, 129.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M44,17.5 L63,17.5 C62.2789714,12.0723971 64.081543,7.53186978 68.4077148,3.87841797 C73.3754883,-0.195556641 79.2734375,0.717773438 82.440918,2.12353516 C85.6083984,3.52929687 87.9606934,5.46069336 89.5913086,9.10524041 C90.2822266,10.6397351 90.7517904,11.9379883 91,13" /> <path vectorEffect="non-scaling-stroke" d="M83,20.5 C84.0558268,16.8461914 86.2227376,14.4572754 89.5007324,13.333252 C94.4177246,11.6472168 99.0800781,13.8925781 100.942383,16.1518555 C102.804687,18.4111328 103.39502,20.2260742 103.746582,22.1201172 C103.980957,23.3828125 104.06543,24.8427734 104,26.5 C108.141764,26.3313802 110.918945,27.1647135 112.331543,29 C114.040039,31.1936035 114.215332,33.817627 113.593018,35.75 C112.970703,37.682373 110.894531,40.5 107,40.5 L28,40.5" /> <path vectorEffect="non-scaling-stroke" d="M18,27.5 L83.0004985,27.5" /> <path vectorEffect="non-scaling-stroke" d="M0,27.5 L8,27.5" /> </g> <g transform="translate(317.000000, 169.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M44,17.5 L63,17.5 C62.2789714,12.0723971 64.081543,7.53186978 68.4077148,3.87841797 C73.3754883,-0.195556641 79.2734375,0.717773438 82.440918,2.12353516 C85.6083984,3.52929687 87.9606934,5.46069336 89.5913086,9.10524041 C90.2822266,10.6397351 90.7517904,11.9379883 91,13" /> <path vectorEffect="non-scaling-stroke" d="M83,20.5 C84.0558268,16.8461914 86.2227376,14.4572754 89.5007324,13.333252 C94.4177246,11.6472168 99.0800781,13.8925781 100.942383,16.1518555 C102.804687,18.4111328 103.39502,20.2260742 103.746582,22.1201172 C103.980957,23.3828125 104.06543,24.8427734 104,26.5 C108.141764,26.3313802 110.918945,27.1647135 112.331543,29 C114.040039,31.1936035 114.215332,33.817627 113.593018,35.75 C112.970703,37.682373 110.894531,40.5 107,40.5 L28,40.5" /> <path vectorEffect="non-scaling-stroke" d="M18,27.5 L83.0004985,27.5" /> <path vectorEffect="non-scaling-stroke" d="M0,27.5 L8,27.5" /> </g> <g transform="translate(114.000000, 286.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M66.5016961,5.72253485 C59.2581641,7.22907384 54.7616802,0 54.7616802,0 L54.7530053,0 C54.7530053,0 51.3235326,5.94519033 44.2795231,5.94519033 C37.5304598,5.94519033 33.8262823,0 33.8262823,0 L33.8147158,0 C33.8147158,0 30.3910264,5.94519033 23.3470169,5.94519033 C16.5950619,5.94519033 12.8937761,0 12.8937761,0 L12.8822096,0 C12.8822096,0 7.08738399,7.34763065 0,5.84109166" /> <path vectorEffect="non-scaling-stroke" d="M129.501696,5.72253485 C122.258164,7.22907384 117.76168,0 117.76168,0 L117.753005,0 C117.753005,0 114.323533,5.94519033 107.279523,5.94519033 C100.53046,5.94519033 96.8262823,0 96.8262823,0 L96.8147158,0 C96.8147158,0 93.3910264,5.94519033 86.3470169,5.94519033 C79.5950619,5.94519033 75.8937761,0 75.8937761,0 L75.8822096,0 C75.8822096,0 70.087384,7.34763065 63,5.84109166" /> <path vectorEffect="non-scaling-stroke" d="M259.501696,5.72253485 C252.258164,7.22907384 247.76168,0 247.76168,0 L247.753005,0 C247.753005,0 244.323533,5.94519033 237.279523,5.94519033 C230.53046,5.94519033 226.826282,0 226.826282,0 L226.814716,0 C226.814716,0 223.391026,5.94519033 216.347017,5.94519033 C209.595062,5.94519033 205.893776,0 205.893776,0 L205.88221,0 C205.88221,0 200.087384,7.34763065 193,5.84109166" /> <path vectorEffect="non-scaling-stroke" d="M322.501696,5.72253485 C315.258164,7.22907384 310.76168,0 310.76168,0 L310.753005,0 C310.753005,0 307.323533,5.94519033 300.279523,5.94519033 C293.53046,5.94519033 289.826282,0 289.826282,0 L289.814716,0 C289.814716,0 286.391026,5.94519033 279.347017,5.94519033 C272.595062,5.94519033 268.893776,0 268.893776,0 L268.88221,0 C268.88221,0 263.087384,7.34763065 256,5.84109166" /> <path vectorEffect="non-scaling-stroke" d="M149.501696,31.7225349 C142.258164,33.2290738 137.76168,26 137.76168,26 L137.753005,26 C137.753005,26 134.323533,31.9451903 127.279523,31.9451903 C120.53046,31.9451903 116.826282,26 116.826282,26 L116.814716,26 C116.814716,26 113.391026,31.9451903 106.347017,31.9451903 C99.5950619,31.9451903 95.8937761,26 95.8937761,26 L95.8822096,26 C95.8822096,26 90.087384,33.3476307 83,31.8410917" /> <path vectorEffect="non-scaling-stroke" d="M405.501696,5.72253485 C398.258164,7.22907384 393.76168,0 393.76168,0 L393.753005,0 C393.753005,0 390.323533,5.94519033 383.279523,5.94519033 C376.53046,5.94519033 372.826282,0 372.826282,0 L372.814716,0 C372.814716,0 369.391026,5.94519033 362.347017,5.94519033 C355.595062,5.94519033 351.893776,0 351.893776,0 L351.88221,0 C351.88221,0 346.087384,7.34763065 339,5.84109166" /> <path vectorEffect="non-scaling-stroke" d="M355.501696,31.7225349 C348.258164,33.2290738 343.76168,26 343.76168,26 L343.753005,26 C343.753005,26 340.323533,31.9451903 333.279523,31.9451903 C326.53046,31.9451903 322.826282,26 322.826282,26 L322.814716,26 C322.814716,26 319.391026,31.9451903 312.347017,31.9451903 C305.595062,31.9451903 301.893776,26 301.893776,26 L301.88221,26 C301.88221,26 296.087384,33.3476307 289,31.8410917" /> </g> <g transform="translate(273.000000, 50.000000)"> <g> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-secondary" cx="64" cy="64" r="23" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" strokeDasharray="135,1,1,18" transform="translate(64.000000, 64.000000) rotate(230.000000) translate(-64.000000, -64.000000) " cx="64" cy="64" r="45" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" strokeDasharray="107,10" transform="translate(64.000000, 64.000000) rotate(150.000000) translate(-64.000000, -64.000000) " cx="64" cy="64" r="33" /> </g> <g transform="translate(41.000000, 41.000000)" className="slds-illustration__stroke-primary" strokeWidth="3" > <circle vectorEffect="non-scaling-stroke" cx="23" cy="23" r="23" /> </g> </g> <g transform="translate(333.500000, 276.500000) scale(-1, 1) translate(-333.500000, -276.500000) translate(262.000000, 225.000000)"> <path vectorEffect="non-scaling-stroke" d="M91.3840606,54.0079658 C92.0385344,54.409807 92.137697,54.9649086 91.840209,55.4901057 C91.433642,56.2134198 89.745893,56.5760114 87.7388402,55.5256172 C87.7328904,56.2732287 87.7090913,57.1124226 87.65951,58.0917937 C87.6297612,58.6525024 87.237077,59.9832509 87.5980291,60.3234141 C88.4706608,61.1457868 88.7483163,61.8186372 88.549991,62.6802595 C88.440912,63.1568618 87.7527229,63.5082392 86.9138066,63.7213085 C86.221651,63.9362469 85.3728184,64.080162 84.5041532,63.951199 L84.50217,63.951199 C82.2888588,63.7811174 81.4122606,63.3605859 81.4558921,62.455976 C81.4598587,62.3307511 81.4836578,62.194312 81.5253061,62.0429207 C81.7037989,61.4130579 81.8604759,60.7289934 81.8584926,60.2374389 C81.8565094,60.0729643 81.8406434,59.9290491 81.7970118,59.8169074 C81.7573468,59.7047656 81.5709209,59.338436 81.2912821,59.145926 C81.2218682,59.0992003 81.1465046,59.0618197 81.0651912,59.0412604 C80.8212509,58.9814515 80.5316959,59.08051 80.2183418,59.5197318 C80.1370284,59.6318735 80.0497652,59.8019551 80.0219997,59.98512 C79.9942342,60.1682848 80.0219997,60.3645328 80.1786768,60.5290073 C80.2679232,60.6243278 80.337337,60.7327314 80.3908849,60.8486113 C80.4424495,60.9644911 80.4781481,61.0878469 80.4959974,61.21681 C80.5971433,61.9868498 80.039849,62.91015 78.8082484,63.1662069 C78.2668201,63.2764797 77.7630736,63.3512408 77.2950257,63.3867524 C75.890882,63.491418 74.8179417,63.2503133 74.1059537,62.6597002 C73.6279895,62.2672041 74.0246403,60.5944233 74.4312073,59.1534021 C71.5158242,58.0992699 70.9248145,56.0190408 70.9248145,56.0190408 C71.5812716,56.357335 72.3924224,57.1161607 72.5153841,56.6675938 C72.6383458,56.2227649 68.0590129,53.4603404 70.9704294,48.5485327 C70.8276351,51.488515 72.2972262,51.9221297 72.568932,51.9520342 C72.8386545,51.9838076 72.7692406,51.5782283 72.6105803,50.9390206 C73.5764249,51.2100297 74.3141953,52.0249262 74.8496738,52.6903005 C74.8734729,52.59498 74.8853724,52.4865764 74.9091714,52.3931249 C74.8794226,51.9632483 74.9726356,51.4193609 75.1570782,50.8380929 C75.492248,49.7970439 76.1368055,48.6531983 76.8963917,47.8177424 C76.6921166,47.724291 76.5056907,47.6289705 76.3609132,47.5392571 C73.483212,45.7262992 68.9455273,41.0032634 74.1079369,34.6373513 C74.3776594,34.3065332 74.6672145,34.0037505 74.9785854,33.7252652 C74.4907048,27.9929539 77.9812315,30.2563478 79.5341193,31.5272873 C82.0746674,31.0076974 84.8611389,31.3011349 87.1974119,32.2169589 C88.9585412,31.0469469 92.3003239,29.4638795 91.2809314,35.0896562 C91.2809314,35.0896562 93.3930967,42.4162491 88.1235914,46.3299955 C87.2013784,47.015929 86.2573496,47.5205668 85.3272036,47.8812894 C85.3906677,47.9803479 85.4223997,48.0495019 85.4382658,48.0943587 C85.4580983,48.116787 85.4759476,48.1392154 85.4977634,48.1635127 C87.0447013,48.4756406 87.2826918,49.6475216 87.2826918,49.6475216 C87.2727755,49.9129237 87.3164071,50.1839329 87.3818545,50.5502626 C87.5246487,50.7521176 87.667443,50.9558418 87.8142038,51.1763872 C87.9133665,51.3240405 88.0541775,51.4978601 88.198955,51.6735488 C88.9327589,52.0398785 89.8212566,52.1183777 89.8351394,52.1202467 C89.9640509,52.1090326 90.1187447,52.138937 90.2040246,52.1557583 C90.6125749,52.2323885 91.4356252,52.2174362 91.5804027,52.8977627 C91.6458501,53.2061524 91.4098429,53.3743651 91.2531659,53.5294944 C91.1183046,53.6603264 91.2214338,53.9089073 91.3840606,54.0079658 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M49.2583945,0.883945244 C51.0283166,-0.0481136637 54.784118,0.275779135 55.9512968,0.586694179 C56.3137453,0.265829393 57.2828874,-0.439302406 58.0475183,0.387200174 C58.9304849,1.34305762 57.3085137,2.96066253 57.3085137,2.96066253 L57.2932706,2.93798853 C57.5729515,4.25208522 57.7222874,5.90155724 57.8424262,7.2786496 C58.0304259,9.43359932 59.1375413,12.4036646 59.5178518,13.3737582 C59.5296659,13.3568052 59.5415901,13.3398793 59.5536248,13.3229814 C59.5536248,13.3229814 67.2728611,18.8513267 68.9090905,21.7180858 C70.2539609,24.0740353 69.4704895,25.4281757 68.3086067,27.1898317 C67.3563603,28.6331161 68.674582,28.3359693 69.3105973,28.6302862 C70.2095464,29.0477066 70.8171364,33.1440874 67.2248935,33.9463838 C65.4095783,34.3518187 63.704963,33.4885644 62.3967156,32.2641638 C62.5593291,32.836483 62.730635,33.4245841 62.9110719,34.028802 C64.3283055,38.7741948 65.270828,46.6054259 66.9640565,52.7317813 C67.9534981,56.3254832 70,58.1676554 70,60.3430714 C70,63.2462921 66.7349807,64.6925705 62.0071887,64.1487165 C59.3148588,63.8394662 58.2922978,62.6264585 57.8424262,59.2553634 C57.3442555,55.5376947 51.9858151,54.5832843 49.2865854,54.4713143 C44.9369063,54.2900297 39.2707317,56.8640054 39.0444159,59.5819424 C38.8650193,61.7613573 39.1437741,64.0700709 34.8796534,64.8018745 C29.8137677,65.6723075 27,63.5088882 27,61.5400834 C27,60.3683979 28.4130937,56.6760558 30.3257381,52.2199187 C33.3989409,45.0458445 37.7582798,35.8856369 39.6088254,32.0426685 C41.0531831,29.0425803 42.0456751,25.5226718 42.8540351,22.3626216 C41.1680416,21.2182122 39.2308905,19.4762418 37.43118,16.6699263 C36.6679695,15.4720975 35.3749042,11.3981486 35.0756598,7.69419575 C34.3261761,4.11668036 34.9150562,0.274311712 38.6926736,0.00812753105 C40.9919139,-0.158237582 41.1744804,2.24939833 40.5554014,5.39569535 C40.5471653,5.41299732 40.5471653,5.42896837 40.5471653,5.44627034 C40.4428416,8.54864697 40.7448313,10.5011079 40.8546458,10.8311763 C41.5711852,12.0582854 43.0976062,13.0511524 44.3165467,13.7365767 C44.7116108,13.7970575 45.1010505,13.8179051 45.4651972,13.8194016 C46.4516441,11.2465409 47.041532,6.09164338 47.8607003,3.1894575 C47.4807038,2.74239384 46.5935324,1.53991098 47.3100491,0.781849962 C47.9965905,0.0551530523 48.8297413,0.53882559 49.2583945,0.883945244 Z M59.7257459,19.8249155 C59.8527863,20.884346 60.0357511,22.1009209 60.2940567,23.489459 C60.4845776,23.0435856 60.7223775,22.555454 61.0157494,22.0138176 C61.3341941,21.4190545 60.6023682,20.6174384 59.7257459,19.8249155 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M73,81 L120,33" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M1.39868597,51.4476887 C-1.14682637,62.0702972 -0.217845575,69.8024191 4.18562834,74.6440546 C8.58910225,79.4856901 13.2738072,82.1043385 18.2397431,82.5 L122.146095,82.5 C131.281883,80.1994348 137.232631,75.7717615 139.998341,69.2169803 C142.764051,62.6621991 143.61853,55.5898723 142.561778,48 C135.328499,55.6170649 127.767628,59.7837316 119.879164,60.5 C108.187158,60.5 32.7379358,60.5 20.6405569,60.5 C12.5756377,60.5 6.1616807,57.4825629 1.39868597,51.4476887 Z" className="slds-illustration__fill-secondary" /> <path vectorEffect="non-scaling-stroke" d="M141.988281,49.9780273 C139.134277,55.4827474 134.811605,59.6679688 129.020264,62.5336914 C127.810916,63.1321113 126.396061,64.942562 120.75,65 C93.7275391,65.2749023 21.6982422,65 17,65 C7.73779297,65 2.19116211,56.3481445 2.2253418,53.5527344 C2.24812826,51.6891276 4.08561198,53.1865826 7.73779297,58.0450993 L17.3032227,59.7929688 L45.6547852,60.6054688 L93.3740234,60.6054688 L120.75,59.7929688 L132.729492,56.1923828" fill="#FFFFFF" /> <path vectorEffect="non-scaling-stroke" d="M1.39868597,51.4476887 C-1.14682637,62.0702972 -0.217845575,69.8024191 4.18562834,74.6440546 C8.58910225,79.4856901 13.2738072,82.1043385 18.2397431,82.5 L122.146095,82.5 C131.281883,80.1994348 137.232631,75.7717615 139.998341,69.2169803 C142.764051,62.6621991 143.61853,55.5898723 142.561778,48 C135.328499,55.6170649 127.767628,59.7837316 119.879164,60.5 C108.187158,60.5 32.7379358,60.5 20.6405569,60.5 C12.5756377,60.5 6.1616807,57.4825629 1.39868597,51.4476887 Z" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M101,38 L101,54.9407523 C101,80.6494326 107.210948,96.815408 116,103" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(108.500000, 70.500000) scale(-1, 1) translate(-108.500000, -70.500000) " /> </g> </g> </g> </g> </svg> ); export const NoAccess2 = props => ( <svg className="slds-illustration__svg" viewBox="0 0 454 234" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" > <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd"> <g transform="translate(2.000000, 2.000000)"> <g transform="translate(52.500000, 147.000000)"> <path vectorEffect="non-scaling-stroke" d="M18.9209988,1.95433401 L33.259296,51.443436 C33.5666778,52.5043744 32.9557995,53.613617 31.8948612,53.9209988 C31.7139843,53.9734036 31.5266126,54 31.3382972,54 L2.6617028,54 C1.5571333,54 0.661702805,53.1045695 0.661702805,52 C0.661702805,51.8116846 0.688299176,51.6243129 0.74070397,51.443436 L15.0790012,1.95433401 C15.386383,0.893395645 16.4956256,0.282517358 17.556564,0.589899164 C18.2152102,0.780726338 18.7301717,1.29568777 18.9209988,1.95433401 Z" fill="#FFFFFF" fillRule="nonzero" /> <g strokeLinecap="round" className="slds-illustration__stroke-secondary" strokeWidth="3" > <polygon vectorEffect="non-scaling-stroke" strokeLinejoin="round" points="17 0.324 34 54 0 54" /> <path vectorEffect="non-scaling-stroke" d="M17,4.6953125 C17,43.0456294 17,62.6471919 17,63.5 C17,62.6471919 17,43.0456294 17,4.6953125 Z" /> <path vectorEffect="non-scaling-stroke" d="M17,29.3239437 C22.3333333,35.7851611 25,39.1184944 25,39.3239437 C25,39.1184944 22.3333333,35.7851611 17,29.3239437 Z" strokeLinejoin="round" transform="translate(21.000000, 34.323944) scale(-1, 1) translate(-21.000000, -34.323944) " /> </g> </g> <g transform="translate(73.000000, 119.000000)"> <path vectorEffect="non-scaling-stroke" d="M26.6478873,0 L51.879042,84.4273253 C52.1953215,85.4856452 51.5937789,86.5999782 50.535459,86.9162577 C50.3496374,86.9717906 50.1567264,87 49.9627843,87 L3.33299037,87 C2.22842087,87 1.33299037,86.1045695 1.33299037,85 C1.33299037,84.8060578 1.36119976,84.6131469 1.41673264,84.4273253 L26.6478873,0 Z" fill="#FFFFFF" fillRule="nonzero" /> <g strokeLinecap="round" className="slds-illustration__stroke-secondary" strokeWidth="3" > <polygon vectorEffect="non-scaling-stroke" strokeLinejoin="round" points="26.5 0 52.5 87 0.5 87" /> <path vectorEffect="non-scaling-stroke" d="M26.5,2.58642578 C26.5,61.0261034 26.5,90.9972948 26.5,92.5 C26.5,90.9972948 26.5,61.0261034 26.5,2.58642578 Z" /> <path vectorEffect="non-scaling-stroke" d="M15.6478873,42 C22.314554,49.078692 25.6478873,52.7453587 25.6478873,53 C25.6478873,52.7453587 22.314554,49.078692 15.6478873,42 Z M27.6478873,68 C36.9812207,57.078692 41.6478873,51.7453587 41.6478873,52 C41.6478873,51.7453587 36.9812207,57.078692 27.6478873,68 Z" strokeLinejoin="round" /> </g> </g> <g strokeLinecap="round" strokeLinejoin="round" transform="translate(332.500000, 170.000000) scale(-1, 1) translate(-332.500000, -170.000000) translate(276.000000, 151.000000)" className="slds-illustration__stroke-secondary" strokeWidth="3" > <polyline vectorEffect="non-scaling-stroke" points="0 38 47.5 0 80.5 26" /> <polyline vectorEffect="non-scaling-stroke" points="71 17 80.5 9 113 36" /> </g> <g transform="translate(0.000000, 187.500000)"> <path vectorEffect="non-scaling-stroke" d="M153.962142,26.4644491 C151.225735,20.0143094 144.944776,15.5029106 137.633892,15.5029106 C135.619663,15.5029106 133.683612,15.8453541 131.878328,16.4764392 C128.451481,11.1704266 122.567406,7.66985447 115.883789,7.66985447 C109.491267,7.66985447 103.830159,10.8721423 100.350851,15.7935668 C98.9589956,14.968161 97.3423157,14.4956341 95.6177606,14.4956341 C94.1083143,14.4956341 92.6815102,14.8576334 91.4157672,15.5014039 C87.9975328,6.58722215 79.5098304,0.275259875 69.5804557,0.275259875 C60.4632836,0.275259875 52.5615782,5.59684366 48.6837305,13.3681823 C46.3912034,12.266973 43.8314865,11.6515593 41.1312741,11.6515593 C32.4373504,11.6515593 25.1998844,18.0312998 23.6476214,26.4644491 L153.962142,26.4644491 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M13,25 L143,25 M0,25 L450,25" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> </g> <g transform="translate(272.293000, 172.055000)"> <path vectorEffect="non-scaling-stroke" d="M165.428708,41.9454545 L0.0995432562,41.9454545 C0.0336614956,41.2089487 0,40.4630069 0,39.7090909 C0,26.2132599 10.7866531,15.2727273 24.0926641,15.2727273 C27.7492016,15.2727273 31.215485,16.0989227 34.3199502,17.5772977 C39.5712028,7.14424616 50.271428,0 62.6175975,0 C76.0636257,0 87.5573893,8.47383452 92.1862485,20.441159 C93.9002755,19.5768947 95.8324059,19.0909091 97.8764479,19.0909091 C100.211783,19.0909091 102.401037,19.7252784 104.285841,20.8333889 C108.997403,14.2263569 116.663488,9.92727273 125.320028,9.92727273 C138.043441,9.92727273 148.627152,19.2146805 150.834755,31.4671412 C151.487388,31.3631046 152.156394,31.3090909 152.837838,31.3090909 C159.117096,31.3090909 164.340238,35.8953699 165.428708,41.9454545 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M32.7065637,40.4454545 L173.706564,40.4454545" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> </g> <g transform="translate(33.000000, 128.000000)"> <g transform="translate(106.000000, 0.000000)" fill="#FFFFFF" fillRule="nonzero" > <polygon vectorEffect="non-scaling-stroke" points="121.5 48.5 158.5 48.5 158.5 34.5 47.5 34.5 47.5 48.5 93.5 48.5 93.5 69.5 121.5 69.5" /> <path vectorEffect="non-scaling-stroke" d="M33.9882812,0.21875 C36.5611979,0.21875 70.6126302,0.21875 136.142578,0.21875 L152.384766,11.1132813 C155.083088,16.811292 155.656656,19.677503 154.105469,19.7119141 C152.554281,19.7463252 116.293865,17.6717809 45.3242187,13.4882812 C35.1940104,4.64192708 31.4153646,0.21875 33.9882812,0.21875 Z" /> <path vectorEffect="non-scaling-stroke" d="M32.6708984,2.02246094 L21.5554199,0.374195518 L17.6036034,0.374195518 L5.77148437,7.90429688 C3.09089817,12.6737672 3.09089817,15.2284547 5.77148437,15.5683594 C8.45207058,15.9082641 16.1278518,14.3268839 28.7988281,10.8242188 L42.9921875,7.90429688 L41.0699892,5.68448183 L32.6708984,2.02246094 Z" /> <rect x="0" y="34" width="48" height="14" /> </g> <g transform="translate(106.000000, 5.000000)" className="slds-illustration__fill-secondary" fillRule="nonzero" > <polygon vectorEffect="non-scaling-stroke" points="93.311 43.457 93.311 64.672 120.925 64.672 121.823 44.132 158.5 43.457 158.5 97.5 48.5 97.5 48.5 43.693" /> <path vectorEffect="non-scaling-stroke" d="M132.670898,7.66300119e-19 C125.172201,-2.55433373e-19 94.1907552,-2.55433373e-19 39.7265625,7.66300119e-19 L31.8183594,12.5058594 L29.7050781,28.2714844 L157.78125,28.2714844 L157.78125,15.4775391 C148.539714,5.15917969 140.169596,1.78803361e-18 132.670898,7.66300119e-19 Z" /> <path vectorEffect="non-scaling-stroke" d="M37.8266602,-3.55271368e-15 C34.4632704,-3.55271368e-15 29.4181858,-3.55271368e-15 22.6914062,-3.55271368e-15 C16.1624349,-3.55271368e-15 9.53808594,3.83528646 2.81835938,11.5058594 L0.705078125,30.2714844 L48.4101562,30.2714844 L48.4101562,14.4775391 L48.1789909,12.3275853 C43.283405,4.10919509 39.832628,-3.55271368e-15 37.8266602,-3.55271368e-15 Z" /> <rect x="0.5" y="43.5" width="48" height="54" /> </g> <rect className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" x="154.5" y="34.5" width="110" height="68" /> <polygon vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="264.5 48.5 264.5 34.5 154.5 34.5 154.5 48.5 199.5 48.5 199.5 69.5 227.5 69.5 227.5 48.5" /> <path vectorEffect="non-scaling-stroke" d="M130.5,0.5 L234.5,0.5 C251.068542,0.5 264.5,13.9314575 264.5,30.5 L264.5,34.5 L106.5,34.5 L106.5,24.5 C106.5,11.245166 117.245166,0.5 130.5,0.5 Z" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M130.5,0.5 C143.754834,0.5 154.5,11.245166 154.5,24.5 L154.5,34.5 L106.5,34.5 L106.5,24.5 C106.5,11.245166 117.245166,0.5 130.5,0.5 Z" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <rect className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" x="106.5" y="48.5" width="48" height="54" /> <rect className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" x="106.5" y="34.5" width="48" height="14" /> <path vectorEffect="non-scaling-stroke" d="M219,52 C219,54.765 216.765,57 214,57 C211.235,57 209,54.765 209,52 C209,49.235 211.235,47 214,47 C216.765,47 219,49.235 219,52 Z" className="slds-illustration__fill-primary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M214,55 L214,60" className="slds-illustration__stroke-primary" strokeWidth="4" strokeLinecap="round" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="164" cy="58" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="164" cy="93" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="255" cy="58" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="255" cy="93" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="145" cy="58" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="145" cy="93" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="116" cy="58" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="116" cy="93" r="3" /> <path vectorEffect="non-scaling-stroke" d="M289.928751,82.2971422 L298,102.518658 L280,102.518658 L288.071249,82.2971422 C288.275982,81.784207 288.857768,81.5343604 289.370703,81.7390942 C289.625359,81.8407378 289.827108,82.0424867 289.928751,82.2971422 Z" className="slds-illustration__fill-primary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M300.428751,89.8132712 L305.5,102.518658 L293.5,102.518658 L298.571249,89.8132712 C298.775982,89.300336 299.357768,89.0504894 299.870703,89.2552232 C300.125359,89.3568668 300.327108,89.5586158 300.428751,89.8132712 Z" className="slds-illustration__fill-primary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M93.4287513,82.2971422 L101.5,102.518658 L83.5,102.518658 L91.5712487,82.2971422 C91.7759825,81.784207 92.3577681,81.5343604 92.8707033,81.7390942 C93.1253588,81.8407378 93.3271077,82.0424867 93.4287513,82.2971422 Z" className="slds-illustration__fill-primary" fillRule="nonzero" transform="translate(92.500000, 92.093119) scale(-1, 1) translate(-92.500000, -92.093119) " /> <path vectorEffect="non-scaling-stroke" d="M76.9287513,89.8132712 L82,102.518658 L70,102.518658 L75.0712487,89.8132712 C75.2759825,89.300336 75.8577681,89.0504894 76.3707033,89.2552232 C76.6253588,89.3568668 76.8271077,89.5586158 76.9287513,89.8132712 Z" className="slds-illustration__fill-primary" fillRule="nonzero" transform="translate(76.000000, 95.851183) scale(-1, 1) translate(-76.000000, -95.851183) " /> <path vectorEffect="non-scaling-stroke" d="M360,102.5 L372,102.5 M0,102.5 L350,102.5" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> </g> <g strokeLinecap="round" transform="translate(180.713492, 71.088189) rotate(-15.000000) translate(-180.713492, -71.088189) translate(153.713492, 52.588189)" className="slds-illustration__stroke-secondary" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M31.03567,3.43547751 C31.03567,3.43547751 40.5798276,0.672084646 42.6484417,10.6910579" transform="translate(36.842056, 6.888632) rotate(41.000000) translate(-36.842056, -6.888632) " /> <path vectorEffect="non-scaling-stroke" d="M40.4282597,10.1797599 C40.4282597,10.1797599 49.9724173,7.41636703 52.0410314,17.4353402" transform="translate(46.234646, 13.632914) scale(-1, 1) rotate(-41.000000) translate(-46.234646, -13.632914) " /> <path vectorEffect="non-scaling-stroke" d="M0.730284783,29.5865514 C0.730284783,29.5865514 10.2744424,26.8231586 12.3430565,36.8421318" /> <path vectorEffect="non-scaling-stroke" d="M12.7299435,29.5865514 C12.7299435,29.5865514 22.2741011,26.8231586 24.3427152,36.8421318" transform="translate(18.536329, 33.039706) scale(-1, 1) translate(-18.536329, -33.039706) " /> </g> <g transform="translate(258.000000, 0.000000)" className="slds-illustration__stroke-primary" > <g strokeWidth="3"> <path vectorEffect="non-scaling-stroke" d="M67,120 C67,123.312 64.3135,126 61,126 C57.688,126 55,123.312 55,120 C55,116.688 57.688,114 61,114 C64.3135,114 67,116.688 67,120 Z" fill="#FFFFFF" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M52,135 C52,137.208 50.209,139 48,139 C45.792,139 44,137.208 44,135 C44,132.792 45.792,131 48,131 C50.209,131 52,132.792 52,135 Z" /> <path vectorEffect="non-scaling-stroke" d="M96.0568799,0 C78.2900529,0 62.8190358,10.0568662 54.6662185,24.9225726 C49.0099109,20.7996522 42.1151387,18.3495864 34.6598756,18.3495864 C15.5126256,18.3495864 0,34.3231272 0,54.0272817 C0,73.7339036 15.5126256,89.7074443 34.6598756,89.7074443 C35.0735129,89.7074443 35.4822552,89.6556302 35.9007877,89.6408262 C42.1591947,98.9155466 52.5662134,105 64.3683403,105 C72.7414379,105 80.4243239,101.940502 86.4134995,96.8503854 C89.5292414,97.5116317 92.7551235,97.8644609 96.0568799,97.8644609 C122.314287,97.8644609 142,76.3690196 142,49.3467431 C142,22.3219992 122.314287,0 96.0568799,0 Z" fill="#FFFFFF" fillRule="nonzero" strokeLinecap="round" strokeLinejoin="round" /> </g> <g transform="translate(75.999627, 52.000087) rotate(45.000000) translate(-75.999627, -52.000087) translate(59.999627, 16.000087)" strokeWidth="6" > <circle vectorEffect="non-scaling-stroke" cx="15" cy="6" r="6" /> <circle vectorEffect="non-scaling-stroke" cx="7" cy="18" r="7" /> <circle vectorEffect="non-scaling-stroke" cx="25" cy="18" r="7" /> <path vectorEffect="non-scaling-stroke" d="M15,24 L15,72 M12,34 L18,34 M15,55 L25,55 M15,65 L27,65" strokeLinecap="round" /> </g> </g> </g> </g> </svg> ); export const NoContent = props => ( <svg className="slds-illustration__svg" viewBox="0 0 454 213" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" > <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd"> <g transform="translate(-70.000000, -94.000000)"> <g> <g transform="translate(124.500000, 222.000000)"> <g fill="#FFFFFF"> <path vectorEffect="non-scaling-stroke" d="M18.9209988,1.95433401 L33.259296,51.443436 C33.5666778,52.5043744 32.9557995,53.613617 31.8948612,53.9209988 C31.7139843,53.9734036 31.5266126,54 31.3382972,54 L2.6617028,54 C1.5571333,54 0.661702805,53.1045695 0.661702805,52 C0.661702805,51.8116846 0.688299176,51.6243129 0.74070397,51.443436 L15.0790012,1.95433401 C15.386383,0.893395645 16.4956256,0.282517358 17.556564,0.589899164 C18.2152102,0.780726338 18.7301717,1.29568777 18.9209988,1.95433401 Z" /> </g> <g className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeWidth="3" > <polygon vectorEffect="non-scaling-stroke" strokeLinejoin="round" points="17 0.323943662 34 54 -1.81721305e-12 54" /> <path vectorEffect="non-scaling-stroke" d="M17,4.6953125 C17,43.0456294 17,62.6471919 17,63.5 C17,62.6471919 17,43.0456294 17,4.6953125 Z" /> <path vectorEffect="non-scaling-stroke" d="M17,29.3239437 C22.3333333,35.7851611 25,39.1184944 25,39.3239437 C25,39.1184944 22.3333333,35.7851611 17,29.3239437 Z" strokeLinejoin="round" transform="translate(21.000000, 34.323944) scale(-1, 1) translate(-21.000000, -34.323944) " /> </g> </g> <g transform="translate(145.000000, 194.000000)"> <g transform="translate(1.000000, 0.000000)" fill="#FFFFFF"> <path vectorEffect="non-scaling-stroke" d="M25.6478873,0 L50.879042,84.4273253 C51.1953215,85.4856452 50.5937789,86.5999782 49.535459,86.9162577 C49.3496374,86.9717906 49.1567264,87 48.9627843,87 L2.33299037,87 C1.22842087,87 0.332990367,86.1045695 0.332990367,85 C0.332990367,84.8060578 0.361199757,84.6131469 0.416732643,84.4273253 L25.6478873,0 Z" /> </g> <g className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeWidth="3" > <polygon vectorEffect="non-scaling-stroke" strokeLinejoin="round" points="26.5 0 52.5 87 0.5 87" /> <path vectorEffect="non-scaling-stroke" d="M26.5,2.58642578 C26.5,61.0261034 26.5,90.9972948 26.5,92.5 C26.5,90.9972948 26.5,61.0261034 26.5,2.58642578 Z" /> <path vectorEffect="non-scaling-stroke" d="M15.6478873,42 C22.314554,49.078692 25.6478873,52.7453587 25.6478873,53 C25.6478873,52.7453587 22.314554,49.078692 15.6478873,42 Z" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M27.6478873,68 C36.9812207,57.078692 41.6478873,51.7453587 41.6478873,52 C41.6478873,51.7453587 36.9812207,57.078692 27.6478873,68 Z" strokeLinejoin="round" /> </g> </g> <g transform="translate(404.500000, 245.000000) scale(-1, 1) translate(-404.500000, -245.000000) translate(348.000000, 226.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <polyline vectorEffect="non-scaling-stroke" points="0 38 47.5 0 80.5 26" /> <polyline vectorEffect="non-scaling-stroke" points="71 17 80.5 9 113 36" /> </g> <g transform="translate(72.000000, 262.500000)"> <path vectorEffect="non-scaling-stroke" d="M153.962142,26.4644491 C151.225735,20.0143094 144.944776,15.5029106 137.633892,15.5029106 C135.619663,15.5029106 133.683612,15.8453541 131.878328,16.4764392 C128.451481,11.1704266 122.567406,7.66985447 115.883789,7.66985447 C109.491267,7.66985447 103.830159,10.8721423 100.350851,15.7935668 C98.9589956,14.968161 97.3423157,14.4956341 95.6177606,14.4956341 C94.1083143,14.4956341 92.6815102,14.8576334 91.4157672,15.5014039 C87.9975328,6.58722215 79.5098304,0.275259875 69.5804557,0.275259875 C60.4632836,0.275259875 52.5615782,5.59684366 48.6837305,13.3681823 C46.3912034,12.266973 43.8314865,11.6515593 41.1312741,11.6515593 C32.4373504,11.6515593 25.1998844,18.0312998 23.6476214,26.4644491 L153.962142,26.4644491 Z" className="slds-illustration__fill-secondary" /> <path vectorEffect="non-scaling-stroke" d="M13,25 L143,25" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> <path vectorEffect="non-scaling-stroke" d="M0,25 L450,25" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> </g> <g transform="translate(344.000000, 247.000000)"> <g transform="translate(0.293436, 0.054545)"> <path vectorEffect="non-scaling-stroke" d="M165.428708,41.9454545 L0.0995432562,41.9454545 C0.0336614956,41.2089487 0,40.4630069 0,39.7090909 C0,26.2132599 10.7866531,15.2727273 24.0926641,15.2727273 C27.7492016,15.2727273 31.215485,16.0989227 34.3199502,17.5772977 C39.5712028,7.14424616 50.271428,0 62.6175975,0 C76.0636257,0 87.5573893,8.47383452 92.1862485,20.441159 C93.9002755,19.5768947 95.8324059,19.0909091 97.8764479,19.0909091 C100.211783,19.0909091 102.401037,19.7252784 104.285841,20.8333889 C108.997403,14.2263569 116.663488,9.92727273 125.320028,9.92727273 C138.043441,9.92727273 148.627152,19.2146805 150.834755,31.4671412 C151.487388,31.3631046 152.156394,31.3090909 152.837838,31.3090909 C159.117096,31.3090909 164.340238,35.8953699 165.428708,41.9454545 Z" className="slds-illustration__fill-secondary" /> <path vectorEffect="non-scaling-stroke" d="M32.7065637,40.4454545 L173.706564,40.4454545" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> </g> </g> <g transform="translate(105.000000, 189.000000)"> <g transform="translate(106.000000, 48.000000)" fill="#FFFFFF"> <polygon vectorEffect="non-scaling-stroke" points="121.5 14.5 158.5 14.5 158.5 0.5 47.5 0.5 47.5 14.5 93.5 14.5 93.5 35.5 121.5 35.5 121.5 14.5" /> <rect x="0" y="0" width="48" height="14" /> </g> <g transform="translate(106.000000, 62.000000)" className="slds-illustration__fill-secondary" > <polygon vectorEffect="non-scaling-stroke" points="93.3109375 0.456640625 93.3109375 21.6722656 120.925 21.6722656 121.823047 1.13242188 158.5 0.456640625 158.5 54.5 48.5 54.5 48.5 0.693359375" /> <rect x="0.5" y="0.5" width="48" height="54" /> </g> <g> <rect className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" x="154.5" y="48.5" width="110" height="68" /> <polygon vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="264.5 62.5 264.5 48.5 154.5 48.5 154.5 62.5 199.5 62.5 199.5 83.5 227.5 83.5 227.5 62.5" /> <path vectorEffect="non-scaling-stroke" d="M96.5,7.5 L96.5,7.5 C109.754834,7.5 120.5,18.245166 120.5,31.5 L120.5,41.5 L72.5,41.5 L72.5,31.5 C72.5,18.245166 83.245166,7.5 96.5,7.5 Z" className="slds-illustration__fill-secondary" transform="translate(96.500000, 24.500000) scale(-1, 1) rotate(90.000000) translate(-96.500000, -24.500000) " /> <path vectorEffect="non-scaling-stroke" d="M105.624512,4.97216797 C94.4226888,4.50244141 85.9366862,9.85058594 80.1665039,21.0166016 C79.8051287,21.7159073 79.4687138,22.3615749 79.1572595,22.9536042 L80.1089196,17.7968272 C80.4778395,16.9245818 81.0906215,15.4885626 81.9472656,13.4887695 C86.7151693,7.81103516 89.2679036,4.97216797 89.6054688,4.97216797 C89.9430339,4.97216797 92.2714844,3.71272786 96.5908203,1.19384766 L101.309082,0.447753906 L105.624512,0.447753906 L105.624512,4.97216797 Z" fill="#FFFFFF" /> <path vectorEffect="non-scaling-stroke" d="M96.5,7.5 L96.5,7.5 C109.754834,7.5 120.5,18.245166 120.5,31.5 L120.5,41.5 L72.5,41.5 L72.5,31.5 C72.5,18.245166 83.245166,7.5 96.5,7.5 Z" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(96.500000, 24.500000) scale(-1, 1) rotate(90.000000) translate(-96.500000, -24.500000) " /> <rect className="slds-illustration__fill-secondary" x="106.5" y="0.5" width="110" height="48" /> <rect className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" x="106.5" y="0.5" width="110" height="48" /> <rect className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" x="106.5" y="62.5" width="48" height="54" /> <rect className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" x="106.5" y="48.5" width="48" height="14" /> <path vectorEffect="non-scaling-stroke" d="M219,66 C219,68.765 216.765,71 214,71 C211.235,71 209,68.765 209,66 C209,63.235 211.235,61 214,61 C216.765,61 219,63.235 219,66 Z" className="slds-illustration__fill-primary" /> <path vectorEffect="non-scaling-stroke" d="M214,69 L214,74" className="slds-illustration__stroke-primary" strokeWidth="4" strokeLinecap="round" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" cx="164" cy="72" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" cx="164" cy="107" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" cx="255" cy="72" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" cx="255" cy="107" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" cx="145" cy="72" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" cx="145" cy="107" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" cx="116" cy="72" r="3" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" cx="116" cy="107" r="3" /> <path vectorEffect="non-scaling-stroke" d="M289.928751,96.2971422 L298,116.518658 L280,116.518658 L288.071249,96.2971422 C288.275982,95.784207 288.857768,95.5343604 289.370703,95.7390942 C289.625359,95.8407378 289.827108,96.0424867 289.928751,96.2971422 Z" className="slds-illustration__fill-primary" /> <path vectorEffect="non-scaling-stroke" d="M300.428751,103.813271 L305.5,116.518658 L293.5,116.518658 L298.571249,103.813271 C298.775982,103.300336 299.357768,103.050489 299.870703,103.255223 C300.125359,103.356867 300.327108,103.558616 300.428751,103.813271 Z" className="slds-illustration__fill-primary" /> <path vectorEffect="non-scaling-stroke" d="M93.4287513,96.2971422 L101.5,116.518658 L83.5,116.518658 L91.5712487,96.2971422 C91.7759825,95.784207 92.3577681,95.5343604 92.8707033,95.7390942 C93.1253588,95.8407378 93.3271077,96.0424867 93.4287513,96.2971422 Z" className="slds-illustration__fill-primary" transform="translate(92.500000, 106.517446) scale(-1, 1) translate(-92.500000, -106.517446) " /> <path vectorEffect="non-scaling-stroke" d="M76.9287513,103.813271 L82,116.518658 L70,116.518658 L75.0712487,103.813271 C75.2759825,103.300336 75.8577681,103.050489 76.3707033,103.255223 C76.6253588,103.356867 76.8271077,103.558616 76.9287513,103.813271 Z" className="slds-illustration__fill-primary" transform="translate(76.000000, 110.275510) scale(-1, 1) translate(-76.000000, -110.275510) " /> <path vectorEffect="non-scaling-stroke" d="M360,116.5 L372,116.5" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M0,116.5 L350,116.5" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> </g> </g> <g transform="translate(160.000000, 126.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M44,17.5 L63,17.5 C62.2789714,12.0723971 64.081543,7.53186978 68.4077148,3.87841797 C73.3754883,-0.195556641 79.2734375,0.717773438 82.440918,2.12353516 C85.6083984,3.52929687 87.9606934,5.46069336 89.5913086,9.10524041 C90.2822266,10.6397351 90.7517904,11.9379883 91,13" /> <path vectorEffect="non-scaling-stroke" d="M83,20.5 C84.0558268,16.8461914 86.2227376,14.4572754 89.5007324,13.333252 C94.4177246,11.6472168 99.0800781,13.8925781 100.942383,16.1518555 C102.804687,18.4111328 103.39502,20.2260742 103.746582,22.1201172 C103.980957,23.3828125 104.06543,24.8427734 104,26.5 C108.141764,26.3313802 110.918945,27.1647135 112.331543,29 C114.040039,31.1936035 114.215332,33.817627 113.593018,35.75 C112.970703,37.682373 110.894531,40.5 107,40.5 L28,40.5" /> <path vectorEffect="non-scaling-stroke" d="M18,27.5 L83.0004985,27.5" /> <path vectorEffect="non-scaling-stroke" d="M0,27.5 L8,27.5" /> </g> <g transform="translate(271.000000, 95.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M44,17.5 L63,17.5 C62.2789714,12.0723971 64.081543,7.53186978 68.4077148,3.87841797 C73.3754883,-0.195556641 79.2734375,0.717773438 82.440918,2.12353516 C85.6083984,3.52929687 87.9606934,5.46069336 89.5913086,9.10524041 C90.2822266,10.6397351 90.7517904,11.9379883 91,13" /> <path vectorEffect="non-scaling-stroke" d="M83,20.5 C84.0558268,16.8461914 86.2227376,14.4572754 89.5007324,13.333252 C94.4177246,11.6472168 99.0800781,13.8925781 100.942383,16.1518555 C102.804687,18.4111328 103.39502,20.2260742 103.746582,22.1201172 C103.980957,23.3828125 104.06543,24.8427734 104,26.5 C108.141764,26.3313802 110.918945,27.1647135 112.331543,29 C114.040039,31.1936035 114.215332,33.817627 113.593018,35.75 C112.970703,37.682373 110.894531,40.5 107,40.5 L28,40.5" /> <path vectorEffect="non-scaling-stroke" d="M18,27.5 L83.0004985,27.5" /> <path vectorEffect="non-scaling-stroke" d="M0,27.5 L8,27.5" /> </g> <g transform="translate(402.000000, 164.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeWidth="3" > <g transform="translate(31.713442, 25.088326) rotate(-15.000000) translate(-31.713442, -25.088326) translate(4.713442, 6.588326)"> <path vectorEffect="non-scaling-stroke" d="M31.0360707,3.43528591 C31.0360707,3.43528591 40.5802283,0.671893051 42.6488424,10.6908663" transform="translate(36.842457, 6.888440) rotate(41.000000) translate(-36.842457, -6.888440) " /> <path vectorEffect="non-scaling-stroke" d="M40.4282002,10.1797377 C40.4282002,10.1797377 49.9723578,7.4163448 52.0409719,17.435318" transform="translate(46.234586, 13.632892) scale(-1, 1) rotate(-41.000000) translate(-46.234586, -13.632892) " /> <path vectorEffect="non-scaling-stroke" d="M0.730284783,29.5865514 C0.730284783,29.5865514 10.2744424,26.8231586 12.3430565,36.8421318" /> <path vectorEffect="non-scaling-stroke" d="M12.7302848,29.5865514 C12.7302848,29.5865514 22.2744424,26.8231586 24.3430565,36.8421318" transform="translate(18.536671, 33.039705) scale(-1, 1) translate(-18.536671, -33.039705) " /> </g> </g> </g> </g> </g> </svg> ); export const NoPreview = props => ( <svg className="slds-illustration__svg" viewBox="0 0 272 146" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" > <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd"> <g transform="translate(-14.000000, -27.000000)"> <g transform="translate(16.000000, 29.000000)"> <g transform="translate(72.000000, 0.000000)"> <g className="slds-illustration__fill-secondary" fillRule="nonzero"> <path vectorEffect="non-scaling-stroke" d="M30.5,0 L30.5,0 C47.3446849,-3.09431841e-15 61,13.6553151 61,30.5 L61,60 L0,60 L0,30.5 C-2.06287894e-15,13.6553151 13.6553151,3.09431841e-15 30.5,0 Z" /> <path vectorEffect="non-scaling-stroke" d="M93.5,0 L93.5,0 C110.344685,-3.09431841e-15 124,13.6553151 124,30.5 L124,60 L63,60 L63,30.5 C63,13.6553151 76.6553151,3.09431841e-15 93.5,0 Z" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M30.5,0 L30.5,0 C47.3446849,-3.09431841e-15 61,13.6553151 61,30.5 L61,60 L0,60 L0,30.5 C-2.06287894e-15,13.6553151 13.6553151,3.09431841e-15 30.5,0 Z" /> <path vectorEffect="non-scaling-stroke" d="M93.5,0 L93.5,0 C110.344685,-3.09431841e-15 124,13.6553151 124,30.5 L124,60 L63,60 L63,30.5 C63,13.6553151 76.6553151,3.09431841e-15 93.5,0 Z" /> </g> </g> <g transform="translate(25.000000, 12.000000)"> <g className="slds-illustration__fill-secondary" fillRule="nonzero"> <path vectorEffect="non-scaling-stroke" d="M43.3094237,-4.90220754e-05 L101.000083,-0.000444774121 C105.418361,-0.000470840087 109.000104,3.58123003 109.00013,7.99950803 C109.00013,7.9995265 109.00013,7.99954496 109.00013,7.99956343 L109.000014,67.4644073 C109.000009,71.8826853 105.418284,75.4644036 101.000006,75.4643991 C99.6510307,75.4643977 98.3239602,75.1232809 97.1421959,74.4727684 L0,21 L27.874728,4.27516321 C32.5371385,1.47771689 37.8721654,-1.69445575e-05 43.3094237,-4.90220754e-05 Z" /> <path vectorEffect="non-scaling-stroke" d="M152.309424,-4.90221305e-05 L210,-0.000436568966 C214.418278,-0.000462634962 218.000021,3.58123824 218.000047,7.99951623 C218.000047,7.99953197 218.000047,7.9995477 218.000047,7.99956343 L218,67.4643914 C218,71.8826694 214.418278,75.4643914 210,75.4643914 C208.651022,75.4643914 207.323949,75.1232746 206.142182,74.4727607 L109,21 L136.874728,4.27516321 C141.537139,1.47771689 146.872165,-1.69445766e-05 152.309424,-4.90221305e-05 Z" transform="translate(163.500000, 37.732196) scale(-1, 1) translate(-163.500000, -37.732196) " /> <path vectorEffect="non-scaling-stroke" d="M83,45 L136,45 L136,96 C126.71258,89.3333333 117.726251,86 109.041016,86 C100.35578,86 91.6754413,89.3333333 83,96 L83,45 Z" /> </g> <g> <path vectorEffect="non-scaling-stroke" d="M43.3093766,0.000387544694 L101,1.39218415e-10 C105.418278,-2.60656843e-05 109.000021,3.58167481 109.000047,7.9999528 C109.000047,7.99996854 109.000047,7.99998427 109.000047,8 L109,52.6680576 L81.9847284,66.1292083 L0,21.0002979 L27.8747559,4.27555482 C32.5371491,1.47813734 37.872148,0.000419621861 43.3093766,0.000387544694 Z" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M152.309371,0.000387544432 L210,1.39218415e-10 C214.418278,-2.60656645e-05 218.000021,3.58167481 218.000047,7.9999528 C218.000047,7.99996854 218.000047,7.99998427 218.000047,8 L218,52.3145046 L178.604329,59.3143097 L109,21.000282 L136.874759,4.27554965 C141.53715,1.47813549 146.872146,0.000419621555 152.309371,0.000387544432 Z" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(163.500000, 29.657155) scale(-1, 1) translate(-163.500000, -29.657155) " /> <path vectorEffect="non-scaling-stroke" d="M55,20.5507812 C64.9114583,23.7174479 72.4322917,24.4316406 77.5625,22.6933594 C80.9058665,21.5605182 84.4875825,19.6520737 88.3076478,16.968026" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M131.097026,20.5507813 C141.008484,23.7174479 148.529317,24.4316406 153.659526,22.6933594 C156.777906,21.6367506 160.103638,19.9054119 163.636719,17.4993433" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(147.366872, 20.558378) scale(-1, 1) translate(-147.366872, -20.558378) " /> <path vectorEffect="non-scaling-stroke" d="M84.5,46.5 L84.5,93.039829 C92.6305082,87.3590953 100.816968,84.5 109.041016,84.5 C117.314418,84.5 125.804054,87.3935525 134.5,93.1438332 L134.5,46.5 L84.5,46.5 Z" className="slds-illustration__stroke-primary" strokeWidth="3" /> <path vectorEffect="non-scaling-stroke" d="M103.776999,7.00873899 C103.776999,5.89934308 104.675147,5 105.77074,5 L113.22926,5 C114.330373,5 115.223001,5.89019835 115.223001,7.00873899 L115.223001,17.2220302 C115.223001,18.3314261 114.324853,19.2307692 113.22926,19.2307692 L105.77074,19.2307692 C104.669627,19.2307692 103.776999,18.3405709 103.776999,17.2220302 L103.776999,7.00873899 Z M125.532059,10.3275794 C126.184145,9.43005925 127.439383,9.23039394 128.325736,9.87436727 L134.359806,14.2583751 C135.250625,14.9055931 135.449531,16.1504526 134.792069,17.055371 L128.788847,25.3180972 C128.136761,26.2156173 126.881523,26.4152826 125.995169,25.7713093 L119.9611,21.3873014 C119.070281,20.7400834 118.871375,19.495224 119.528837,18.5903056 L125.532059,10.3275794 Z M144.700426,47.3699966 C145.755525,47.7128188 146.333307,48.8449212 145.994751,49.8868919 L143.689941,56.9803657 C143.349679,58.0275864 142.227212,58.6014401 141.163417,58.255792 L131.45,55.0997115 C130.394902,54.7568893 129.817119,53.6247869 130.155676,52.5828161 L132.460485,45.4893424 C132.800747,44.4421217 133.923214,43.8682679 134.987009,44.213916 L144.700426,47.3699966 Z M134.792069,66.944629 C135.444156,67.8421492 135.246159,69.0976515 134.359806,69.7416249 L128.325736,74.1256327 C127.434917,74.7728507 126.18952,74.577339 125.532059,73.6724206 L119.528837,65.4096944 C118.87675,64.5121743 119.074747,63.2566719 119.9611,62.6126986 L125.995169,58.2286907 C126.885989,57.5814727 128.131386,57.7769844 128.788847,58.6819028 L134.792069,66.944629 Z M115.223001,76.991261 C115.223001,78.1006569 114.324853,79 113.22926,79 L105.77074,79 C104.669627,79 103.776999,78.1098017 103.776999,76.991261 L103.776999,66.7779698 C103.776999,65.6685739 104.675147,64.7692308 105.77074,64.7692308 L113.22926,64.7692308 C114.330373,64.7692308 115.223001,65.6594291 115.223001,66.7779698 L115.223001,76.991261 Z M93.4679414,73.6724206 C92.8158549,74.5699408 91.5606168,74.7696061 90.6742635,74.1256327 L84.6401943,69.7416249 C83.7493752,69.0944069 83.550469,67.8495474 84.2079307,66.944629 L90.2111527,58.6819028 C90.8632393,57.7843827 92.1184774,57.5847174 93.0048306,58.2286907 L99.0388998,62.6126986 C99.929719,63.2599166 100.128625,64.504776 99.4711634,65.4096944 L93.4679414,73.6724206 Z M77.836583,58.255792 C76.7814848,58.5986142 75.6486155,58.0223364 75.3100587,56.9803657 L73.0052493,49.8868919 C72.6649867,48.8396712 73.2357783,47.7156446 74.2995736,47.3699966 L84.0129908,44.213916 C85.068089,43.8710938 86.2009583,44.4473716 86.5395152,45.4893424 L88.8443245,52.5828161 C89.1845871,53.6300369 88.6137956,54.7540634 87.5500002,55.0997115 L77.836583,58.255792 Z M84.2079307,17.055371 C83.5558442,16.1578508 83.7538411,14.9023485 84.6401943,14.2583751 L90.6742635,9.87436727 C91.5650827,9.22714927 92.8104798,9.42266101 93.4679414,10.3275794 L99.4711634,18.5903056 C100.12325,19.4878257 99.9252531,20.7433281 99.0388998,21.3873014 L93.0048306,25.7713093 C92.1140115,26.4185273 90.8686144,26.2230156 90.2111527,25.3180972 L84.2079307,17.055371 Z" className="slds-illustration__fill-primary" fillRule="nonzero" /> </g> </g> <g transform="translate(103.000000, 23.000000)"> <g className="slds-illustration__fill-secondary" fillRule="nonzero"> <circle vectorEffect="non-scaling-stroke" cx="31" cy="31" r="31" /> </g> <g> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-primary" strokeWidth="3" cx="31" cy="31" r="31" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" cx="31" cy="30" r="23" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="31" cy="30" r="3" /> </g> </g> <g transform="translate(0.000000, 22.000000)"> <g> <g className="slds-illustration__fill-secondary" fillRule="nonzero" > <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> </g> <g> <circle vectorEffect="non-scaling-stroke" fill="#FFFFFF" fillRule="nonzero" cx="65" cy="56" r="43" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="54" /> <circle vectorEffect="non-scaling-stroke" cx="65" cy="56" r="43" /> </g> </g> <g transform="translate(57.000000, 39.000000)" fill="#FFFFFF" fillRule="nonzero" > <circle vectorEffect="non-scaling-stroke" cx="12" cy="12" r="12" /> </g> </g> <g transform="translate(65.000000, 78.000000) scale(-1, 1) rotate(-25.000000) translate(-65.000000, -78.000000) translate(22.000000, 35.000000)" className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <g transform="translate(0.000000, 6.000000)"> <polyline vectorEffect="non-scaling-stroke" points="62.8779297 45.4301758 76.6962891 50.0864258 82.9702148 50.0864258" /> <polyline vectorEffect="non-scaling-stroke" points="17.9418945 33.418457 10.9277344 31.2207031 0.961425781 30.4902344" /> <polyline vectorEffect="non-scaling-stroke" points="18.8887883 34.1570838 12.6113281 47.6191406 6.04443359 58.5869141" /> <polyline vectorEffect="non-scaling-stroke" points="21.6674805 34.9594727 17.5429688 46.9594727 10.65625 51.7612305" /> <path vectorEffect="non-scaling-stroke" d="M22.6860352,31.8857422 C25.6362305,31.4619141 34.7664388,28.0805664 50.0766602,21.7416992 L59.0014648,16.0219727" /> <path vectorEffect="non-scaling-stroke" d="M85.3564453,29.0703125 C85.3564453,29.0703125 81.4220378,28.836263 73.5532227,28.3681641 L64.894043,24.6855469" /> <path vectorEffect="non-scaling-stroke" d="M11.5874023,8.29443359 C11.5874023,8.29443359 12.5652669,11.3766276 14.5209961,17.5410156 L15.4111328,27.2485352 L18.3535156,33.6484375 L34.8789062,38.1914063 L42.4428711,38.1914063 L61.34375,44.8330078 L75.0297852,43.6328125 L84.5388413,45.1053213" /> <polyline vectorEffect="non-scaling-stroke" points="21.566923 0.929668597 15.4781169 22.0199203 20.3236366 26.9192963 20.3236366 31.4959565" /> <polyline vectorEffect="non-scaling-stroke" points="17.6870117 34.1630859 10.2763672 40.3227539 0.656738281 44.0629883" /> <path vectorEffect="non-scaling-stroke" d="M21.6630859,32.6479492 C21.6630859,32.6479492 30.3764648,27.2185872 47.8032227,16.3598633 L68.9267578,14.7773437 L76.9067383,11.034668" /> <path vectorEffect="non-scaling-stroke" d="M21.5595703,33.5961914 C22.4033203,33.5961914 34.1111654,30.7644857 56.6831055,25.1010742 L72.1142578,22.9682617 L83.4267578,22.9682617" /> <path vectorEffect="non-scaling-stroke" d="M21.6381836,34.9794922 C22.0782878,35.5696615 28.3497721,42.6695964 40.4526367,56.2792969 L50.8325195,58.8925781" /> <polyline vectorEffect="non-scaling-stroke" transform="translate(27.322634, 21.447593) rotate(-7.000000) translate(-27.322634, -21.447593) " points="20.5908715 31.0868005 28.6404257 23.4186837 34.0543968 11.8083853" /> <polyline vectorEffect="non-scaling-stroke" points="21.8877139 36.2408069 30.2587225 55.5290671 32.3618337 77.1765496" /> </g> </g> <g transform="translate(148.000000, 22.000000)"> <g> <g className="slds-illustration__fill-secondary" fillRule="nonzero" > <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> </g> <g> <circle vectorEffect="non-scaling-stroke" fill="#FFFFFF" fillRule="nonzero" cx="55" cy="56" r="43" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="54" /> <circle vectorEffect="non-scaling-stroke" cx="55" cy="56" r="43" /> </g> </g> <g transform="translate(54.000000, 39.000000)" fill="#FFFFFF" fillRule="nonzero" > <circle vectorEffect="non-scaling-stroke" cx="12" cy="12" r="12" /> </g> </g> </g> </g> </g> </svg> ); export const Preview = props => ( <svg className="slds-illustration__svg" viewBox="0 0 272 146" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" > <defs> <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> <filter x="-1.7%" y="-1.7%" width="103.3%" height="103.3%" filterUnits="objectBoundingBox" > <feOffset dx="0" dy="4" in="SourceAlpha" result="shadowOffsetInner1" /> <feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" /> <feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1" /> </filter> <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> <filter x="-1.7%" y="-1.7%" width="103.3%" height="103.3%" filterUnits="objectBoundingBox" > <feOffset dx="0" dy="4" in="SourceAlpha" result="shadowOffsetInner1" /> <feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" /> <feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1" /> </filter> </defs> <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd"> <g transform="translate(-14.000000, -27.000000)"> <g transform="translate(16.000000, 29.000000)"> <g transform="translate(72.000000, 0.000000)"> <g className="slds-illustration__fill-secondary" fillRule="nonzero"> <path vectorEffect="non-scaling-stroke" d="M30.5,0 L30.5,0 C47.3446849,-3.09431841e-15 61,13.6553151 61,30.5 L61,60 L0,60 L0,30.5 C-2.06287894e-15,13.6553151 13.6553151,3.09431841e-15 30.5,0 Z" /> <path vectorEffect="non-scaling-stroke" d="M93.5,0 L93.5,0 C110.344685,-3.09431841e-15 124,13.6553151 124,30.5 L124,60 L63,60 L63,30.5 C63,13.6553151 76.6553151,3.09431841e-15 93.5,0 Z" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M30.5,0 L30.5,0 C47.3446849,-3.09431841e-15 61,13.6553151 61,30.5 L61,60 L0,60 L0,30.5 C-2.06287894e-15,13.6553151 13.6553151,3.09431841e-15 30.5,0 Z" /> <path vectorEffect="non-scaling-stroke" d="M93.5,0 L93.5,0 C110.344685,-3.09431841e-15 124,13.6553151 124,30.5 L124,60 L63,60 L63,30.5 C63,13.6553151 76.6553151,3.09431841e-15 93.5,0 Z" /> </g> </g> <g transform="translate(25.000000, 12.000000)"> <g className="slds-illustration__fill-secondary" fillRule="nonzero"> <path vectorEffect="non-scaling-stroke" d="M43.3094237,-4.90220754e-05 L101.000083,-0.000444774121 C105.418361,-0.000470840087 109.000104,3.58123003 109.00013,7.99950803 C109.00013,7.9995265 109.00013,7.99954496 109.00013,7.99956343 L109.000014,67.4644073 C109.000009,71.8826853 105.418284,75.4644036 101.000006,75.4643991 C99.6510307,75.4643977 98.3239602,75.1232809 97.1421959,74.4727684 L0,21 L27.874728,4.27516321 C32.5371385,1.47771689 37.8721654,-1.69445575e-05 43.3094237,-4.90220754e-05 Z" /> <path vectorEffect="non-scaling-stroke" d="M152.309424,-4.90221305e-05 L210,-0.000436568966 C214.418278,-0.000462634962 218.000021,3.58123824 218.000047,7.99951623 C218.000047,7.99953197 218.000047,7.9995477 218.000047,7.99956343 L218,67.4643914 C218,71.8826694 214.418278,75.4643914 210,75.4643914 C208.651022,75.4643914 207.323949,75.1232746 206.142182,74.4727607 L109,21 L136.874728,4.27516321 C141.537139,1.47771689 146.872165,-1.69445766e-05 152.309424,-4.90221305e-05 Z" transform="translate(163.500000, 37.732196) scale(-1, 1) translate(-163.500000, -37.732196) " /> <path vectorEffect="non-scaling-stroke" d="M83,45 L136,45 L136,96 C126.71258,89.3333333 117.726251,86 109.041016,86 C100.35578,86 91.6754413,89.3333333 83,96 L83,45 Z" /> </g> <g> <path vectorEffect="non-scaling-stroke" d="M43.3093762,0.000387544676 L101,1.39216638e-10 C105.418278,-2.60656829e-05 109.000021,3.58167481 109.000047,7.9999528 C109.000047,7.99996854 109.000047,7.99998427 109.000047,8 L109,44.5958429 L81.0295328,65.6034126 L0,21.0002968 L27.8747561,4.27555446 C32.5371492,1.47813722 37.8721479,0.00041962184 43.3093762,0.000387544676 Z" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M152.309374,0.000387544571 L210,1.39217526e-10 C214.418278,-2.6065675e-05 218.000021,3.58167481 218.000047,7.9999528 C218.000047,7.99996854 218.000047,7.99998427 218.000047,8 L218,49.9434485 L184.843932,62.7489534 L109,21.0002905 L136.874757,4.2755524 C141.53715,1.47813648 146.872147,0.000419621717 152.309374,0.000387544571 Z" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(163.500000, 31.374477) scale(-1, 1) translate(-163.500000, -31.374477) " /> <path vectorEffect="non-scaling-stroke" d="M55,20.5507812 C64.9114583,23.7174479 72.4322917,24.4316406 77.5625,22.6933594 C80.9058665,21.5605182 84.4875825,19.6520737 88.3076478,16.968026" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M131.097026,20.5507813 C141.008484,23.7174479 148.529317,24.4316406 153.659526,22.6933594 C156.777906,21.6367506 160.103638,19.9054119 163.636719,17.4993433" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(147.366872, 20.558378) scale(-1, 1) translate(-147.366872, -20.558378) " /> <path vectorEffect="non-scaling-stroke" d="M84.5,46.5 L84.5,93.039829 C92.6305082,87.3590953 100.816968,84.5 109.041016,84.5 C117.314418,84.5 125.804054,87.3935525 134.5,93.1438332 L134.5,46.5 L84.5,46.5 Z" className="slds-illustration__stroke-primary" strokeWidth="3" /> <path vectorEffect="non-scaling-stroke" d="M103.776999,7.00873899 C103.776999,5.89934308 104.675147,5 105.77074,5 L113.22926,5 C114.330373,5 115.223001,5.89019835 115.223001,7.00873899 L115.223001,17.2220302 C115.223001,18.3314261 114.324853,19.2307692 113.22926,19.2307692 L105.77074,19.2307692 C104.669627,19.2307692 103.776999,18.3405709 103.776999,17.2220302 L103.776999,7.00873899 Z M125.532059,10.3275794 C126.184145,9.43005925 127.439383,9.23039394 128.325736,9.87436727 L134.359806,14.2583751 C135.250625,14.9055931 135.449531,16.1504526 134.792069,17.055371 L128.788847,25.3180972 C128.136761,26.2156173 126.881523,26.4152826 125.995169,25.7713093 L119.9611,21.3873014 C119.070281,20.7400834 118.871375,19.495224 119.528837,18.5903056 L125.532059,10.3275794 Z M144.700426,47.3699966 C145.755525,47.7128188 146.333307,48.8449212 145.994751,49.8868919 L143.689941,56.9803657 C143.349679,58.0275864 142.227212,58.6014401 141.163417,58.255792 L131.45,55.0997115 C130.394902,54.7568893 129.817119,53.6247869 130.155676,52.5828161 L132.460485,45.4893424 C132.800747,44.4421217 133.923214,43.8682679 134.987009,44.213916 L144.700426,47.3699966 Z M134.792069,66.944629 C135.444156,67.8421492 135.246159,69.0976515 134.359806,69.7416249 L128.325736,74.1256327 C127.434917,74.7728507 126.18952,74.577339 125.532059,73.6724206 L119.528837,65.4096944 C118.87675,64.5121743 119.074747,63.2566719 119.9611,62.6126986 L125.995169,58.2286907 C126.885989,57.5814727 128.131386,57.7769844 128.788847,58.6819028 L134.792069,66.944629 Z M115.223001,76.991261 C115.223001,78.1006569 114.324853,79 113.22926,79 L105.77074,79 C104.669627,79 103.776999,78.1098017 103.776999,76.991261 L103.776999,66.7779698 C103.776999,65.6685739 104.675147,64.7692308 105.77074,64.7692308 L113.22926,64.7692308 C114.330373,64.7692308 115.223001,65.6594291 115.223001,66.7779698 L115.223001,76.991261 Z M93.4679414,73.6724206 C92.8158549,74.5699408 91.5606168,74.7696061 90.6742635,74.1256327 L84.6401943,69.7416249 C83.7493752,69.0944069 83.550469,67.8495474 84.2079307,66.944629 L90.2111527,58.6819028 C90.8632393,57.7843827 92.1184774,57.5847174 93.0048306,58.2286907 L99.0388998,62.6126986 C99.929719,63.2599166 100.128625,64.504776 99.4711634,65.4096944 L93.4679414,73.6724206 Z M77.836583,58.255792 C76.7814848,58.5986142 75.6486155,58.0223364 75.3100587,56.9803657 L73.0052493,49.8868919 C72.6649867,48.8396712 73.2357783,47.7156446 74.2995736,47.3699966 L84.0129908,44.213916 C85.068089,43.8710938 86.2009583,44.4473716 86.5395152,45.4893424 L88.8443245,52.5828161 C89.1845871,53.6300369 88.6137956,54.7540634 87.5500002,55.0997115 L77.836583,58.255792 Z M84.2079307,17.055371 C83.5558442,16.1578508 83.7538411,14.9023485 84.6401943,14.2583751 L90.6742635,9.87436727 C91.5650827,9.22714927 92.8104798,9.42266101 93.4679414,10.3275794 L99.4711634,18.5903056 C100.12325,19.4878257 99.9252531,20.7433281 99.0388998,21.3873014 L93.0048306,25.7713093 C92.1140115,26.4185273 90.8686144,26.2230156 90.2111527,25.3180972 L84.2079307,17.055371 Z" className="slds-illustration__fill-primary" fillRule="nonzero" /> </g> </g> <g transform="translate(103.000000, 23.000000)"> <g className="slds-illustration__fill-secondary" fillRule="nonzero"> <circle vectorEffect="non-scaling-stroke" cx="31" cy="31" r="31" /> </g> <g> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-primary" strokeWidth="3" cx="31" cy="31" r="31" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-primary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" cx="31" cy="30" r="23" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-primary" fillRule="nonzero" cx="31" cy="30" r="3" /> </g> </g> <g transform="translate(0.000000, 22.000000)"> <g> <g className="slds-illustration__fill-secondary" fillRule="nonzero" > <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> </g> <g> <circle vectorEffect="non-scaling-stroke" fill="#FFFFFF" fillRule="nonzero" cx="65" cy="56" r="43" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="54" /> </g> </g> </g> <g transform="translate(148.000000, 22.000000)"> <g> <g className="slds-illustration__fill-secondary" fillRule="nonzero" > <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> </g> <g> <circle vectorEffect="non-scaling-stroke" fill="#FFFFFF" fillRule="nonzero" cx="55" cy="56" r="43" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="60" /> <circle vectorEffect="non-scaling-stroke" cx="60" cy="60" r="54" /> <circle vectorEffect="non-scaling-stroke" cx="55" cy="56" r="43" /> </g> </g> </g> <g transform="translate(22.000000, 35.000000)"> <g transform="translate(40.000000, 22.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M24.6226413,28.2707573 C27.2649309,26.4709845 29,23.4381158 29,20 C29,14.4771525 24.5228475,10 19,10 C13.4771525,10 9,14.4771525 9,20 C9,21.1159581 9.18279805,22.1892214 9.52008458,23.1914804 C9.59659653,23.4188384 10.0738012,23.2971506 10.2177734,23.5126953 L14.5229492,19.4978027 L23.6455078,27.7736816 C23.8033584,27.7324896 24.5305477,28.3334861 24.6226413,28.2707573 Z" /> <path vectorEffect="non-scaling-stroke" d="M19,5 L19,0" /> <path vectorEffect="non-scaling-stroke" d="M29,8 L32,5" /> <path vectorEffect="non-scaling-stroke" d="M6,8 L9,5" transform="translate(7.500000, 6.500000) scale(-1, 1) translate(-7.500000, -6.500000) " /> <path vectorEffect="non-scaling-stroke" d="M0.268066406,16 L4,15.190918" transform="translate(2.134033, 15.595459) scale(-1, 1) translate(-2.134033, -15.595459) " /> <path vectorEffect="non-scaling-stroke" d="M33,27.3928223 L35.8232422,26" transform="translate(34.411621, 26.696411) scale(-1, 1) translate(-34.411621, -26.696411) " /> <path vectorEffect="non-scaling-stroke" d="M34,16 L37.1923828,15.5" /> </g> <g transform="translate(0.000000, 20.000000)"> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="2.23382827 36.4979154 27.5441176 12.630137 54.5441176 38.0547945" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="46.2058824 29.3150685 54.5441176 21.369863 79.5588235 44.4109589" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="18 22.3581403 22.0777325 26.4358729 26.5136054 22 31.8099032 27.2962978 36.8048689 22.3013321" /> <path vectorEffect="non-scaling-stroke" d="M10,49.5 L40.467127,49.5 C45.4799736,49.452073 49.8720125,51.3877039 53.6432438,55.3068925 C56.5105697,58.2867127 58.7859812,60.4693761 61.3859837,61.9015207" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M16.1416016,56.5 L29.467127,56.5 C34.4799736,56.452073 38.8720125,58.3877039 42.6432438,62.3068925 C43.9365169,63.6509048 45.1093737,64.8327473 46.24591,65.8566992" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M57.3560837,52.5 L62.4577349,52.5 C67.1738216,52.8333333 71.0280793,54.5912623 74.0205078,57.7737868" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(65.688296, 55.136893) scale(-1, 1) translate(-65.688296, -55.136893) " /> <path vectorEffect="non-scaling-stroke" d="M75.431889,40.8586258 L78.6583065,30.6107577 C78.7412336,30.3473612 79.0219844,30.201062 79.2853809,30.2839892 C79.4426889,30.3335157 79.5654567,30.4574278 79.6135218,30.6151885 L82.2712656,39.3385187 L80.1520303,43.6858877 L75.431889,40.8586258 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M30.6450195,48.3579102 L34.6583065,35.6107577 C34.7412336,35.3473612 35.0219844,35.201062 35.2853809,35.2839892 C35.4426889,35.3335157 35.5654567,35.4574278 35.6135218,35.6151885 L39.6594238,48.8947754 L30.6450195,48.3579102 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M40.5285645,48.376709 L41.7195421,44.0439451 C41.7927327,43.7776787 42.0679168,43.6211599 42.3341831,43.6943504 C42.5028528,43.7407138 42.6350287,43.8718528 42.6827191,44.040152 L44.3288574,49.8493652 L40.5285645,48.376709 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M73.5285645,38.376709 L74.734305,33.990238 C74.8074955,33.7239717 75.0826797,33.5674528 75.348946,33.6406434 C75.5147706,33.6862248 75.6455328,33.8138274 75.6951557,33.9784878 L77.7275391,40.7224121 L73.5285645,38.376709 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M5.3125,31.9401855 L6.80436412,25.9138591 C6.87072218,25.6458083 7.14181411,25.4823041 7.40986489,25.5486621 C7.58930763,25.5930846 7.72959854,25.7328902 7.77464257,25.9121779 L8.83349609,30.126709 L5.3125,31.9401855 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M15.5001622,14.5 C15.5001622,14.5 20,13.4137992 20,8.99988155 C20,6.2031981 17.6924547,3.90358306 14.8210822,4.00888362 C13.6988175,1.64169381 11.2942608,0 8.5,0 C7.87206409,0 7.263639,0.0827569633 6.68496284,0.237959459 C4.91943359,2.29541016 1.51464844,9.68054199 0.918701172,14.5 L15.5001622,14.5 Z" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <circle vectorEffect="non-scaling-stroke" cx="43" cy="43" r="43" /> </g> </g> <g transform="translate(203.000000, 78.000000) scale(-1, 1) translate(-203.000000, -78.000000) translate(160.000000, 35.000000)"> <path vectorEffect="non-scaling-stroke" d="M12.3974609,72.5 L73.3320312,72.5" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="6.74609186 65.6737535 29.3529963 42 51.75 64.5616438" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="47 57.4716981 55.027027 50 76.3833681 69.6690977" /> <path vectorEffect="non-scaling-stroke" d="M19.1152344,78.5 L40.467127,78.5 C44.8477663,78.8333333 48.9852977,80.8487757 52.8797213,84.5463271" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M19.9233398,78.5 L29.467127,78.5 C35.6069623,78.838623 39.9990012,81.1075872 42.6432438,85.3068925" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M43.7287344,54.8586258 L46.9551519,44.6107577 C47.0380791,44.3473612 47.3188298,44.201062 47.5822263,44.2839892 C47.7395343,44.3335157 47.8623022,44.4574278 47.9103672,44.6151885 L50.568111,53.3385187 L48.4488757,57.6858877 C46.9555661,58.0561254 45.8998536,58.0561254 45.2817383,57.6858877 C44.6636229,57.3156501 44.145955,56.3732294 43.7287344,54.8586258 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M17.1318359,72.3432617 L21.918806,58.5703532 C22.0094635,58.3095164 22.2944059,58.1715588 22.5552427,58.2622164 C22.7094229,58.3158039 22.8277399,58.4412756 22.8721933,58.5983331 L26.9082031,72.8579102 L17.1318359,72.3432617 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M25.9219678,73.0686331 L27.9551519,66.6107577 C28.0380791,66.3473612 28.3188298,66.201062 28.5822263,66.2839892 C28.7395343,66.3335157 28.8623022,66.4574278 28.9103672,66.6151885 L30.8834788,73.0913974 L25.9219678,73.0686331 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M66.4790039,62.9724121 L67.970868,56.9460857 C68.0372261,56.6780349 68.308318,56.5145306 68.5763688,56.5808887 C68.7558115,56.6253112 68.8961024,56.7651167 68.9411465,56.9444045 L70,61.1589355 L66.4790039,62.9724121 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" transform="translate(68.239502, 58.986206) scale(-1, 1) translate(-68.239502, -58.986206) " /> <path vectorEffect="non-scaling-stroke" d="M41.4790039,55.9724121 L42.970868,49.9460857 C43.0372261,49.6780349 43.308318,49.5145306 43.5763688,49.5808887 C43.7558115,49.6253112 43.8961024,49.7651167 43.9411465,49.9444045 L45,54.1589355 L41.4790039,55.9724121 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" transform="translate(43.239502, 51.986206) scale(-1, 1) translate(-43.239502, -51.986206) " /> <g transform="translate(16.000000, 22.000000)" className="slds-illustration__stroke-secondary" strokeLinecap="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M65.3045171,27 C65.3045171,27 70,26.3719277 70,21.6427302 C70,18.6462837 67.5921266,16.1824104 64.5959119,16.2952325 C63.4248531,13.7589577 60.9157504,12 58,12 C54.1143516,12 50.9446627,15.1181522 50.7188435,19.0504886 C48.2832835,18.5281315 46,20.431448 46,22.9819366 C46,26.333284 48.8136559,26.8898431 49.8207578,26.9817886 L65.3045171,27 Z" transform="translate(58.000000, 19.500000) scale(-1, 1) translate(-58.000000, -19.500000) " /> <path vectorEffect="non-scaling-stroke" d="M16.0870976,12 C16.0870976,12 20,11.4975422 20,7.71418419 C20,5.31702695 17.9934388,3.34592834 15.4965932,3.43618596 C14.5207109,1.40716612 12.429792,0 10,0 C6.7619597,0 4.12055229,2.49452176 3.93236959,5.64039088 C1.90273622,5.22250518 0,6.74515842 0,8.7855493 C0,11.4666272 2.34471322,11.9118744 3.18396481,11.9854309 L16.0870976,12 Z" transform="translate(10.000000, 6.000000) scale(-1, 1) translate(-10.000000, -6.000000) " /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <circle vectorEffect="non-scaling-stroke" cx="43" cy="43" r="43" /> </g> </g> </g> </g> </g> </svg> ); export const Research = props => ( <svg className="slds-illustration__svg" viewBox="0 0 493 266" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" > <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd"> <g transform="translate(-54.000000, -75.000000)"> <g> <g transform="translate(245.500000, 236.500000) scale(-1, 1) translate(-245.500000, -236.500000) translate(124.500000, 187.000000)"> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="0.5 97 97 0 168 69" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="119.917969 23.5 105.449217 23.5 91.1448389 37.1793777 81.8465031 27.8810419 73.1896465 36.5378985 68.1055212 31.4537731" /> <polyline vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" points="145.5 46 168 25 241.5 99" /> <path vectorEffect="non-scaling-stroke" d="M149.072948,27.0372884 L155.148556,47 L150.514767,44.0361328 L143.5,38.2738261 L147.165427,27.0187879 C147.336449,26.4936498 147.900798,26.2065817 148.425936,26.3776034 C148.736361,26.4786994 148.977892,26.7249613 149.072948,27.0372884 Z" className="slds-illustration__fill-secondary" transform="translate(149.324278, 36.617027) scale(-1, 1) translate(-149.324278, -36.617027) " /> </g> <g transform="translate(56.000000, 271.000000)"> <g transform="translate(130.339768, 0.275260)" /> <path vectorEffect="non-scaling-stroke" d="M210.962142,26.4644491 C208.225735,20.0143094 201.944776,15.5029106 194.633892,15.5029106 C192.619663,15.5029106 190.683612,15.8453541 188.878328,16.4764392 C185.451481,11.1704266 179.567406,7.66985447 172.883789,7.66985447 C166.491267,7.66985447 160.830159,10.8721423 157.350851,15.7935668 C155.958996,14.968161 154.342316,14.4956341 152.617761,14.4956341 C151.108314,14.4956341 149.68151,14.8576334 148.415767,15.5014039 C144.997533,6.58722215 136.50983,0.275259875 126.580456,0.275259875 C117.463284,0.275259875 109.561578,5.59684366 105.68373,13.3681823 C103.391203,12.266973 100.831486,11.6515593 98.1312741,11.6515593 C89.4373504,11.6515593 82.1998844,18.0312998 80.6476214,26.4644491 L210.962142,26.4644491 Z" className="slds-illustration__fill-secondary" /> <path vectorEffect="non-scaling-stroke" d="M0,25 L250,25" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> </g> <path vectorEffect="non-scaling-stroke" d="M92.3840606,286.007966 C93.0385344,286.409807 93.137697,286.964909 92.840209,287.490106 C92.433642,288.21342 90.745893,288.576011 88.7388402,287.525617 C88.7328904,288.273229 88.7090913,289.112423 88.65951,290.091794 C88.6297612,290.652502 88.237077,291.983251 88.5980291,292.323414 C89.4706608,293.145787 89.7483163,293.818637 89.549991,294.680259 C89.440912,295.156862 88.7527229,295.508239 87.9138066,295.721309 C87.221651,295.936247 86.3728184,296.080162 85.5041532,295.951199 L85.50217,295.951199 C83.2888588,295.781117 82.4122606,295.360586 82.4558921,294.455976 C82.4598587,294.330751 82.4836578,294.194312 82.5253061,294.042921 C82.7037989,293.413058 82.8604759,292.728993 82.8584926,292.237439 C82.8565094,292.072964 82.8406434,291.929049 82.7970118,291.816907 C82.7573468,291.704766 82.5709209,291.338436 82.2912821,291.145926 C82.2218682,291.0992 82.1465046,291.06182 82.0651912,291.04126 C81.8212509,290.981451 81.5316959,291.08051 81.2183418,291.519732 C81.1370284,291.631873 81.0497652,291.801955 81.0219997,291.98512 C80.9942342,292.168285 81.0219997,292.364533 81.1786768,292.529007 C81.2679232,292.624328 81.337337,292.732731 81.3908849,292.848611 C81.4424495,292.964491 81.4781481,293.087847 81.4959974,293.21681 C81.5971433,293.98685 81.039849,294.91015 79.8082484,295.166207 C79.2668201,295.27648 78.7630736,295.351241 78.2950257,295.386752 C76.890882,295.491418 75.8179417,295.250313 75.1059537,294.6597 C74.6279895,294.267204 75.0246403,292.594423 75.4312073,291.153402 C72.5158242,290.09927 71.9248145,288.019041 71.9248145,288.019041 C72.5812716,288.357335 73.3924224,289.116161 73.5153841,288.667594 C73.6383458,288.222765 69.0590129,285.46034 71.9704294,280.548533 C71.8276351,283.488515 73.2972262,283.92213 73.568932,283.952034 C73.8386545,283.983808 73.7692406,283.578228 73.6105803,282.939021 C74.5764249,283.21003 75.3141953,284.024926 75.8496738,284.6903 C75.8734729,284.59498 75.8853724,284.486576 75.9091714,284.393125 C75.8794226,283.963248 75.9726356,283.419361 76.1570782,282.838093 C76.492248,281.797044 77.1368055,280.653198 77.8963917,279.817742 C77.6921166,279.724291 77.5056907,279.628971 77.3609132,279.539257 C74.483212,277.726299 69.9455273,273.003263 75.1079369,266.637351 C75.3776594,266.306533 75.6672145,266.003751 75.9785854,265.725265 C75.4907048,259.992954 78.9812315,262.256348 80.5341193,263.527287 C83.0746674,263.007697 85.8611389,263.301135 88.1974119,264.216959 C89.9585412,263.046947 93.3003239,261.46388 92.2809314,267.089656 C92.2809314,267.089656 94.3930967,274.416249 89.1235914,278.329995 C88.2013784,279.015929 87.2573496,279.520567 86.3272036,279.881289 C86.3906677,279.980348 86.4223997,280.049502 86.4382658,280.094359 C86.4580983,280.116787 86.4759476,280.139215 86.4977634,280.163513 C88.0447013,280.475641 88.2826918,281.647522 88.2826918,281.647522 C88.2727755,281.912924 88.3164071,282.183933 88.3818545,282.550263 C88.5246487,282.752118 88.667443,282.955842 88.8142038,283.176387 C88.9133665,283.32404 89.0541775,283.49786 89.198955,283.673549 C89.9327589,284.039878 90.8212566,284.118378 90.8351394,284.120247 C90.9640509,284.109033 91.1187447,284.138937 91.2040246,284.155758 C91.6125749,284.232388 92.4356252,284.217436 92.5804027,284.897763 C92.6458501,285.206152 92.4098429,285.374365 92.2531659,285.529494 C92.1183046,285.660326 92.2214338,285.908907 92.3840606,286.007966 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <path vectorEffect="non-scaling-stroke" d="M113.258395,232.870346 C115.028317,231.952627 118.784118,232.271536 119.951297,232.577668 C120.313745,232.26174 121.282887,231.567456 122.047518,232.381243 C122.930485,233.322395 121.308514,234.915114 121.308514,234.915114 L121.293271,234.892789 C121.572951,236.186669 121.722287,237.810764 121.842426,239.16667 C122.030426,241.288467 123.137541,244.212839 123.517852,245.168008 C123.529666,245.151316 123.54159,245.13465 123.553625,245.118012 C123.553625,245.118012 131.272861,250.561306 132.90909,253.383961 C134.253961,255.703666 133.470489,257.036973 132.308607,258.771527 C131.35636,260.192607 132.674582,259.900031 133.310597,260.18982 C134.209546,260.600819 134.817136,264.634178 131.224893,265.424132 C129.409578,265.823329 127.704963,264.973356 126.396716,263.767792 C126.559329,264.331306 126.730635,264.91036 126.911072,265.505282 C128.328306,270.177669 129.270828,277.888419 130.964056,283.920523 C131.953498,287.458937 134,289.272768 134,291.414716 C134,294.273272 130.734981,295.6973 126.007189,295.161813 C123.314859,294.857321 122.292298,293.662974 121.842426,290.343742 C121.344255,286.683269 115.985815,285.743541 113.286585,285.633294 C108.936906,285.454798 103.270732,287.989174 103.044416,290.665297 C102.865019,292.811183 103.143774,295.084378 98.8796534,295.804923 C93.8137677,296.661964 91,294.531828 91,292.593313 C91,291.439653 92.4130937,287.804116 94.3257381,283.416535 C97.3989409,276.352832 101.75828,267.33355 103.608825,263.549704 C105.053183,260.595771 106.045675,257.130015 106.854035,254.018581 C105.168042,252.891778 103.23089,251.176607 101.43118,248.413466 C100.667969,247.234065 99.3749042,243.222792 99.0756598,239.575824 C98.3261761,236.053347 98.9150562,232.270092 102.692674,232.008002 C104.991914,231.844197 105.17448,234.214792 104.555401,237.312685 C104.547165,237.32972 104.547165,237.345446 104.547165,237.362482 C104.442842,240.417129 104.744831,242.339552 104.854646,242.664543 C105.571185,243.872773 107.097606,244.850365 108.316547,245.525245 C108.711611,245.584795 109.101051,245.605322 109.465197,245.606795 C110.451644,243.073517 111.041532,237.997926 111.8607,235.140389 C111.480704,234.700203 110.593532,233.51622 111.310049,232.769822 C111.996591,232.054305 112.829741,232.530536 113.258395,232.870346 Z M123.725746,251.519917 C123.852786,252.563048 124.035751,253.760907 124.294057,255.128083 C124.484578,254.689069 124.722377,254.208447 125.015749,253.675143 C125.334194,253.089531 124.602368,252.300247 123.725746,251.519917 Z" className="slds-illustration__fill-secondary" fillRule="nonzero" /> <g transform="translate(216.000000, 255.000000)"> <g transform="translate(0.293436, 0.054545)"> <path vectorEffect="non-scaling-stroke" d="M165.428708,41.9454545 L0.0995432562,41.9454545 C0.0336614956,41.2089487 0,40.4630069 0,39.7090909 C0,26.2132599 10.7866531,15.2727273 24.0926641,15.2727273 C27.7492016,15.2727273 31.215485,16.0989227 34.3199502,17.5772977 C39.5712028,7.14424616 50.271428,0 62.6175975,0 C76.0636257,0 87.5573893,8.47383452 92.1862485,20.441159 C93.9002755,19.5768947 95.8324059,19.0909091 97.8764479,19.0909091 C100.211783,19.0909091 102.401037,19.7252784 104.285841,20.8333889 C108.997403,14.2263569 116.663488,9.92727273 125.320028,9.92727273 C138.043441,9.92727273 148.627152,19.2146805 150.834755,31.4671412 C151.487388,31.3631046 152.156394,31.3090909 152.837838,31.3090909 C159.117096,31.3090909 164.340238,35.8953699 165.428708,41.9454545 Z" className="slds-illustration__fill-secondary" /> <path vectorEffect="non-scaling-stroke" d="M32.7065637,39.9454545 L173.706564,39.9454545" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> <path vectorEffect="non-scaling-stroke" d="M182.706564,39.9454545 L193.706564,39.9454545" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> </g> </g> <g transform="translate(351.000000, 255.000000)"> <g transform="translate(0.293436, 0.054545)"> <path vectorEffect="non-scaling-stroke" d="M165.428708,41.9454545 L0.0995432562,41.9454545 C0.0336614956,41.2089487 0,40.4630069 0,39.7090909 C0,26.2132599 10.7866531,15.2727273 24.0926641,15.2727273 C27.7492016,15.2727273 31.215485,16.0989227 34.3199502,17.5772977 C39.5712028,7.14424616 50.271428,0 62.6175975,0 C76.0636257,0 87.5573893,8.47383452 92.1862485,20.441159 C93.9002755,19.5768947 95.8324059,19.0909091 97.8764479,19.0909091 C100.211783,19.0909091 102.401037,19.7252784 104.285841,20.8333889 C108.997403,14.2263569 116.663488,9.92727273 125.320028,9.92727273 C138.043441,9.92727273 148.627152,19.2146805 150.834755,31.4671412 C151.487388,31.3631046 152.156394,31.3090909 152.837838,31.3090909 C159.117096,31.3090909 164.340238,35.8953699 165.428708,41.9454545 Z" className="slds-illustration__fill-secondary" /> <path vectorEffect="non-scaling-stroke" d="M32.7065637,40.4454545 L173.706564,40.4454545" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> <path vectorEffect="non-scaling-stroke" d="M179.706564,40.4454545 L193.706564,40.4454545" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" /> </g> </g> <g transform="translate(470.500000, 233.500000)"> <g className="slds-illustration__fill-secondary"> <path vectorEffect="non-scaling-stroke" d="M18.9209988,1.95433401 L33.259296,51.443436 C33.5666778,52.5043744 32.9557995,53.613617 31.8948612,53.9209988 C31.7139843,53.9734036 31.5266126,54 31.3382972,54 L2.6617028,54 C1.5571333,54 0.661702805,53.1045695 0.661702805,52 C0.661702805,51.8116846 0.688299176,51.6243129 0.74070397,51.443436 L15.0790012,1.95433401 C15.386383,0.893395645 16.4956256,0.282517358 17.556564,0.589899164 C18.2152102,0.780726338 18.7301717,1.29568777 18.9209988,1.95433401 Z" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeWidth="3" > <polygon vectorEffect="non-scaling-stroke" strokeLinejoin="round" points="17 0.323943662 34 54 -1.81721305e-12 54" /> <path vectorEffect="non-scaling-stroke" d="M17,4.6953125 C17,43.0456294 17,62.6471919 17,63.5 C17,62.6471919 17,43.0456294 17,4.6953125 Z" /> <path vectorEffect="non-scaling-stroke" d="M17,29.3239437 C22.3333333,35.7851611 25,39.1184944 25,39.3239437 C25,39.1184944 22.3333333,35.7851611 17,29.3239437 Z" strokeLinejoin="round" transform="translate(21.000000, 34.323944) scale(-1, 1) translate(-21.000000, -34.323944) " /> </g> </g> <g transform="translate(428.000000, 200.500000)"> <g transform="translate(1.000000, 0.000000)" className="slds-illustration__fill-secondary" > <path vectorEffect="non-scaling-stroke" d="M25.6478873,0 L50.879042,84.4273253 C51.1953215,85.4856452 50.5937789,86.5999782 49.535459,86.9162577 C49.3496374,86.9717906 49.1567264,87 48.9627843,87 L2.33299037,87 C1.22842087,87 0.332990367,86.1045695 0.332990367,85 C0.332990367,84.8060578 0.361199757,84.6131469 0.416732643,84.4273253 L25.6478873,0 Z" /> </g> <g className="slds-illustration__stroke-primary" strokeLinecap="round" strokeWidth="3" > <polygon vectorEffect="non-scaling-stroke" strokeLinejoin="round" points="26.5 0 52.5 87 0.5 87" /> <path vectorEffect="non-scaling-stroke" d="M26.5,3.58642578 C26.5,64.0261034 26.5,94.9972948 26.5,96.5 C26.5,94.9972948 26.5,64.0261034 26.5,3.58642578 Z" /> <path vectorEffect="non-scaling-stroke" d="M15.6478873,42 C22.9812207,49.078692 26.6478873,52.7453587 26.6478873,53 C26.6478873,52.7453587 22.9812207,49.078692 15.6478873,42 Z" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M27.6478873,68 C36.9812207,57.078692 41.6478873,51.7453587 41.6478873,52 C41.6478873,51.7453587 36.9812207,57.078692 27.6478873,68 Z" strokeLinejoin="round" /> </g> </g> <g transform="translate(322.000000, 244.500000)"> <g transform="translate(25.000000, 0.000000)" className="slds-illustration__fill-secondary" > <path vectorEffect="non-scaling-stroke" d="M2.01464844,13.4511719 L0.18359375,22.2475586 L0.18359375,49.0366211 L65.9321289,49.0366211 L62.9897461,54.4458008 L95.7871094,54.4458008 L95.199707,29.3144531 L89.3999023,17.3056641 L75.6298828,10.543457 C59.2139757,10.1238607 43.9452582,9.9140625 29.8237305,9.9140625 C15.7022027,9.9140625 6.43250868,11.093099 2.01464844,13.4511719 Z" /> <rect x="27.5" y="0" width="27" height="10" rx="2" /> </g> <g transform="translate(24.000000, 9.000000)" fill="#FFFFFF"> <polygon vectorEffect="non-scaling-stroke" points="0.634277344 40.8232422 67.1601562 40.8232422 64.1865234 45.4521484 96.6953125 46.4760742 93.1474609 54.6992188 84.7587891 57.7099609 11.0742187 58.3500977 0.634277344 57.7099609" /> <circle vectorEffect="non-scaling-stroke" cx="66" cy="59.5" r="11" /> <path vectorEffect="non-scaling-stroke" d="M1.52783203,11.3217773 C4.92236328,6.82128906 8.36539714,4.55810547 11.8569336,4.53222656 C15.3484701,4.50634766 35.8100628,4.50634766 73.241712,4.53222656 C83.0900108,5.16178385 90.4536947,10.2570801 95.3327637,19.8181152 C100.211833,29.3791504 99.1593424,26.0000814 92.175293,9.6809082 C88.4861654,6.10766602 86.5785319,4.27368164 86.4523926,4.17895508 C86.3262533,4.08422852 82.7312012,2.83650716 75.6672363,0.435791016 L58.2929688,0.435791016 L11.5412598,0.435791016 L4.86254883,2.60107422 L1.52783203,6.31982422 L1.52783203,11.3217773 Z" /> </g> <g className="slds-illustration__stroke-primary" strokeWidth="3"> <path vectorEffect="non-scaling-stroke" d="M108.5,67 C115.127417,67 120.5,61.627417 120.5,55 L120.5,34 C120.5,20.745166 109.754834,10 96.5,10 L36.5,10 C29.872583,10 24.5,15.372583 24.5,22 L24.5,67 L79.1014187,67 C79.0345454,67.4904531 79,67.9911923 79,68.5 C79,74.5751322 83.9248678,79.5 90,79.5 C96.0751322,79.5 101,74.5751322 101,68.5 C101,67.9911923 100.965455,67.4904531 100.898581,67 L108.5,67 Z" strokeLinecap="round" strokeLinejoin="round" /> <path vectorEffect="non-scaling-stroke" d="M54.5,0 L77.5,0 C78.6045695,-2.02906125e-16 79.5,0.8954305 79.5,2 L79.5,10 L52.5,10 L52.5,2 C52.5,0.8954305 53.3954305,2.02906125e-16 54.5,0 Z" /> <rect x="38.5" y="24" width="24" height="43" rx="1" /> <rect x="75.5" y="24" width="30" height="15" rx="1" /> <polyline vectorEffect="non-scaling-stroke" points="25 49 91.5 49 86.9943799 55 120.5 55" /> <path vectorEffect="non-scaling-stroke" d="M105.004883,67 L0,67" /> <path vectorEffect="non-scaling-stroke" d="M11,55.0403226 L11,80.5241935" strokeLinecap="round" /> </g> </g> <g transform="translate(145.000000, 258.000000)"> <g transform="translate(53.410421, 34.819165) rotate(-25.000000) translate(-53.410421, -34.819165) translate(15.410421, 22.319165)" fill="#FFFFFF" > <path vectorEffect="non-scaling-stroke" d="M0.947441167,4.84215335 L74.9474412,0.947416509 C75.4989626,0.918389067 75.9695904,1.34195411 75.9986178,1.89347551 C75.9995391,1.91097997 76,1.92850564 76,1.94603434 L76,23.838003 C76,24.3902878 75.5522847,24.838003 75,24.838003 C74.9824713,24.838003 74.9649456,24.8375421 74.9474412,24.8366208 L0.947441167,20.941884 C0.416316461,20.9139301 -2.42221946e-12,20.475126 -2.4222846e-12,19.9432662 L-2.42650344e-12,5.84077118 C-2.42656858e-12,5.30891135 0.416316461,4.87010728 0.947441167,4.84215335 Z" /> </g> <g transform="translate(50.802425, 34.576672) rotate(-25.000000) translate(-50.802425, -34.576672) translate(33.802425, 22.576672)" className="slds-illustration__fill-secondary" > <path vectorEffect="non-scaling-stroke" d="M0.883158752,3.78811765 L32.8831588,0.0234117638 C33.4316607,-0.0411178754 33.928621,0.351219188 33.9931506,0.899721121 C33.997713,0.938501075 34,0.977514963 34,1.01656237 L34,22.767475 C34,23.3197597 33.5522847,23.767475 33,23.767475 C32.9609526,23.767475 32.9219387,23.7651879 32.8831588,23.7606256 L0.883158752,19.9959197 C0.379545837,19.9366711 -1.96527987e-12,19.5098553 -1.96354044e-12,19.0027691 L-1.96420658e-12,4.78126825 C-1.96426868e-12,4.2741821 0.379545837,3.84736622 0.883158752,3.78811765 Z" /> </g> <g transform="translate(49.453154, 35.788691) rotate(-25.000000) translate(-49.453154, -35.788691) translate(2.953154, 18.788691)" className="slds-illustration__stroke-primary" strokeLinecap="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M15.9474412,8.84215335 L89.9474412,4.94741651 C90.4989626,4.91838907 90.9695904,5.34195411 90.9986178,5.89347551 C90.9995391,5.91097997 91,5.92850564 91,5.94603434 L91,27.838003 C91,28.3902878 90.5522847,28.838003 90,28.838003 C89.9824713,28.838003 89.9649456,28.8375421 89.9474412,28.8366208 L15.9474412,24.941884 C15.4163165,24.9139301 15,24.475126 15,23.9432662 L15,9.84077118 C15,9.30891135 15.4163165,8.87010728 15.9474412,8.84215335 Z" strokeLinejoin="round" /> <rect fill="#FFFFFF" strokeLinejoin="round" x="2.93185165" y="16.5176381" width="12" height="2" rx="1" /> <path vectorEffect="non-scaling-stroke" d="M91,0.540322581 L91,33.9603207" /> <path vectorEffect="non-scaling-stroke" d="M2.2607777,8.57427115 L2.2607777,25.9942712" /> </g> <g transform="translate(41.000000, 45.000000)" className="slds-illustration__stroke-primary" strokeLinecap="round" strokeLinejoin="round" strokeWidth="3" > <path vectorEffect="non-scaling-stroke" d="M13.5,0.575195312 L13.5,11.8151951" /> <path vectorEffect="non-scaling-stroke" d="M13.5,12.5751953 L0,35.8151951" /> <path vectorEffect="non-scaling-stroke" d="M28,12.5751953 L13.5,35.8151951" transform="translate(20.750000, 24.195195) scale(-1, 1) translate(-20.750000, -24.195195) " /> <path vectorEffect="non-scaling-stroke" d="M5,12.5 L21,12.5" /> </g> </g> <g transform="translate(114.000000, 76.000000)"> <g> <path vectorEffect="non-scaling-stroke" d="M210.699691,46.7204576 C212.020514,61.0736985 220.69299,74.3442509 234.663351,80.8587375 C255.612995,90.6277168 280.542968,81.5047909 290.346004,60.4821122 C300.14904,39.4594335 291.112929,14.4978627 270.163285,4.72888342 C257.35563,-1.2434243 243.06031,-0.154804852 231.643264,6.39706158 C235.558035,6.27525724 239.557475,7.0438216 243.346578,8.8107095 C256.315405,14.8581729 261.909188,30.3105738 255.840642,43.324613 C249.772096,56.3386522 234.339255,61.9861778 221.370428,55.9387144 C216.862351,53.8365632 213.245413,50.597996 210.699691,46.7204576 Z" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-secondary" cx="136.5" cy="76.5" r="2.5" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-secondary" cx="2.5" cy="86.5" r="2.5" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-secondary" cx="340.5" cy="82.5" r="2.5" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-secondary" cx="268.5" cy="146.5" r="2.5" /> <circle vectorEffect="non-scaling-stroke" className="slds-illustration__fill-secondary" cx="188.5" cy="112.5" r="2.5" /> <polygon vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(303.000000, 93.000000) rotate(45.000000) translate(-303.000000, -93.000000) " points="303 94.5995812 300 96 301.400419 93 300 90 303 91.4004188 306 90 304.599581 93 306 96" /> <polygon vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(231.000000, 127.000000) rotate(45.000000) translate(-231.000000, -127.000000) " points="231 128.599581 228 130 229.400419 127 228 124 231 125.400419 234 124 232.599581 127 234 130" /> <polygon vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(63.000000, 121.000000) rotate(45.000000) translate(-63.000000, -121.000000) " points="63 122.599581 60 124 61.4004188 121 60 118 63 119.400419 66 118 64.5995812 121 66 124" /> <polygon vectorEffect="non-scaling-stroke" className="slds-illustration__stroke-secondary" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" transform="translate(155.000000, 51.000000) rotate(45.000000) translate(-155.000000, -51.000000) " points="155 52.5995812 152 54 153.400419 51 152 48 155 49.4004188 158 48 156.599581 51 158 54" /> </g> </g> </g> </g> </g> </svg> ); |