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
Feature Flags
Feature Flags display or hide content in the UI.
1import { FeatureFlags, FeatureFlag } from '@cerberus/react'
Usage
API
export interface FeatureFlagsProviderValue { flags: Record<string, boolean>}
export interface FeatureFlagProps { // A unique key of the flags data passed into the provider. flag: string}
define function FeatureFlag(props: PropsWithChildren<FeatureFlagProps>): JSX.Element
Props
The FeatureFlag
component accepts the following props:
Name | Default | Description |
---|---|---|
flag | null | A unique key of the flags data passed into the provider. |
1import { FeatureFlags, FeatureFlag } from '@cerberus/react'
Usage
API
export interface FeatureFlagsProviderValue { flags: Record<string, boolean>}
export interface FeatureFlagProps { // A unique key of the flags data passed into the provider. flag: string}
define function FeatureFlag(props: PropsWithChildren<FeatureFlagProps>): JSX.Element
Props
The FeatureFlag
component accepts the following props:
Name | Default | Description |
---|---|---|
flag | null | A unique key of the flags data passed into the provider. |