6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import Image from 'next/image'
|
|
|
|
export function ChromeIcon(): JSX.Element {
|
|
return <Image src="/static/icons/chrome@2x.png" width="24" height="24" alt="" />
|
|
}
|