This commit is contained in:
zhangkai
2024-06-05 14:27:06 +08:00
commit b825dcd4d5
730 changed files with 100244 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<svg viewBox="-300 -350 1624 1624" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10603" width="28" height="28">
<path
d="M170.666667 938.666667h512v-85.333334H170.666667V341.333333H85.333333v512c0 47.061333 38.272 85.333333 85.333334 85.333334z"
p-id="10604" fill="currentColor"></path>
<path
d="M853.333333 85.333333H341.333333c-47.061333 0-85.333333 38.272-85.333333 85.333334v512c0 47.061333 38.272 85.333333 85.333333 85.333333h512c47.061333 0 85.333333-38.272 85.333334-85.333333V170.666667c0-47.061333-38.272-85.333333-85.333334-85.333334z m-85.333333 384h-128v128h-85.333333v-128h-128V384h128V256h85.333333v128h128v85.333333z"
p-id="10605" fill="currentColor"></path>
</svg>

After

Width:  |  Height:  |  Size: 730 B

View File

@@ -0,0 +1,10 @@
import React, { forwardRef } from "react";
import { ReactComponent as AddTo } from "./AddTo.svg";
export const AddToIcon = forwardRef<
SVGSVGElement & { className: any },
React.PropsWithChildren<{ className?: string }>
>(({ className, ...props }, ref) => {
const _className = 'transition text-gray-400 ' + (className || '')
return <AddTo ref={ref} {...props} className={_className} />;
});