import {Server} from "lucide-react"; import type {SVGProps} from "react"; import {ProviderIconTypes} from "@/features/channel/components/channels-helpers"; export const storageProviders: ProviderIconTypes[] = [ {value: "local", label: "Local", icon: Server}, {value: "s3", label: "S3", icon: S3Icon}, {value: "google-drive", label: "Google Drive", icon: GoogleDriveIcon}, {value: "blob", label: "Azure Blob Storage", icon: BlobIcon}, {value: "google-cloud-storage", label: "Google Cloud Storage", icon: GCSIcon}, ] export function S3Icon(props: SVGProps) { return ( ); } export function GoogleDriveIcon(props: SVGProps) { return ( ) } export function BlobIcon(props: SVGProps) { return ( ); } export function GCSIcon(props: SVGProps) { return ( ); }