UNPKG

@vitus-labs/rocketstyle

Version:

Rocketstyle is ultra powerful and extensible styling system for building React components blazingly fast, easily and make them easily extensible and reusable.

7 lines 408 B
import { type ComponentType, type ForwardRefExoticComponent } from 'react'; import type { PseudoProps } from "../types/pseudo"; type Props = PseudoProps & Record<string, any>; type HOC = (WrappedComponent: ComponentType<Props>) => ForwardRefExoticComponent<Props>; declare const RocketStyleProviderComponent: HOC; export default RocketStyleProviderComponent; //# sourceMappingURL=createLocalProvider.d.ts.map