UNPKG

grommet

Version:

focus on the essential experience

20 lines (14 loc) 482 B
import * as React from 'react'; import { BoxExtendedProps } from '../Box/index'; import { BackgroundObject } from '../../utils'; type PageBackground = BackgroundObject & { fill?: 'horizontal'; }; export interface PageContentProps { background?: string | PageBackground; } export interface PageContentExtendedProps extends PageContentProps, Omit<BoxExtendedProps, 'background'> {} declare const PageContent: React.FC<PageContentExtendedProps>; export { PageContent };