@brizy/ui
Version:
React elements in Brizy style
14 lines (13 loc) • 352 B
TypeScript
import { Color, FCC } from "../types";
export interface Props {
strong?: boolean;
underline?: boolean;
href?: string;
target?: "_blank" | "_self" | "_parent" | "_top";
color?: Color;
hoverColor?: Color;
italic?: boolean;
ellipsis?: boolean;
onClick?: VoidFunction;
}
export declare const TypographyLink: FCC<Props>;