Live component development with hot reload

@fieldflow360/org-ui

Active tab
input

Input

Basic Input

<Input
  label="Name"
  placeholder="Enter full name"
  helperText="This will be shown in your profile"
/>

This will be shown in your profile

Sizes

Input sizes

<Input size={ComponentSizeEnum.SM} />
<Input />
<Input size={ComponentSizeEnum.LG} />

With icons and states

Input with icon

<Input
  label="Search"
  leftIcon={<SearchIcon />}
  placeholder="Search components"
/>