UNPKG

react-shields.io

Version:

Shields.io for react component, Quality metadata badges for open source projects.

15 lines (14 loc) 358 B
import Base, { BaseProps } from '../common/Base'; export interface LicenseProps extends BaseProps { /** * Github License * * `/github/license/:user/:repo` * GitHub: GitHub badge */ type?: 'license'; } export default class License extends Base<LicenseProps> { constructor(props: LicenseProps); getUrl: () => string; }