users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/fleet.jsx
0ce4331f742863ec03c711c27b0a0dee7e8cc187
· 563 B · 13 lines
raw
| 1 | import Icon from "../icon.jsx"; |
| 2 | |
| 3 | export default function Fleet(props) { |
| 4 | return ( |
| 5 | <Icon {...props}> |
| 6 | <path |
| 7 | fillRule="evenodd" |
| 8 | clipRule="evenodd" |
| 9 | d="M12 24c6.6271 0 12-5.3729 12-12 0-1.2155-.357-3.152-1.0914-4.3243-1.183-2.0006-3.6319-3.4782-6.5748-3.8479C15.0039 2.2176 13.4855.6724 12 0 5.3729 0 0 5.3729 0 12s5.3729 12 12 12Zm1.3181-2.99c4.5426-.9696 7.7048-4.1922 7.063-7.1976-.6418-3.0051-4.8442-4.6553-9.3864-3.6852-4.5425.9697-7.7047 4.1923-7.063 7.1977.6419 3.005 4.8442 4.6548 9.3864 3.6851Z" |
| 10 | /> |
| 11 | </Icon> |
| 12 | ); |
| 13 | } |