cdbreact
Version:
Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps
25 lines (24 loc) • 670 B
TypeScript
import React from "react";
import PropTypes from "prop-types";
interface Props {
className?: string;
fluid?: boolean;
size?: string;
tag?: [Function, string];
children?: React.ReactNode;
}
declare const Container: {
(props: Props): JSX.Element;
propTypes: {
className: PropTypes.Requireable<string>;
fluid: PropTypes.Requireable<boolean>;
size: PropTypes.Requireable<string>;
tag: PropTypes.Requireable<string | ((...args: any[]) => any)>;
};
defaultProps: {
tag: string;
fluid: boolean;
};
};
export default Container;
export { Container as CDBContainer };