-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicons.ts
More file actions
18 lines (16 loc) · 792 Bytes
/
icons.ts
File metadata and controls
18 lines (16 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Share2, Upload } from "lucide-react"
import { detectPlatform } from "#helpers/platform.ts"
export { Sun as LightTheme } from "lucide-react"
export { Moon as DarkTheme } from "lucide-react"
export { Loader as Pending } from "lucide-react"
export { Languages as Language } from "lucide-react"
export { Github as GitHub } from "lucide-react"
export { ExternalLink } from "lucide-react"
export { CheckCircle as Success } from "lucide-react"
export { XCircle as Error } from "lucide-react"
export { Ban as Fault } from "lucide-react"
export { FileJson as Json } from "lucide-react"
export { Globe as Url } from "lucide-react"
export { Upload as File } from "lucide-react"
export { FileText as Text } from "lucide-react"
export const Share = detectPlatform() === "ios" ? Upload : Share2