I found myself looking for an icon representing "shipment booking". I combined the MDI truck and phone icons, and added a diagonal line for clarity.
I have:
Comment: If there's something in the guidelines that I've missed then please point it out and I will try to correct it.

I'm not sure why the wheels on the truck are filled in the preview. They look correct when I open the svg in chrome.
I'm not sure this really fits in with our project as it is pretty specific and the icon is a bit too detailed.
No worries. I can use the svg directly instead.
It would be nice if there was a simple way to add local extensions to MDI. That way I wouldn't need two different ways to show icons.
If you're using React, you can use @mdi/react in conjunction with @mdi/js. This gives you the ability to use our icons directly, but then also provide your own combined path data.
import Icon from '@mdi/react';
import { mdiChevronLeft } from '@mdi/js';
...
return (
<>
<Icon path={mdiChevronLeft} size={1} />
<Icon path='M...MY PATH DATA...Z' size={1} />
</>
);
I still think this issue could be used to track the intent of the icon, though: "shipment booking". I have some ideas I can mess with tonight. Renaming the issue and dropping the Contribution label for now.
Wouldn't truck-check work?
Gonna close this out for the reasons stated above. Thank you for your contribution!
Most helpful comment
I still think this issue could be used to track the intent of the icon, though: "shipment booking". I have some ideas I can mess with tonight. Renaming the issue and dropping the
Contributionlabel for now.