UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

8 lines (7 loc) 274 B
import type { PropsWithChildren } from 'react'; export interface UiProviderProps { primary?: string; secondary?: string; } declare function UiProvider({ children, primary, secondary, }: PropsWithChildren<UiProviderProps>): JSX.Element; export { UiProvider };