Skip to main content
Version: Next

Textarea

Overview

The Textarea component is an enhanced version of the standard HTML textarea with beautiful animations and interactive features. Built with Framer Motion, it provides various animation variants, auto-expanding capabilities, and interactive effects.

Preview

Installation

npx @mindfiredigital/ignix-ui add textarea

Usage

Import the component:

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

Basic Usage

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

return (
<AnimatedTextarea
placeholder="Enter your message"
variant="clean"
value={value}
onChange={setValue}
/>
);
}

Animation Variants