19 lines
738 B
TypeScript
19 lines
738 B
TypeScript
import React from "react";
|
|
import Svg from "../../../components/Svg/Svg";
|
|
import { SvgProps } from "../../../components/Svg/types";
|
|
|
|
const Icon: React.FC<SvgProps> = (props) => {
|
|
return (
|
|
<Svg viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
id="盒子标签"
|
|
fill="#999"
|
|
d="M140.5,133.243v7.174a.287.287,0,0,1-.385.261l-2.476-1.015a.739.739,0,0,0-.591,0l-2.476,1.015a.282.282,0,0,1-.385-.261v-7.174h-6.85v14.074a.551.551,0,0,0,.55.549h18.9a.551.551,0,0,0,.55-.549V133.243Zm6.809-.782a.521.521,0,0,0-.11-.233l-3.37-4.156a.578.578,0,0,0-.426-.206H131.34a.565.565,0,0,0-.426.192l-3.453,4.17a.522.522,0,0,0-.11.233Z"
|
|
transform="translate(-127.337 -127.866)"
|
|
/>
|
|
</Svg>
|
|
);
|
|
};
|
|
|
|
export default Icon;
|