v1.2.0
Theme

Gemini Input

A Gemini-style animated gradient input built entirely with CSS. Features a rotating gradient border animation with an inner textarea and optional prefix/suffix slots.

Installation

npm install @duskmoon-dev/el-art-gemini-input

Usage

import '@duskmoon-dev/el-art-gemini-input/register';
<el-dm-art-gemini-input></el-dm-art-gemini-input>

Live Demo

Default

Custom Placeholder

Sizes

Properties

PropertyTypeDefaultDescription
size'sm' | 'md' | 'lg''md'Size of the input
placeholderstring'Ask me anything...'Placeholder text for the textarea

Slots

SlotDescription
prefixContent before the textarea (default: attach button)
suffixContent after the textarea (default: send button)

Custom Slots

<el-dm-art-gemini-input placeholder="Search...">
  <span slot="prefix">🔍</span>
  <button slot="suffix" type="button">Go</button>
</el-dm-art-gemini-input>