1import React from 'react';
2
3export const QuickStartIcon = () => (
4  <svg
5    style={{ marginRight: 12, marginTop: 6, float: 'left' }}
6    width="18"
7    height="23"
8    viewBox="0 0 18 23"
9    fill="none"
10    xmlns="http://www.w3.org/2000/svg">
11    <path
12      d="M12.3953 1.65402L1.11071 11.5713L8.35515 13.5124L5.39339 21.3461L16.678 11.4289L9.43357 9.48772L12.3953 1.65402Z"
13      fill="#FFF5B1"
14      stroke="#F2C012"
15      strokeWidth="2"
16      strokeLinecap="round"
17      strokeLinejoin="round"
18    />
19  </svg>
20);
21