@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 337 B
TypeScript
import React, { AnchorHTMLAttributes } from 'react';
import { TextProps } from "../text";
export type AnchorProps = {
color?: string;
rel?: string;
} & TextProps & AnchorHTMLAttributes<HTMLAnchorElement>;
declare const Anchor: ({ color, styles, className, ...rest }: AnchorProps) => React.JSX.Element;
export { Anchor };