Skip to content
Harness Design System

Input

The Input component is used to handle user input, along with providing options for styling via Variants, Themes, and Sizes. Also provides options for adding icons, captions, and error text for the field.

Usage

import { Input } from '@harnessio/ui/components'
//...
return (
<Input
variant={"extended"}
size={"md"}
value={"input with value"}
theme={"danger"}
caption={"dummy caption"}
inputIconName={"plus"}
rightElement={<Button>Right element</Button>}
/>
)

Anatomy

Coming soon.

<Input />

API Reference

PropRequiredDefaultType
varianttruedefaultdefault | extended
sizetruesmsm | md
themetruedefaultdefault | danger
labeltruestring
captiontrueReactNode
errortruestring
optionaltrueboolean
classNametruestring
wrapperClassNametruestring
inputIconNametrueIconProps['name']
rightElementtrueReactNode