no notes
no notes
| Release list | ||
|---|---|---|
| 0.562.0 | ||
| 0.561.0 | ||
| 0.560.0 | ||
| 0.559.0 | ||
| 0.558.0 | ||
| 0.557.0 | ||
| 0.556.0 | ||
| 0.555.0 | ||
| 0.554.0 | ||
| 0.553.0 | ||
| 0.552.0 | ||
| 0.551.0 | ||
| 0.550.0 | ||
| 0.549.0 | ||
| 0.548.0 | ||
| 0.547.0 | ||
| 0.546.0 | ||
| 0.545.0 | ||
| 0.544.0 | ||
| 0.543.0 | ||
no notes
glass-water icon by @jguddas in https://github.com/lucide-icons/lucide/pull/2579Customize import name styles for lucide-react, lucide-vue, lucide-react-native, lucide-preact, to manage autocompletion in your IDE.
settings.json{
"typescript.preferences.autoImportFileExcludePatterns": [
"lucide-react",
"lucide-preact",
"lucide-react-native",
"lucide-vue-next"
]
}
It allows you to choose the import name style.
For React:
declare module "lucide-react" {
// Prefixed import names
export * from "lucide-react/dist/lucide-react.prefixed";
// or
// Suffixed import names
export * from "lucide-react/dist/lucide-react.suffixed";
}
For Vue:
declare module "lucide-vue-next" {
// Prefixed import names
export * from "lucide-vue-next/dist/lucide-vue-next.prefixed";
// or
// Suffixed import names
export * from "lucide-vue-next/dist/lucide-vue-next.suffixed";
}