> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Input

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[localhost link]: http://localhost:3000/docs/5/app-studio/reference/gallery/input

[mintlify link]: https://doc.lucidworks.com/docs/5/app-studio/reference/gallery/input

[old doc.lw link]: https://doc.lucidworks.com/app-studio/4.2/1037

<LwTemplate />

## Standard

<img src="https://mintcdn.com/lucidworks/vACLe5BtgzmMoCXX/assets/images/app-studio/as-examples/gallery/input01.png?fit=max&auto=format&n=vACLe5BtgzmMoCXX&q=85&s=5fcabe6025169b2e403753352496d2a2" alt="Example" width="916" height="159" data-path="assets/images/app-studio/as-examples/gallery/input01.png" />

```html wrap  theme={"dark"}
<div styling="input">
    <input type="text" placeholder="Search...">
</div>
```

## Disabled

<img src="https://mintcdn.com/lucidworks/vACLe5BtgzmMoCXX/assets/images/app-studio/as-examples/gallery/input02.png?fit=max&auto=format&n=vACLe5BtgzmMoCXX&q=85&s=a095b6b4a53cb52f7cf9e897e00904f9" alt="Example" width="916" height="159" data-path="assets/images/app-studio/as-examples/gallery/input02.png" />

```html wrap  theme={"dark"}
<input type="text" placeholder="Search..." disabled="">
```

## Icon

<img src="https://mintcdn.com/lucidworks/vACLe5BtgzmMoCXX/assets/images/app-studio/as-examples/gallery/input03.png?fit=max&auto=format&n=vACLe5BtgzmMoCXX&q=85&s=ebdd2e8bb0886501adbe4b42f8f17f0e" alt="Example" width="916" height="159" data-path="assets/images/app-studio/as-examples/gallery/input03.png" />

```html wrap  theme={"dark"}
<div styling="icon input">
    <input type="text" placeholder="Search...">
    <i class="icon-search3 icon"></i>
</div>
```

## Size

<img src="https://mintcdn.com/lucidworks/vACLe5BtgzmMoCXX/assets/images/app-studio/as-examples/gallery/input04.png?fit=max&auto=format&n=vACLe5BtgzmMoCXX&q=85&s=d62ae2ec194a0e9b755f44e80db5e55e" alt="Example" width="916" height="597" data-path="assets/images/app-studio/as-examples/gallery/input04.png" />

```html wrap  theme={"dark"}
<input type="text" placeholder="Search extra small..." styling="xs">
<input type="text" placeholder="Search small..." styling="sm">
<input type="text" placeholder="Search medium..." styling="md">
<input type="text" placeholder="Search large..." styling="lg">
<input type="text" placeholder="Search extra large..." styling="xl">
```
