mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 01:38:28 +00:00
50 lines
792 B
TypeScript
50 lines
792 B
TypeScript
import {
|
|
AlertTriangle,
|
|
ArrowRight,
|
|
Check,
|
|
ChevronLeft,
|
|
ChevronRight,
|
|
Command,
|
|
CreditCard,
|
|
File,
|
|
FileText,
|
|
Github,
|
|
HelpCircle,
|
|
Image,
|
|
Loader2,
|
|
MoreVertical,
|
|
Pizza,
|
|
Plus,
|
|
Settings,
|
|
Trash,
|
|
Twitter,
|
|
User,
|
|
X,
|
|
} from "lucide-react"
|
|
import type { Icon as LucideIcon } from "lucide-react"
|
|
|
|
export type Icon = LucideIcon
|
|
|
|
export const Icons = {
|
|
logo: Command,
|
|
close: X,
|
|
spinner: Loader2,
|
|
chevronLeft: ChevronLeft,
|
|
chevronRight: ChevronRight,
|
|
trash: Trash,
|
|
post: FileText,
|
|
page: File,
|
|
media: Image,
|
|
settings: Settings,
|
|
billing: CreditCard,
|
|
ellipsis: MoreVertical,
|
|
add: Plus,
|
|
warning: AlertTriangle,
|
|
user: User,
|
|
arrowRight: ArrowRight,
|
|
help: HelpCircle,
|
|
pizza: Pizza,
|
|
gitHub: Github,
|
|
twitter: Twitter,
|
|
check: Check,
|
|
}
|