Skip to main content
Version: 1.0.2

Input

Overview

The AnimatedInput component provides a rich collection of animated input fields with various effects and styles. Each variant offers unique animations for both the input field and its label, creating engaging user interactions.

Preview

Installation

npx @mindfiredigital/ignix-ui add input

Usage

Import the component:

import { AnimatedInput } from './components/ui';

Basic Usage

function BasicInput() {
const [value, setValue] = useState('');

return (
<AnimatedInput
placeholder="Enter your name"
variant="clean"
value={value}
onChange={(newValue) => setValue(newValue)}
/>
);
}

Variants