mistui-kit
Version:
**👉 [Try MistUi Live](https://gilded-tanuki-0eb52b.netlify.app/) — interactive playground & docs**
9 lines (8 loc) • 338 B
TypeScript
declare const Link: import("react").ForwardRefExoticComponent<import("./types").BaseTypographyProps & {
children?: string;
href?: string;
size?: "auto" | "xs" | "sm" | "md" | "lg" | "xl";
isHover?: boolean;
navigate?: (href: string) => void;
} & import("react").RefAttributes<HTMLAnchorElement>>;
export default Link;