@fluentui/react-northstar
Version:
A themable React component library.
12 lines (11 loc) • 417 B
TypeScript
import * as React from 'react';
import { Props, ShorthandValue } from 'src/types';
export interface ImplementsWrapperPropOptions {
wrapppedComponentSelector: any;
WrapperComponent?: any;
}
declare type WrapperProps = {
wrapper?: ShorthandValue<Props>;
};
export declare const implementsWrapperProp: (Component: React.ComponentType<WrapperProps>, options: ImplementsWrapperPropOptions) => void;
export {};