From da1d2adf5dd374f017c5c8787bf931f36c85fc5c Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Sun, 9 Feb 2025 23:31:12 -0800 Subject: [PATCH] Added company icons --- components/icons.tsx | 144 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) diff --git a/components/icons.tsx b/components/icons.tsx index 56b6188d5c..d2ad662ec2 100644 --- a/components/icons.tsx +++ b/components/icons.tsx @@ -1151,3 +1151,147 @@ export const PerplexityIcon = (props: SVGProps) => { ) } + +export const NotionIcon = (props: SVGProps) => { + return ( + + + + ) +} + +export const GmailIcon = (props: SVGProps) => { + return ( + + + + + + + + ) +} + +export const xAIIcon = (props: SVGProps) => { + return ( + + + + + + + + + ) +} + +export const GoogleSheetsIcon = (props: SVGProps) => { + return ( + + + + + ) +} + +export const S3Icon = (props: SVGProps) => ( + + + + + + + + + + + + + + + + +) + +export const GoogleIcon = (props: SVGProps) => ( + + + + + + +) + +export const DiscordIcon = (props: SVGProps) => ( + + + +) + +export const CrunchbaseIcon = (props: SVGProps) => ( + + + +)