ListIcons.tsx 572 B

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