Files
lara-bermite/resources/js/components/Img.tsx
2024-03-06 09:42:12 +01:00

9 lines
220 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