UNPKG
fannypack-v5
Version:
latest (5.0.0-rc.7)
5.0.0-rc.7
5.0.0-rc.0
An accessible, composable, and friendly React UI Kit
github.com/fannypackui
fannypackui/fannypack
fannypack-v5
/
ts
/
Provider
/
ColorModeContext.d.ts
9 lines
(8 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
*
as
React
from
'react'
;
export
declare
const
ColorModeContext
:
React
.
Context
<
any
>;
declare
type
Props
= {
children
:
React
.
ReactNode
;
mode
:
string
; };
export
declare
function
Provider
(
props
:
Props
):
JSX
.
Element
;
export
{};