first commit

This commit is contained in:
2026-01-26 10:14:10 +03:30
commit 9a995d5109
160 changed files with 34879 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
import React from "react";
interface SVGImageProps extends React.SVGProps<SVGSVGElement> {
src: React.FC<React.SVGProps<SVGSVGElement>> | any;
width?: string | number;
height?: string | number;
className?: string;
}
const SVGImage: React.FC<SVGImageProps> = ({
src: IconComponent,
width = "30px",
height = "30px",
className = "",
...props
}) => {
return (
<IconComponent
fill="currentColor"
width={width}
height={height}
className={`inline-block ${className}`}
{...props}
/>
);
};
export default SVGImage;