@uiw/react-shields
Version:
Shields.io for react component, Quality metadata badges for open source projects.
10 lines (9 loc) • 350 B
TypeScript
import React from 'react';
import { InternalProps } from '../common/Base';
export interface ContainerProps extends InternalProps {
}
declare function Container(props: ContainerProps): (React.ReactElement<any, string | React.JSXElementConstructor<any>> | null)[];
declare namespace Container {
var displayName: string;
}
export default Container;