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.

6 lines 468 B
import { type ForwardRefExoticComponent, type ComponentType } from 'react'; import type { Configuration } from "../types/configuration"; export type RocketStyleHOC = ({ inversed, attrs, priorityAttrs, }: Pick<Configuration, 'inversed' | 'attrs' | 'priorityAttrs'>) => (WrappedComponent: ComponentType<any>) => ForwardRefExoticComponent<any>; declare const rocketStyleHOC: RocketStyleHOC; export default rocketStyleHOC; //# sourceMappingURL=rocketstyleAttrsHoc.d.ts.map