blob: 5e81483083d24e3195f994dcf3fe5f4818d11cff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import * as React from "react";
function IconTrack({
size = 24,
color = "currentColor",
stroke = 2,
...props
}) {
return <svg className="icon icon-tabler icon-tabler-track" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M4 15l11 -11m5 5l-11 11m-4 -8l7 7m-3.5 -10.5l7 7m-3.5 -10.5l7 7" /></svg>;
}
export default IconTrack;
|