ListIcons.tsx20 lines · main
1import { Database } from 'lucide-react'
2
3export const vercelIcon = (
4 <div className="flex items-center justify-center rounded-sm bg-black p-1">
5 <svg
6 className="m-auto fill-current text-white"
7 width="12px"
8 height="12px"
9 viewBox="0 0 1155 1000"
10 >
11 <path d="M577.344 0L1154.69 1000H0L577.344 0Z" />
12 </svg>
13 </div>
14)
15
16export const databaseIcon = (
17 <div className="flex items-center justify-center rounded-sm bg-green-500 p-1 in-data-[theme*=dark]:text-typography-body-dark ">
18 <Database size={12} strokeWidth={2} />
19 </div>
20)