use leptos::prelude::*; use icons::{PanelLeft, Plus}; use crate::components::torrent::add_torrent::AddTorrentDialogContent; use crate::components::ui::button::{ButtonVariant, ButtonSize}; use crate::components::ui::sheet::{Sheet, SheetContent, SheetTrigger, SheetDirection}; use crate::components::ui::dialog::{Dialog, DialogContent, DialogTrigger}; use crate::components::layout::sidebar::Sidebar; #[component] pub fn Toolbar() -> impl IntoView { view! {