25 lines
635 B
TypeScript
25 lines
635 B
TypeScript
const BusIcon = () => {
|
|
return (
|
|
<svg
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M3 10V16H17V10M3 10V2H17V10M3 10H17"
|
|
stroke="currentColor"
|
|
strokeWidth="1.25"
|
|
strokeLinecap="square"
|
|
/>
|
|
<circle cx="6" cy="13" r="1" fill="currentColor" />
|
|
<circle cx="14" cy="13" r="1" fill="currentColor" />
|
|
<rect x="4" y="15.5" width="3" height="3.5" fill="currentColor" />
|
|
<rect x="13" y="15.5" width="3" height="3.5" fill="currentColor" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default BusIcon;
|