UNPKG

@edancerys/ts-react-components-lib

Version:
13 lines (12 loc) 389 B
import React, { ReactNode, MouseEvent } from 'react'; export interface ContentWrapperProps { backgroundColor?: string; padding?: string; margin?: string; maxWidth?: string; minHeight?: string; className?: string; children?: ReactNode; onClick?: (event?: MouseEvent) => void; } export declare const ContentWrapper: React.FC<ContentWrapperProps>;