Link

DaisyUI

Link adds the missing underline style to links.

Basic Link
I am a simple link
Hover Style

Only shows underline on hover.

I have hover style
Colors

Different semantic colors.

Code Example
use rsxui::components::{Link, LinkStyle, Color};
use rsx_macros::rsx;
let html = rsx! {
    <Link href="https://example.com" color=Color::Primary>
        "Click me"
    </Link>
};