UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

8 lines (7 loc) 240 B
/// <reference types="react" /> import { SxProp } from '../../sx'; export type CounterProps = { children: number; } & SxProp; declare const Counter: ({ children, sx: sxProp, ...props }: CounterProps) => JSX.Element; export { Counter };