UNPKG

@ducor/react

Version:

admin template ui interface

10 lines (9 loc) 440 B
import React, { ReactElement, ReactNode } from "react"; interface BreakpointProps { children?: ReactElement | ReactNode; } export type TW_BREAKPOINT = 'xs' | "sm" | "md" | "lg" | "xl" | "2xl"; export declare const BreakpointContext: React.Context<TW_BREAKPOINT | undefined>; export declare const breakpoints: Record<TW_BREAKPOINT, number>; declare const BreakpointProvider: React.FC<BreakpointProps>; export default BreakpointProvider;