TextInput

With Icons

TextInputs can contain Icons at their start, end, or both.

() => {
  const icon = <IconCloud />;

  return(
    <DemoLayout>
      <TextInput iconStart={icon} />
      <TextInput iconEnd={icon} />
      <TextInput iconStart={icon} iconEnd={icon} />
    </DemoLayout>
  );
}