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
Text
A component for rendering text influenced by React Native.
1import { Text } from '@cerberus/react'
Usage
Hello, world!
This is small textAPI
export type Headings = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'export type TextElements = 'p' | 'strong' | 'em' | 'small' | 'span'
export interface TextProps extends BoxProps { as?: TextElements | Headings}
define function Text(props: TextProps): ReactNode
Props
The Text
component accepts the following props along with the props from the Box
component.
Name | Default | Description |
---|---|---|
as | The text-based element to render the component as. |
1import { Text } from '@cerberus/react'
Usage
Hello, world!
This is small textAPI
export type Headings = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'export type TextElements = 'p' | 'strong' | 'em' | 'small' | 'span'
export interface TextProps extends BoxProps { as?: TextElements | Headings}
define function Text(props: TextProps): ReactNode
Props
The Text
component accepts the following props along with the props from the Box
component.
Name | Default | Description |
---|---|---|
as | The text-based element to render the component as. |