@primer/components
Version:
Primer react components
15 lines (14 loc) • 582 B
TypeScript
/// <reference types="react" />
import { SystemCommonProps, SystemTypographyProps } from './constants';
import { ComponentProps } from './utils/types';
declare const Base: import("styled-components").StyledComponent<"div", any, SystemTypographyProps & SystemCommonProps, never>;
export declare type BaseStylesProps = ComponentProps<typeof Base>;
declare function BaseStyles(props: BaseStylesProps): JSX.Element;
declare namespace BaseStyles {
var defaultProps: {
color: string;
fontFamily: string;
lineHeight: string;
};
}
export default BaseStyles;