import React from "react"; // https://worldvectorlogo.com/downloaded/redis Ref interface Props { className?: string; } export const PostgresqlIcon = ({ className }: Props) => { return ( ); }; export const MysqlIcon = ({ className }: Props) => { return ( ); }; export const MariadbIcon = ({ className }: Props) => { return ( ); }; export const MongodbIcon = ({ className }: Props) => { return ( ); }; export const RedisIcon = ({ className }: Props) => { return ( ); };