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