From 15d04fb577e4dd24ebbfc4bd030d6d869e2253a5 Mon Sep 17 00:00:00 2001 From: Harshith Mullapudi Date: Mon, 15 Sep 2025 12:09:40 +0530 Subject: [PATCH] feat: obsidian and figma logos --- apps/webapp/app/components/icons/figma.tsx | 31 +++- apps/webapp/app/components/icons/obsidian.tsx | 140 +++++++++++++++++- 2 files changed, 160 insertions(+), 11 deletions(-) diff --git a/apps/webapp/app/components/icons/figma.tsx b/apps/webapp/app/components/icons/figma.tsx index a44e863..809d35b 100644 --- a/apps/webapp/app/components/icons/figma.tsx +++ b/apps/webapp/app/components/icons/figma.tsx @@ -3,17 +3,38 @@ import type { IconProps } from "./types"; export function Figma({ size = 18, className }: IconProps) { return ( - Claude + + + + ); diff --git a/apps/webapp/app/components/icons/obsidian.tsx b/apps/webapp/app/components/icons/obsidian.tsx index d8ad55d..dc9ada5 100644 --- a/apps/webapp/app/components/icons/obsidian.tsx +++ b/apps/webapp/app/components/icons/obsidian.tsx @@ -3,18 +3,146 @@ import type { IconProps } from "./types"; export function Obsidian({ size = 18, className }: IconProps) { return ( - Claude + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); }