@uiw/react-shields
Version:
Shields.io for react component, Quality metadata badges for open source projects.
13 lines (12 loc) • 385 B
TypeScript
import React from 'react';
import { type InternalProps } from '../common/Base';
export interface LicenseProps extends InternalProps {
/**
* Github License
*
* `/github/license/:user/:repo`
* GitHub: GitHub badge
*/
type?: 'license';
}
export declare const License: React.ForwardRefExoticComponent<LicenseProps & React.RefAttributes<HTMLImageElement>>;