Update enterprise-data-source.tsx

This commit is contained in:
Filip Cumpalovic 2024-02-28 11:53:44 +01:00 committed by GitHub
parent 119712427a
commit 5230395f80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,10 @@ import {
MySql,
MsSqlServer,
SQLite,
Redis
Redis,
Firewall,
Docker,
Named
} from "../assets/integration-icons";
import { useInView } from "framer-motion";
@ -321,17 +324,17 @@ const list1 = [
tooltip: null,
},
{
icon: (props: SVGProps<SVGSVGElement>) => <Supabase {...props} />,
icon: (props: SVGProps<SVGSVGElement>) => <Docker {...props} />,
label: "Docker",
tooltip: null,
},
{
icon: (props: SVGProps<SVGSVGElement>) => <Hasura {...props} />,
icon: (props: SVGProps<SVGSVGElement>) => <Firewall {...props} />,
label: "UFW",
tooltip: null,
},
{
icon: (props: SVGProps<SVGSVGElement>) => <Airtable {...props} />,
icon: (props: SVGProps<SVGSVGElement>) => <Named {...props} />,
label: "Named",
tooltip: null,
},