Files
lara-bermite/resources/js/components/Img.tsx
2023-10-01 23:19:08 +02:00

9 lines
221 B
TypeScript

import React, {FC} from "react";
const Img: FC<{src: string, alt: string, width: string}> = ({src, alt, width, ...props}) => {
return <img src={'/' + src} alt={alt} width={width} {...props} />
}
export default Img