UNPKG

github-automated-repos

Version:

The library, ReactJS, that gives you the power to control / automate your GitHub data, your projects on the portfolio / website, in your own GitHub in one place!

15 lines (14 loc) 545 B
import React from 'react'; type PropsStackIcons = { itemTopics: string; className?: string; style?: React.CSSProperties; }; /** * @param {string} itemTopics - Mandatory: ex.: item.topics.map(icon) ... itemTopics={icon} * @param {string} className - Optional: style className - TailwindCSS. * @param {React.CSSProperties} style - Optional: style CSS Properties. * @returns {ReactNode} - Return tag img(SVG). */ export declare function StackIcons({ itemTopics, className, style }: PropsStackIcons): JSX.Element | null; export {};