blob: 79d92e15371f23a97aa0954485fe84fdf93c36b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import Icon from "../icon.jsx";
export default function Postman(props) {
return (
<Icon {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M23.9 13.52A12 12 0 1 0 .1 10.47a12 12 0 0 0 23.8 3.05Zm-15.12-.48 1.81-.39-.88.89a.12.12 0 0 0-.03.04l-3.79 3.79a.12.12 0 0 0-.06.03L4.8 18.43c-.06.05-.08.12-.1.2 0 .17.11.33.3.34l2.45.17c.05 0 .09-.03.11-.07a.1.1 0 0 0 0-.1l.04-.02a.38.38 0 0 0 .18-.41l-.2-.85a24.2 24.2 0 0 0 5.14-3.3l.08-.07a.11.11 0 0 0 .04-.04c2.6-2.46 4.1-4.14 4.13-5.47 0-.21-.04-.42-.12-.61a2.06 2.06 0 0 0 1.83-.11l.03-.01.03-.02c.15-.08.28-.19.4-.3.8-.82.8-2.12-.01-2.92l-.04-.03a2.06 2.06 0 0 0-3.5 1.5c0 .3.07.58.2.84-.85-.45-2 .06-6.05 4.1v.02l-.02.01L8.5 12.5a.33.33 0 0 0-.1.23c0 .18.13.33.31.33l.04-.01h.03Z"
/>
</Icon>
);
}
|