UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

7 lines (6 loc) 365 B
import { SystemCommonProps, SystemTypographyProps } from '../constants'; import { SxProp } from '../sx'; import { ComponentProps } from '../utils/types'; declare const Text: import("styled-components").StyledComponent<"span", any, SystemTypographyProps & SystemCommonProps & SxProp, never>; export type TextProps = ComponentProps<typeof Text>; export default Text;