1 2 3 4 5 6 7 8 9 10 11
use leptos::prelude::*; use super::ColorPicker; #[component] pub fn BasicExample() -> impl IntoView { view! { <div data-rs-color-picker-example=""> <ColorPicker value="#3b82f6" /> </div> } }