Skip to content

Hi. what the type of a lucide-react icon is? #1869

Answered by sovetski
skdishansachin asked this question in Help
Discussion options

You must be logged in to vote

I think @skdishansachin means in typescript, if we have an object with "icon" key, what type of return we have to add? I also need this

Edit:

Ok I found the solution:

import { LucideIcon } from "lucide-react";

export type TestInterface = {
  title: string;
  icon: LucideIcon;
};

And when you use your TestInterface, you have to use like this:

import { ArrowBigUp } from "lucide-react";

const test: TestInterface = {
  title: "Test title",
  icon: ArrowBigUp // be careful, don't use as a component like <ArrowBigUp />
}

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@ThalyssonLeite
Comment options

Answer selected by skdishansachin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
4 participants