UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

7 lines 267 B
export interface SlotMarker { /** Marker to denote the custom child slot for a component */ __SLOT__?: symbol; } export type WithSlotMarker<T> = T & SlotMarker; export type FCWithSlotMarker<P> = WithSlotMarker<React.FC<P>>; //# sourceMappingURL=Slots.d.ts.map