@uiw/react-shields
Version:
Shields.io for react component, Quality metadata badges for open source projects.
19 lines (18 loc) • 557 B
TypeScript
import React from 'react';
import { type InternalProps } from '../common/Base';
export interface SizeProps extends InternalProps {
/**
* Github Size
*
* /github/languages/code-size/:user/:repo
* /github/repo-size/:user/:repo
* /github/size/:user/:repo/:path*
*/
type?: 'languages' | 'repo-size' | 'size';
/**
* GitHub file size in bytes
* build/phaser-craft.min.js
*/
path?: string;
}
export declare const Size: React.ForwardRefExoticComponent<SizeProps & React.RefAttributes<HTMLImageElement>>;