Documentation Index
Fetch the complete documentation index at: https://docs.devreadykit.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Link component provides styled links with hover effects, external link indicators, and disabled states.
Basic Usage
import { Link } from '@peppermint-design/devreadykit-custom';
export default function LinkBasic() {
return (
<Link href="/about">
Learn more
</Link>
);
}
External Link
import { Link } from '@peppermint-design/devreadykit-custom';
<Link href="https://example.com">
Visit external site
</Link>
Hide Icon
import { Link } from '@peppermint-design/devreadykit-custom';
<Link href="/page" hideIcon>
Internal link without icon
</Link>
Disabled
import { Link } from '@peppermint-design/devreadykit-custom';
<Link href="/page" disabled>
Disabled link
</Link>
Props