ship
design • interface • vector
General
react
import React from 'react';
export const Ship = (props) => (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
<path d="M 2 21 c 3 0 4 -1 7 -1 s 4 1 7 1 s 4 -1 6 -1" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M 19.38 20 A 11.6 11.6 0 0 0 21 14 l -9 -4 l -9 4 a 11.6 11.6 0 0 0 1.62 6" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M 12 10 V 4" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M 12 4 L 17 6 H 12" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
</svg>
);
export default Ship;