flexery
Version:
Flex modifier utilities for working with React
18 lines (14 loc) • 394 B
TypeScript
declare function Flexery({ children, style, ...props }: {
[x: string]: any;
children: any;
style: any;
}): JSX.Element;
declare function withFlexery(Component: any): ({ style, ...props }: {
[x: string]: any;
style: any;
}) => JSX.Element;
declare function modsToStyle(mods: any): {
style: {};
sanitizedProps: any;
};
export { Flexery, modsToStyle, withFlexery };