@primer/react
Version:
An implementation of GitHub's Primer Design System using React
10 lines • 441 B
TypeScript
import React from 'react';
import type { ForwardRefComponent as PolymorphicForwardRefComponent } from '../utils/polymorphic';
import type { ActionListItemProps } from './shared';
type ActionListSubItemProps = {
children?: React.ReactNode;
};
export declare const SubItem: React.FC<ActionListSubItemProps>;
export declare const Item: PolymorphicForwardRefComponent<"li", ActionListItemProps>;
export {};
//# sourceMappingURL=Item.d.ts.map