-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
-----------------------------------------------------------------------------
-- |
-- Module      :  Miso.Lynx.Element.Image
-- Copyright   :  (C) 2016-2025 David M. Johnson
-- License     :  BSD3-style (see the file LICENSE)
-- Maintainer  :  David M. Johnson <code@dmj.io>
-- Stability   :  experimental
-- Portability :  non-portable
--
-- [/<image/>](https://lynxjs.org/api/elements/built-in/image.html)
--
-- Used to display different types of images, including web images,
-- static resources, and locally stored images.
--
----------------------------------------------------------------------------
module Miso.Lynx.Element.Image
  ( module Miso.Lynx.Element.Image.Event
  , module Miso.Lynx.Element.Image.Method
  , module Miso.Lynx.Element.Image.Property
  ) where
-----------------------------------------------------------------------------
import Miso.Lynx.Element.Image.Event
import Miso.Lynx.Element.Image.Method
import Miso.Lynx.Element.Image.Property
-----------------------------------------------------------------------------