16 lines
3.3 KiB
JavaScript
16 lines
3.3 KiB
JavaScript
import React from 'react';
|
|
|
|
const LBPackageIcon = (props) => (
|
|
<svg className={props.className} width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
<path fillRule="evenodd" clipRule="evenodd" d="M14.8002 12.95L10.0002 15.7059L5.20023 12.95L6.6119 12.3492L9.58523 14.0559C9.71357 14.13 9.8569 14.1667 10.0002 14.1667C10.1436 14.1667 10.2861 14.13 10.4152 14.0559L13.3886 12.3484L14.8002 12.95ZM9.58523 10.7225C9.71357 10.7967 9.8569 10.8334 10.0002 10.8334C10.1436 10.8334 10.2861 10.7967 10.4152 10.7225L13.3886 9.01503L14.8002 9.61669L10.0002 12.3725L5.20023 9.61669L6.6119 9.01503L9.58523 10.7225ZM10.0002 4.23919L14.8002 6.28335L10.0002 9.03919L5.20023 6.28335L10.0002 4.23919ZM17.4986 9.45669C17.4794 9.14086 17.2836 8.86336 16.9927 8.73919L15.1994 7.97586L17.0819 6.89503C17.3561 6.73836 17.5169 6.43919 17.4986 6.12336C17.4794 5.80836 17.2836 5.53003 16.9927 5.40586L10.3261 2.56669C10.1177 2.47753 9.8819 2.47753 9.67357 2.56669L3.0069 5.40586C2.71607 5.53003 2.52023 5.80836 2.5019 6.12336C2.48273 6.43919 2.6444 6.73836 2.91857 6.89503L4.80023 7.97586L3.0069 8.73919C2.71607 8.86336 2.52023 9.14086 2.5019 9.45669C2.48273 9.77253 2.6444 10.0717 2.91857 10.2284L4.80023 11.3092L3.0069 12.0725C2.71607 12.1967 2.52023 12.4742 2.5019 12.79C2.48273 13.1059 2.6444 13.405 2.91857 13.5617L9.58523 17.3892C9.71357 17.4634 9.8569 17.5 10.0002 17.5C10.1436 17.5 10.2861 17.4634 10.4152 17.3892L17.0819 13.5617C17.3561 13.405 17.5169 13.1059 17.4986 12.79C17.4794 12.475 17.2836 12.1967 16.9936 12.0725L15.2002 11.3084L17.0819 10.2284C17.3561 10.0717 17.5169 9.77253 17.4986 9.45669Z" />
|
|
<mask id="lbpackage" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="16" height="16">
|
|
<path fillRule="evenodd" clipRule="evenodd" d="M14.8002 12.95L10.0002 15.7059L5.20023 12.95L6.6119 12.3492L9.58523 14.0559C9.71357 14.13 9.8569 14.1667 10.0002 14.1667C10.1436 14.1667 10.2861 14.13 10.4152 14.0559L13.3886 12.3484L14.8002 12.95ZM9.58523 10.7225C9.71357 10.7967 9.8569 10.8334 10.0002 10.8334C10.1436 10.8334 10.2861 10.7967 10.4152 10.7225L13.3886 9.01503L14.8002 9.61669L10.0002 12.3725L5.20023 9.61669L6.6119 9.01503L9.58523 10.7225ZM10.0002 4.23919L14.8002 6.28335L10.0002 9.03919L5.20023 6.28335L10.0002 4.23919ZM17.4986 9.45669C17.4794 9.14086 17.2836 8.86336 16.9927 8.73919L15.1994 7.97586L17.0819 6.89503C17.3561 6.73836 17.5169 6.43919 17.4986 6.12336C17.4794 5.80836 17.2836 5.53003 16.9927 5.40586L10.3261 2.56669C10.1177 2.47753 9.8819 2.47753 9.67357 2.56669L3.0069 5.40586C2.71607 5.53003 2.52023 5.80836 2.5019 6.12336C2.48273 6.43919 2.6444 6.73836 2.91857 6.89503L4.80023 7.97586L3.0069 8.73919C2.71607 8.86336 2.52023 9.14086 2.5019 9.45669C2.48273 9.77253 2.6444 10.0717 2.91857 10.2284L4.80023 11.3092L3.0069 12.0725C2.71607 12.1967 2.52023 12.4742 2.5019 12.79C2.48273 13.1059 2.6444 13.405 2.91857 13.5617L9.58523 17.3892C9.71357 17.4634 9.8569 17.5 10.0002 17.5C10.1436 17.5 10.2861 17.4634 10.4152 17.3892L17.0819 13.5617C17.3561 13.405 17.5169 13.1059 17.4986 12.79C17.4794 12.475 17.2836 12.1967 16.9936 12.0725L15.2002 11.3084L17.0819 10.2284C17.3561 10.0717 17.5169 9.77253 17.4986 9.45669Z" />
|
|
</mask>
|
|
<g mask="url(#lbpackage)">
|
|
<rect width="20" height="20" />
|
|
</g>
|
|
</svg>
|
|
);
|
|
|
|
export default LBPackageIcon;
|