UNPKG

alinea

Version:
9 lines (8 loc) 363 B
import { type HTMLProps, type 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 {};