import { SVGProps } from "react"; type logoprops = { width?: number; height?: number; } & React.SVGProps; const GractwoLogo = ({ width, height, ...props }: logoprops) => { return ( Gractwo Main Logo ); }; export default GractwoLogo;