UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

9 lines (8 loc) 460 B
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)[];