summaryrefslogtreecommitdiff
path: root/crates/material_theme/src/markdown.rs
blob: bc14ffe4d3381cf5823bfaefffde46eca3232fdd (plain)
1
2
3
4
5
6
7
8
9
10
use iced_widget::markdown::Catalog;

use super::{Theme, container};

impl Catalog for Theme {
    fn code_block<'a>() -> <Self as iced_widget::container::Catalog>::Class<'a>
    {
        Box::new(container::surface_container_highest)
    }
}