1
2
3
4
5
6
7
8
9
10
|
import Icon from "../icon.jsx";
export default function Warp(props) {
return (
<Icon {...props}>
<path d="M12.285,2.4 L21.345,2.4 C22.811,2.4 24,3.629 24,5.144 L24,15.798 C24,17.313 22.811,18.542 21.345,18.542 L8.379,18.542 L12.285,2.4 Z" />
<path d="M9.931,5.458 L2.633,5.458 C1.179,5.458 0,6.687 0,8.202 L0,18.856 C0,20.371 1.179,21.6 2.633,21.6 L11.616,21.6 L11.976,20.098 L6.42,20.098 L9.931,5.458 Z" />
</Icon>
);
}
|