@edancerys/ts-react-components-lib
Version:
13 lines (12 loc) • 389 B
TypeScript
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>;