wix-style-react
Version:
15 lines (12 loc) • 417 B
TypeScript
import * as React from 'react';
import { ScrollableContainerCommonProps } from '../../../common';
export interface ContentProps {
className?: string;
dataHook?: string;
content?: string | React.ReactNode;
hideTopScrollDivider?: boolean;
hideBottomScrollDivider?: boolean;
scrollProps?: ScrollableContainerCommonProps;
overflowY?: string;
}
export const Content: React.FunctionComponent<ContentProps>;