///
declare global {
interface HTMLElementTagNameMap {
'github-corners': GithubCorners;
}
namespace JSX {
interface IntrinsicElements {
'github-corners': Partial | {
style?: Partial | React.CSSProperties;
};
}
}
}
export declare class GithubCorners extends HTMLElement {
/** Sets the z-order of a positioned element and its descendants or flex items. */
'z-index'?: string;
height?: string | number;
width?: string | number;
href?: string;
color?: string;
fill?: string;
position?: string;
target?: string;
top?: string;
left?: string;
right?: string;
bottom?: string;
transform?: string;
private shadow;
static get observedAttributes(): string[];
constructor();
private setAttr;
private update;
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
}