@zendeskgarden/react-forms
v9.4.0
Published
Components relating to form elements in the Garden Design System
Downloads
720,632
Maintainers
Readme
@zendeskgarden/react-forms
This package includes components relating to native form fields in the Garden Design System.
Installation
npm install @zendeskgarden/react-forms
# Peer Dependencies - Also Required
npm install react react-dom styled-components @zendeskgarden/react-theming
Usage
import { ThemeProvider } from '@zendeskgarden/react-theming';
import { Field, Label, Hint, Input, Message } from '@zendeskgarden/react-forms';
/**
* Place a `ThemeProvider` at the root of your React application
*/
<ThemeProvider>
<form>
<Field>
<Label>Example Text Input</Label>
<Hint>Hint text</Hint>
<Input placeholder="Accepts all native input props" />
<Message>Default message styling</Message>
</Field>
</form>
</ThemeProvider>;