Skip to content

Commit

Permalink
fix: config provider: export children prop type
Browse files Browse the repository at this point in the history
  • Loading branch information
dkilgore-eightfold committed Sep 12, 2022
1 parent 4e9f352 commit 0d6b991
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/ConfigProvider/ConfigProvider.types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React from 'react';
import {
IRegisterFont,
IRegisterTheme,
Expand Down Expand Up @@ -42,6 +43,10 @@ export interface IConfigContext {
}

export interface ConfigProviderProps {
/**
* The child component renderer.
*/
children?: React.ReactNode;
/**
* Used by the disabled context provider to disable components.
*/
Expand Down

0 comments on commit 0d6b991

Please sign in to comment.