react-github-corner
Version:
Add a Github banner to your project page. A React version of: https://github.com/tholman/github-corners
17 lines (14 loc) • 460 B
TypeScript
import * as React from 'react';
import { CSSProperties, AnchorHTMLAttributes } from 'react';
interface GithubCornerProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
href?: string;
size?: number | string;
direction?: string;
octoColor?: string;
bannerColor?: string;
ariaLabel?: string;
className?: string;
svgStyle?: CSSProperties;
}
export default class GithubCorner extends React.Component<GithubCornerProps, any> {
}