UNPKG

beyond-components

Version:
10 lines (9 loc) 284 B
/// <reference types="react" /> import { IBaseProps } from '../consts'; export interface IContentProps extends IBaseProps { reverse?: boolean; children?: any; style?: object; } declare const Content: (props: IContentProps) => JSX.Element; export default Content;