Back to Prefect

Adding Icons

ui-v2/src/components/ui/icons/README.md

3.6.30.dev3480 B
Original Source

Adding Icons

Import new icon from https://lucide.dev/icons/ in ./constants and add entry alphabetically in ICONS

Use the named import that excludes Icon suffix. eg: BanIcon VS Ban

ts
/** @/components/ui/icons/constants.ts */
import {
	AlignVerticalJustifyStart,
	Ban,
	Check, // <---- New Icon to add
	ChevronDown,
} from "lucide-react";

export const ICONS = {
	AlignVerticalJustifyStart,
	Ban,
	Check, // <---- New Icon to add
	ChevronDown,
} as const;