-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
-----------------------------------------------------------------------------
-- |
-- Module      :  Miso.Native.X.Element.Input
-- Copyright   :  (C) 2016-2026 David M. Johnson
-- License     :  BSD3-style (see the file LICENSE)
-- Maintainer  :  David M. Johnson <code@dmj.io>
-- Stability   :  experimental
-- Portability :  non-portable
--
-- [/<input/>](https://lynxjs.org/api/elements/built-in/input.html)
--
-- Single-line text input element.
--
----------------------------------------------------------------------------
module Miso.Native.X.Element.Input
  ( module Miso.Native.X.Element.Input.Event
  , module Miso.Native.X.Element.Input.Method
  , module Miso.Native.X.Element.Input.Property
  ) where
-----------------------------------------------------------------------------
import Miso.Native.X.Element.Input.Event
import Miso.Native.X.Element.Input.Method
import Miso.Native.X.Element.Input.Property
-----------------------------------------------------------------------------