From 89f8a2275d79816a599cb443533677426d746a00 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Tue, 10 Dec 2024 15:15:44 +0100 Subject: [PATCH] UI: init machine avatar component --- .../app/src/routes/machines/avatar.tsx | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkgs/webview-ui/app/src/routes/machines/avatar.tsx diff --git a/pkgs/webview-ui/app/src/routes/machines/avatar.tsx b/pkgs/webview-ui/app/src/routes/machines/avatar.tsx new file mode 100644 index 000000000..9aa243d30 --- /dev/null +++ b/pkgs/webview-ui/app/src/routes/machines/avatar.tsx @@ -0,0 +1,22 @@ +import { RndThumbnail } from "@/src/components/noiseThumbnail"; +import cx from "classnames"; +interface AvatarProps { + name?: string; + class?: string; +} +export const MachineAvatar = (props: AvatarProps) => { + return ( +
+
+
+ +
+
+
+ ); +};