@primer/components
Version:
Primer react components
11 lines (10 loc) • 480 B
TypeScript
import { SystemCommonProps, SystemTypographyProps } from './constants';
import { SxProp } from './sx';
import { ComponentProps } from './utils/types';
declare const Link: import("styled-components").StyledComponent<"a", any, {
hoverColor?: string | undefined;
muted?: boolean | undefined;
underline?: boolean | undefined;
} & SystemCommonProps & SxProp & SystemTypographyProps, never>;
export declare type LinkProps = ComponentProps<typeof Link>;
export default Link;