logistics-icons
Version:
SVG-based React logistics icon components by Ishan Vidanagama
37 lines (33 loc) • 925 B
Markdown
# logistics-icons-react
SVG-based React logistics icon library by Ishan Vidanagama
Javascript
# Import the necessary icon/icons from the library
```
import { FastDelivery } from "logistics-icons"
```
# Use it in your dev component
```
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<FastDelivery width='200px' height='200px' fill="#ffffff"/>
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
```
# Customization
You can customize the icon width, height and the color as mentioned in the above example and you can use title, titleId, viewBox props as well.