@primer/react
Version:
An implementation of GitHub's Primer Design System using React
15 lines • 612 B
TypeScript
import type { HTMLAttributes } from 'react';
import type React from 'react';
import type { SxProp } from '../sx';
export type CounterLabelProps = React.PropsWithChildren<HTMLAttributes<HTMLSpanElement> & {
scheme?: 'primary' | 'secondary';
className?: string;
} & SxProp>;
declare const CounterLabel: React.ForwardRefExoticComponent<HTMLAttributes<HTMLSpanElement> & {
scheme?: "primary" | "secondary";
className?: string;
} & SxProp & {
children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLSpanElement>>;
export default CounterLabel;
//# sourceMappingURL=CounterLabel.d.ts.map