Overview
- Getting Started
- Loading States
- Forms
- Feature Flags
- Portal
- Show
- For
- Text
- Toggle
- Local Storage
Actions
- Button
- Icon Button
Communication
- Admonition
- Accordion
- Avatar
- Notifications
- Progress Indicators
- Tag
- Tooltip
Containment
- Confirm Modal
- Prompt Modal
- CTA Modal
- Modaldeprecated
- Dialog
- Table
Navigation
- Menu
- Tabs
Selection
- Drag & Drop
- Checkbox
- Date Picker
- Radio
- Rating
- Select
- Combobox
- Switch
Inputs
- Field
- Input
- Textarea
- Labeldeprecated
- Fieldset
- Field Messagedeprecated
- File Uploader
Hooks & Helpers
- split-props
- trap-focusdeprecated
- use-root-colors
- use-theme
- use-theme-context
- use-toggledeprecated
Label
Labels describe the purpose of a form element in a UI
1import { Field, Label } from '@cerberus/react'
Usage
1import { Field, Label } from '@cerberus/react'2
3function LabelBasicPreview() {4 return (5 <Field required>6 <Label htmlFor="first_name">First Name</Label>7 <Input id="first_name" placeholder="Type your first name" type="text" />8 </Field>9 )10}
Hidden
1import { Field, Label } from '@cerberus/react'2
3function LabelHiddenPreview() {4 return (5 <Field required>6 <Label htmlFor="global_search" hidden>7 Search anything8 </Label>9 <Input id="global_search" placeholder="Search anything" type="text" />10 </Field>11 )12}
Optional
1import { Field, Label } from '@cerberus/react'2
3function LabelOptionalPreview() {4 return (5 <Field>6 <Label htmlFor="preferred">Preferred Name</Label>7 <Input id="preferred" placeholder="i.e. Johnny" type="text" />8 </Field>9 )10}
Customizing
1import { Field, Label } from '@cerberus/react'2
3function LabelCustomPreview() {4 return (5 <Field required>6 <Label7 className={css({8 fontSize: '2rem',9 bgColor: 'black',10 color: 'yellow',11 })}12 htmlFor="global_search"13 >14 Killa Bees15 </Label>16 <input id="global_search" type="text" />17 </Field>18 )19}
API
export interface FieldProps { disabled?: boolean invalid?: boolean required?: boolean readOnly?: boolean}
define function Field(props: PropsWithChildren<FieldProps>): ReactNode
export interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> { htmlFor: string hidden?: boolean size?: 'sm' | 'md'}
define function Label(props: LabelProps): ReactNode
Props
The LabelProps
component accepts the following props:
Name | Default | Description |
---|---|---|
htmlFor | null | The name attribute of the Input the Label is associated with. |
hidden | false | Whether the Label content should be visually hidden. |
size | 'md' | The size of the Label. |
1import { Field, Label } from '@cerberus/react'
Usage
1import { Field, Label } from '@cerberus/react'2
3function LabelBasicPreview() {4 return (5 <Field required>6 <Label htmlFor="first_name">First Name</Label>7 <Input id="first_name" placeholder="Type your first name" type="text" />8 </Field>9 )10}
Hidden
1import { Field, Label } from '@cerberus/react'2
3function LabelHiddenPreview() {4 return (5 <Field required>6 <Label htmlFor="global_search" hidden>7 Search anything8 </Label>9 <Input id="global_search" placeholder="Search anything" type="text" />10 </Field>11 )12}
Optional
1import { Field, Label } from '@cerberus/react'2
3function LabelOptionalPreview() {4 return (5 <Field>6 <Label htmlFor="preferred">Preferred Name</Label>7 <Input id="preferred" placeholder="i.e. Johnny" type="text" />8 </Field>9 )10}
Customizing
1import { Field, Label } from '@cerberus/react'2
3function LabelCustomPreview() {4 return (5 <Field required>6 <Label7 className={css({8 fontSize: '2rem',9 bgColor: 'black',10 color: 'yellow',11 })}12 htmlFor="global_search"13 >14 Killa Bees15 </Label>16 <input id="global_search" type="text" />17 </Field>18 )19}
API
export interface FieldProps { disabled?: boolean invalid?: boolean required?: boolean readOnly?: boolean}
define function Field(props: PropsWithChildren<FieldProps>): ReactNode
export interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> { htmlFor: string hidden?: boolean size?: 'sm' | 'md'}
define function Label(props: LabelProps): ReactNode
Props
The LabelProps
component accepts the following props:
Name | Default | Description |
---|---|---|
htmlFor | null | The name attribute of the Input the Label is associated with. |
hidden | false | Whether the Label content should be visually hidden. |
size | 'md' | The size of the Label. |
1import { Field, Label } from '@cerberus/react'
Usage
1import { Field, Label } from '@cerberus/react'2
3function LabelBasicPreview() {4 return (5 <Field required>6 <Label htmlFor="first_name">First Name</Label>7 <Input id="first_name" placeholder="Type your first name" type="text" />8 </Field>9 )10}
Hidden
1import { Field, Label } from '@cerberus/react'2
3function LabelHiddenPreview() {4 return (5 <Field required>6 <Label htmlFor="global_search" hidden>7 Search anything8 </Label>9 <Input id="global_search" placeholder="Search anything" type="text" />10 </Field>11 )12}
Optional
1import { Field, Label } from '@cerberus/react'2
3function LabelOptionalPreview() {4 return (5 <Field>6 <Label htmlFor="preferred">Preferred Name</Label>7 <Input id="preferred" placeholder="i.e. Johnny" type="text" />8 </Field>9 )10}
Customizing
1import { Field, Label } from '@cerberus/react'2
3function LabelCustomPreview() {4 return (5 <Field required>6 <Label7 className={css({8 fontSize: '2rem',9 bgColor: 'black',10 color: 'yellow',11 })}12 htmlFor="global_search"13 >14 Killa Bees15 </Label>16 <input id="global_search" type="text" />17 </Field>18 )19}
API
export interface FieldProps { disabled?: boolean invalid?: boolean required?: boolean readOnly?: boolean}
define function Field(props: PropsWithChildren<FieldProps>): ReactNode
export interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> { htmlFor: string hidden?: boolean size?: 'sm' | 'md'}
define function Label(props: LabelProps): ReactNode
Props
The LabelProps
component accepts the following props:
Name | Default | Description |
---|---|---|
htmlFor | null | The name attribute of the Input the Label is associated with. |
hidden | false | Whether the Label content should be visually hidden. |
size | 'md' | The size of the Label. |
1import { Field, Label } from '@cerberus/react'
Usage
1import { Field, Label } from '@cerberus/react'2
3function LabelBasicPreview() {4 return (5 <Field required>6 <Label htmlFor="first_name">First Name</Label>7 <Input id="first_name" placeholder="Type your first name" type="text" />8 </Field>9 )10}
Hidden
1import { Field, Label } from '@cerberus/react'2
3function LabelHiddenPreview() {4 return (5 <Field required>6 <Label htmlFor="global_search" hidden>7 Search anything8 </Label>9 <Input id="global_search" placeholder="Search anything" type="text" />10 </Field>11 )12}
Optional
1import { Field, Label } from '@cerberus/react'2
3function LabelOptionalPreview() {4 return (5 <Field>6 <Label htmlFor="preferred">Preferred Name</Label>7 <Input id="preferred" placeholder="i.e. Johnny" type="text" />8 </Field>9 )10}
Customizing
1import { Field, Label } from '@cerberus/react'2
3function LabelCustomPreview() {4 return (5 <Field required>6 <Label7 className={css({8 fontSize: '2rem',9 bgColor: 'black',10 color: 'yellow',11 })}12 htmlFor="global_search"13 >14 Killa Bees15 </Label>16 <input id="global_search" type="text" />17 </Field>18 )19}
API
export interface FieldProps { disabled?: boolean invalid?: boolean required?: boolean readOnly?: boolean}
define function Field(props: PropsWithChildren<FieldProps>): ReactNode
export interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> { htmlFor: string hidden?: boolean size?: 'sm' | 'md'}
define function Label(props: LabelProps): ReactNode
Props
The LabelProps
component accepts the following props:
Name | Default | Description |
---|---|---|
htmlFor | null | The name attribute of the Input the Label is associated with. |
hidden | false | Whether the Label content should be visually hidden. |
size | 'md' | The size of the Label. |