@vowel.to/client / index / VowelProviderProps
Interface: VowelProviderProps
Defined in: lib/vowel/components/VowelProviderSimple.tsx:77
Props for VowelProvider
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
client | Vowel | null | Vowel client instance (can be null if not yet initialized) | lib/vowel/components/VowelProviderSimple.tsx:79 |
children | ReactNode | Children to render | lib/vowel/components/VowelProviderSimple.tsx:82 |
floatingCursor? | false | FloatingCursorConfig | Optional: Floating cursor configuration for React mode When enabled, cursor will be rendered as a native React component Default { enabled: true } (enabled by default) Set to false to disable: Examples <VowelProvider client={client} floatingCursor=\{false\}> <VowelAgent /> </VowelProvider> Or customize appearance: <VowelProvider client={client} floatingCursor=\{\{ enabled: true, appearance: { cursorColor: '#2563eb' } }} > <VowelAgent /> </VowelProvider> | lib/vowel/components/VowelProviderSimple.tsx:112 |