19 lines
620 B
TypeScript
19 lines
620 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="M190.666,238.866h-20v-2.8a1.331,1.331,0,0,1,1.25-1.4h17.5a1.331,1.331,0,0,1,1.25,1.4v2.8Zm0,1.4v11.2a1.331,1.331,0,0,1-1.25,1.4h-17.5a1.331,1.331,0,0,1-1.25-1.4v-11.2h20Zm-16.875,4.9a.7.7,0,0,0,0,1.4h5a.7.7,0,0,0,0-1.4Z"
|
|
transform="translate(-170.666 -234.667)"
|
|
/>
|
|
</Svg>
|
|
);
|
|
};
|
|
|
|
export default Icon;
|