react-floating-profile
Version:
React component to display your github profile <p align="left"> <a href="https://www.npmjs.com/package/react-floating-profile"><img src="https://flat.badgen.net/npm/v/react-floating-profile" alt="react-floating-profile version" /></a> <a href="http
10 lines (9 loc) • 442 B
TypeScript
interface IconPropTypes {
avatar_url: string;
size?: "small" | "medium" | "large";
onClickIcon?: () => void;
className?: "circle-shape" | "rect-shape";
}
export declare function ProfileIcon({ avatar_url, size, onClickIcon }: IconPropTypes): import("react/jsx-runtime").JSX.Element;
export declare function OrganizationIcon({ avatar_url, size, onClickIcon }: IconPropTypes): import("react/jsx-runtime").JSX.Element;
export {};