alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
9 lines (8 loc) • 353 B
TypeScript
import { HTMLProps, PropsWithChildren } from 'react';
type ViewportProps = PropsWithChildren<{
color?: string;
contain?: boolean;
attachToBody?: boolean;
} & HTMLProps<HTMLDivElement>>;
export declare function Viewport({ children, color, contain, attachToBody, ...props }: ViewportProps): import("react/jsx-runtime").JSX.Element;
export {};