mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
* feat: move new-york to lucide-react * fix: mail open * chore: update registry * chore: add test:dev * chore: add changeset * feat: build an icon registry * chore: add missing registry icons * feat: add an icons debug page * feat: add an icon migration * chore(www): migrate all radix icons to lucide * feat: update migration script * chore: update changeset * feat(shadcn): implement icons transformer * fix: missing registry icons * fix(shadcn): handling of missing icons * feat: add support for multiple libraries
72 lines
949 B
TypeScript
72 lines
949 B
TypeScript
import {
|
|
ArrowDown,
|
|
ArrowRight,
|
|
ArrowUp,
|
|
CheckCircle,
|
|
Circle,
|
|
CircleOff,
|
|
HelpCircle,
|
|
Timer,
|
|
} from "lucide-react"
|
|
|
|
export const labels = [
|
|
{
|
|
value: "bug",
|
|
label: "Bug",
|
|
},
|
|
{
|
|
value: "feature",
|
|
label: "Feature",
|
|
},
|
|
{
|
|
value: "documentation",
|
|
label: "Documentation",
|
|
},
|
|
]
|
|
|
|
export const statuses = [
|
|
{
|
|
value: "backlog",
|
|
label: "Backlog",
|
|
icon: HelpCircle,
|
|
},
|
|
{
|
|
value: "todo",
|
|
label: "Todo",
|
|
icon: Circle,
|
|
},
|
|
{
|
|
value: "in progress",
|
|
label: "In Progress",
|
|
icon: Timer,
|
|
},
|
|
{
|
|
value: "done",
|
|
label: "Done",
|
|
icon: CheckCircle,
|
|
},
|
|
{
|
|
value: "canceled",
|
|
label: "Canceled",
|
|
icon: CircleOff,
|
|
},
|
|
]
|
|
|
|
export const priorities = [
|
|
{
|
|
label: "Low",
|
|
value: "low",
|
|
icon: ArrowDown,
|
|
},
|
|
{
|
|
label: "Medium",
|
|
value: "medium",
|
|
icon: ArrowRight,
|
|
},
|
|
{
|
|
label: "High",
|
|
value: "high",
|
|
icon: ArrowUp,
|
|
},
|
|
]
|