mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-08 02:33:02 +00:00
10 lines
278 B
TypeScript
10 lines
278 B
TypeScript
import React from 'react';
|
|
export interface GithubProps extends React.SVGProps<SVGSVGElement> {
|
|
size?: number | string;
|
|
className?: string;
|
|
}
|
|
export declare const Github: {
|
|
({ size, className, ...props }: GithubProps): React.JSX.Element;
|
|
displayName: string;
|
|
};
|