alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
9 lines (8 loc) • 460 B
TypeScript
import { FunctionComponent, PropsWithChildren } from 'react';
import '../global.css';
export interface UIStoryProps extends PropsWithChildren<{}> {
fullWidth?: boolean;
fullHeight?: boolean;
}
export declare function UIStory({ fullWidth, fullHeight, children }: UIStoryProps): import("react/jsx-runtime").JSX.Element;
export declare function uiDecorator(props?: UIStoryProps): ((Story: FunctionComponent) => import("react/jsx-runtime").JSX.Element)[];