no notes
no notes
Release list | ||
---|---|---|
0.525.0 | RECENT | |
0.524.0 | RECENT | |
0.523.0 | ||
0.522.0 | ||
0.521.0 | ||
0.520.0 | ||
0.519.0 | ||
0.518.0 | ||
0.517.0 | ||
0.516.0 | ||
0.515.0 | ||
0.514.0 | ||
0.513.0 | ||
0.512.0 | ||
0.511.0 | ||
0.510.0 | ||
0.509.0 | ||
0.508.0 | ||
0.507.0 | ||
0.506.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";
}