IconChangelog.tsx17 lines · main
1// @ts-ignore
2import IconBase from '../../IconBase'
3
4const src = (
5 <path
6 d="M2.51764 2.98721C3.87588 1.50256 5.8292 0.571428 8 0.571428C12.1027 0.571428 15.4286 3.89731 15.4286 8C15.4286 12.1027 12.1027 15.4286 8 15.4286C3.89731 15.4286 0.571426 12.1027 0.571426 8C0.571426 7.09365 0.733741 6.22522 1.03089 5.42218C1.09155 5.25824 1.15783 5.09703 1.22949 4.93878M2.29352 1.15904L2.29352 2.62254C2.29352 2.93814 2.54936 3.19398 2.86496 3.19398L4.32846 3.19398M4 5.5H12M3 7.98383H13M4 10.5H12"
7 strokeMiterlimit="10"
8 strokeLinecap="round"
9 strokeLinejoin="round"
10 />
11)
12
13function IconChangelog(props: any) {
14 return <IconBase src={src} {...props} />
15}
16
17export default IconChangelog