import React from 'react'; import '@uiw/github-corners'; export interface GitHubCornersProps extends React.AnchorHTMLAttributes { /** * The link to your project page. */ href?: string; /** * The width and height of the corner. * Default: `80` */ size?: number; /** * The background color of the corner. * Default: `#151513` */ bgColor?: string; /** * The Github logo color of the corner. * Default: `#fff` */ color?: string; /** * The position of corner. * Default: `right` */ position?: 'left' | 'right'; /** Is it displayed at the bottom? */ bottom?: boolean; /** * It is positioned relative to the initial containing block established. * Default: `false` */ fixed?: boolean; /** * Sets the z-order of a positioned element and its descendants or flex items. */ zIndex?: number; } export default function githubCorners(props: GitHubCornersProps): React.JSX.Element;