react-sleek
Version:
React Sleek Component Library
18 lines (17 loc) • 380 B
TypeScript
import * as React from 'react';
export declare enum ESectionAlign {
Left = 0,
Center = 1,
Right = 2
}
interface IProps {
title: string;
fill?: boolean;
last?: boolean;
align?: ESectionAlign;
}
export default class Section extends React.PureComponent<IProps> {
protected static defaultProps: Partial<IProps>;
render(): JSX.Element;
}
export {};