@primer/react
Version:
An implementation of GitHub's Primer Design System using React
11 lines (10 loc) • 305 B
TypeScript
import React from "react";
//#region src/TopicTag/TopicTagGroup.d.ts
type TopicTagGroupProps = React.HTMLAttributes<HTMLElement>;
declare function TopicTagGroup({
children,
className,
...rest
}: TopicTagGroupProps): React.JSX.Element;
//#endregion
export { TopicTagGroup, type TopicTagGroupProps };