Some checks failed
Push Workflows / docs (push) Successful in 1m35s
Push Workflows / rustfmt (push) Successful in 11s
Push Workflows / clippy (push) Failing after 58s
Push Workflows / leptos-test (push) Successful in 3m4s
Push Workflows / test (push) Successful in 3m22s
Push Workflows / build (push) Successful in 4m43s
Push Workflows / docker-build (push) Failing after 14m42s
Push Workflows / nix-build (push) Successful in 17m22s
15 lines
279 B
Rust
15 lines
279 B
Rust
use leptos::prelude::*;
|
|
use leptos::text_prop::TextProp;
|
|
|
|
#[slot]
|
|
pub struct DashboardTile {
|
|
#[prop(into)]
|
|
image_path: TextProp,
|
|
#[prop(into)]
|
|
title: TextProp,
|
|
#[prop(into)]
|
|
link: TextProp,
|
|
#[prop(into, optional)]
|
|
description: Option<TextProp>,
|
|
}
|