1
This commit is contained in:
11
src/components/bs-icons/upload/icon.svg
Normal file
11
src/components/bs-icons/upload/icon.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Group 542">
|
||||
<g id="Group 417">
|
||||
<path id="Rectangle 186"
|
||||
d="M4 15L4 17.4C4 17.9601 4 18.2401 4.10899 18.454C4.20487 18.6422 4.35785 18.7951 4.54601 18.891C4.75992 19 5.03995 19 5.6 19L18.4 19C18.9601 19 19.2401 19 19.454 18.891C19.6422 18.7951 19.7951 18.6422 19.891 18.454C20 18.2401 20 17.9601 20 17.4L20 15"
|
||||
stroke="currentColor" stroke-width="2" />
|
||||
<path id="Vector 1" d="M12 14L12 6.5M8 9L12 5L16 9" stroke="currentColor" stroke-width="2"
|
||||
stroke-linejoin="round" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 685 B |
10
src/components/bs-icons/upload/index.tsx
Normal file
10
src/components/bs-icons/upload/index.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React, { forwardRef } from "react";
|
||||
import { ReactComponent as Upload } from "./icon.svg";
|
||||
|
||||
export const UploadIcon = forwardRef<
|
||||
SVGSVGElement & { className: any },
|
||||
React.PropsWithChildren<{ className?: string }>
|
||||
>(({ className, ...props }, ref) => {
|
||||
const _className = 'transition text-gray-950 ' + (className || '')
|
||||
return <Upload ref={ref} {...props} className={_className} />;
|
||||
});
|
||||
Reference in New Issue
Block a user