Skip to content

Commit

Permalink
Merge pull request #47 from maracuja-juice/patch-1
Browse files Browse the repository at this point in the history
add typings for GithubCorner component
  • Loading branch information
skratchdot committed Apr 14, 2018
2 parents bf630cf + f7ed5ce commit 08d2c3f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/lib/GithubCorner.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import * as React from 'react';
import { CSSProperties } from 'react';

interface GithubCornerProps {
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> {
}

0 comments on commit 08d2c3f

Please sign in to comment.