kael_ui 0.2.0

Professional shadcn-inspired UI component library for Kael. 100+ accessible components for building beautiful, performant desktop applications.
use std::path::Path;

fn main() {
    let cwd = std::env::current_dir().unwrap();
    println!("Current working directory: {:?}", cwd);

    // Test the paths
    let test_paths = vec![
        "crates/kael_ui/assets/icons/heart.svg",
        "assets/icons/heart.svg",
        "src/icons/heart.svg",
    ];

    for path in test_paths {
        let full_path = Path::new(path);
        let exists = full_path.exists();
        println!(
            "  Path: {}{}",
            path,
            if exists { "✓ EXISTS" } else { "✗ MISSING" }
        );
    }
}