import { gloss } from 'gloss' import { HTMLProps } from 'react' import { ViewProps } from './View/types' import { View } from './View/View' export type ImageProps = ViewProps & HTMLProps export const Image = gloss(View, { tagName: 'img', display: 'block', })