Documentation
Components
Link

Link

Link is a simple wrapper around the native <a> HTML element, providing styling that integrates well with the Kuma UI ecosystem.

Import

import { Link } from "@kuma-ui/core";

Usage

const LinkExample = () => {
  return (
    <Link href="https://example.com" target="_blank">Visit example.com</Link>
  );
};

Props

Link accepts all the same props as a standard HTML a (opens in a new tab) element.