Where do i get the icons from?
import { Icons } from "@/components/icons"
it's imported in the create account card. but I can't find a cli script on the website for downloading icons
it is a few levels up in the components folder https://github.com/shadcn-ui/ui/blob/main/apps/www/components/icons.tsx
So i just copy paste the code inside a new file in components folder named icons.tsx?
You can either use Lucide or Radix for icons. The Icons component @ibqn mentioned is just one way of importing them. You need to make sure to import the exact icons you need from the library regardless. Best to check the documentations for Lucide and Radix how to use them in React.
just copy https://github.com/shadcn-ui/ui/blob/main/apps/www/components/icons.tsx inside your project, it works
how to use these?
i just created an icons.tsx file in /components and copied/pasted code. works perfectly