@primer/react
Version:
An implementation of GitHub's Primer Design System using React
13 lines • 595 B
TypeScript
import React, { type CSSProperties, type PropsWithChildren } from 'react';
import type { SystemCommonProps, SystemTypographyProps } from './constants';
import type { SxProp } from './sx';
import 'focus-visible';
export type BaseStylesProps = PropsWithChildren & {
as?: React.ComponentType<any> | keyof JSX.IntrinsicElements;
className?: string;
style?: CSSProperties;
color?: string;
} & SystemTypographyProps & SystemCommonProps & SxProp;
declare function BaseStyles(props: BaseStylesProps): React.JSX.Element;
export default BaseStyles;
//# sourceMappingURL=BaseStyles.d.ts.map