text
stringlengths
21
253k
id
stringlengths
25
123
metadata
dict
__index_level_0__
int64
0
181
import { UserProfile } from '@clerk/nextjs'; import { useTranslations } from 'next-intl'; import { TitleBar } from '@/features/dashboard/TitleBar'; import { getI18nPath } from '@/utils/Helpers'; const UserProfilePage = (props: { params: { locale: string } }) => { const t = useTranslations('UserProfile'); return ( <> <TitleBar title={t('title_bar')} description={t('title_bar_description')} /> <UserProfile routing="path" path={getI18nPath('/dashboard/user-profile', props.params.locale)} appearance={{ elements: { rootBox: 'w-full', cardBox: 'w-full flex', }, }} /> </> ); }; export default UserProfilePage;
ixartz/SaaS-Boilerplate/src/app/[locale]/(auth)/dashboard/user-profile/[[...user-profile]]/page.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/app/[locale]/(auth)/dashboard/user-profile/[[...user-profile]]/page.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 325 }
26
import type { VariantProps } from 'class-variance-authority'; import * as React from 'react'; import { cn } from '@/utils/Helpers'; import { badgeVariants } from './badgeVariants'; export type BadgeProps = {} & React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof badgeVariants>; function Badge({ className, variant, ...props }: BadgeProps) { return ( <div className={cn(badgeVariants({ variant }), className)} {...props} /> ); } export { Badge };
ixartz/SaaS-Boilerplate/src/components/ui/badge.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/components/ui/badge.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 153 }
27
'use client'; import { OrganizationSwitcher, UserButton } from '@clerk/nextjs'; import Link from 'next/link'; import { useLocale } from 'next-intl'; import { ActiveLink } from '@/components/ActiveLink'; import { LocaleSwitcher } from '@/components/LocaleSwitcher'; import { ToggleMenuButton } from '@/components/ToggleMenuButton'; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu'; import { Logo } from '@/templates/Logo'; import { getI18nPath } from '@/utils/Helpers'; export const DashboardHeader = (props: { menu: { href: string; label: string; }[]; }) => { const locale = useLocale(); return ( <> <div className="flex items-center"> <Link href="/dashboard" className="max-sm:hidden"> <Logo /> </Link> <svg className="ml-1 size-8 stroke-muted-foreground max-sm:hidden" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" strokeLinecap="round" strokeLinejoin="round" > <path stroke="none" d="M0 0h24v24H0z" /> <path d="M17 5 7 19" /> </svg> <OrganizationSwitcher organizationProfileMode="navigation" organizationProfileUrl={getI18nPath( '/dashboard/organization-profile', locale, )} afterCreateOrganizationUrl="/dashboard" hidePersonal skipInvitationScreen appearance={{ elements: { organizationSwitcherTrigger: 'max-w-52', }, }} /> <nav className="ml-3 max-lg:hidden"> <ul className="flex flex-row items-center gap-x-3 text-lg font-medium [&_a:hover]:opacity-100 [&_a]:opacity-75"> {props.menu.map(item => ( <li key={item.href}> <ActiveLink href={item.href}>{item.label}</ActiveLink> </li> ))} </ul> </nav> </div> <div> <ul className="flex items-center gap-x-1 [&_li:not(:last-child):hover]:opacity-100 [&_li:not(:last-child)]:opacity-60"> <li> <div className="lg:hidden"> <DropdownMenu> <DropdownMenuTrigger asChild> <ToggleMenuButton /> </DropdownMenuTrigger> <DropdownMenuContent> {props.menu.map(item => ( <DropdownMenuItem key={item.href} asChild> <Link href={item.href}>{item.label}</Link> </DropdownMenuItem> ))} </DropdownMenuContent> </DropdownMenu> </div> </li> <li> <LocaleSwitcher /> </li> <li> <UserButton userProfileMode="navigation" userProfileUrl="/dashboard/user-profile" appearance={{ elements: { rootBox: 'px-2 py-1.5', }, }} /> </li> </ul> </div> </> ); };
ixartz/SaaS-Boilerplate/src/features/dashboard/DashboardHeader.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/features/dashboard/DashboardHeader.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 1668 }
28
import path from 'node:path'; import { PGlite } from '@electric-sql/pglite'; import { drizzle as drizzlePg } from 'drizzle-orm/node-postgres'; import { migrate as migratePg } from 'drizzle-orm/node-postgres/migrator'; import { drizzle as drizzlePglite, type PgliteDatabase } from 'drizzle-orm/pglite'; import { migrate as migratePglite } from 'drizzle-orm/pglite/migrator'; import { PHASE_PRODUCTION_BUILD } from 'next/dist/shared/lib/constants'; import { Client } from 'pg'; import * as schema from '@/models/Schema'; import { Env } from './Env'; let client; let drizzle; if (process.env.NEXT_PHASE !== PHASE_PRODUCTION_BUILD && Env.DATABASE_URL) { client = new Client({ connectionString: Env.DATABASE_URL, }); await client.connect(); drizzle = drizzlePg(client, { schema }); await migratePg(drizzle, { migrationsFolder: path.join(process.cwd(), 'migrations'), }); } else { const global = globalThis as unknown as { client: PGlite; drizzle: PgliteDatabase<typeof schema> }; if (!global.client) { global.client = new PGlite(); await global.client.waitReady; global.drizzle = drizzlePglite(global.client, { schema }); } drizzle = global.drizzle; await migratePglite(global.drizzle, { migrationsFolder: path.join(process.cwd(), 'migrations'), }); } export const db = drizzle;
ixartz/SaaS-Boilerplate/src/libs/DB.ts
{ "file_path": "ixartz/SaaS-Boilerplate/src/libs/DB.ts", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 473 }
29
import { AppConfig } from '@/utils/AppConfig'; export const Logo = () => ( <div className="flex items-center text-xl font-semibold"> <svg className="mr-1 size-8 stroke-current stroke-2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" strokeLinecap="round" strokeLinejoin="round" > <path d="M0 0h24v24H0z" stroke="none" /> <rect x="3" y="12" width="6" height="8" rx="1" /> <rect x="9" y="8" width="6" height="12" rx="1" /> <rect x="15" y="4" width="6" height="16" rx="1" /> <path d="M4 20h14" /> </svg> {AppConfig.name} </div> );
ixartz/SaaS-Boilerplate/src/templates/Logo.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/templates/Logo.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 308 }
30
import { eventHandler, getQuery, setResponseHeader } from 'h3'; import iconNodes from '../../data/iconNodes'; import { IconNodeWithKeys } from '../../theme/types'; export default eventHandler((event) => { const query = getQuery(event); const withUniqueKeys = query.withUniqueKeys === 'true'; setResponseHeader(event, 'Cache-Control', 'public, max-age=86400'); setResponseHeader(event, 'Access-Control-Allow-Origin', '*'); if (withUniqueKeys) { return iconNodes; } return Object.entries(iconNodes).reduce((acc, [name, iconNode]) => { if (withUniqueKeys) { return [name, iconNode]; } const newIconNode = (iconNode as IconNodeWithKeys).map(([name, { key, ...attrs }]) => { return [name, attrs]; }); acc[name] = newIconNode; return acc; }, {}); });
lucide-icons/lucide/docs/.vitepress/api/icon-nodes/index.get.ts
{ "file_path": "lucide-icons/lucide/docs/.vitepress/api/icon-nodes/index.get.ts", "repo_id": "lucide-icons/lucide", "token_count": 282 }
31
import fs from 'fs'; import path from 'path'; import { Category, IconEntity } from '../theme/types'; const directory = path.join(process.cwd(), '../categories'); export function getAllCategoryFiles(): Category[] { const fileNames = fs.readdirSync(directory).filter((file) => path.extname(file) === '.json'); return fileNames.map((fileName) => { const name = path.basename(fileName, '.json'); const fileContent = fs.readFileSync(path.join(directory, fileName), 'utf8'); const parsedFileContent = JSON.parse(fileContent); return { name, title: parsedFileContent.title, }; }); } export function mapCategoryIconCount( categories: Category[], icons: { categories: IconEntity['categories'] }[], ) { return categories.map((category) => ({ ...category, iconCount: icons.reduce( (acc, curr) => (curr.categories.includes(category.name) ? ++acc : acc), 0, ), })); }
lucide-icons/lucide/docs/.vitepress/lib/categories.ts
{ "file_path": "lucide-icons/lucide/docs/.vitepress/lib/categories.ts", "repo_id": "lucide-icons/lucide", "token_count": 318 }
32
import { ref, inject, Ref, watch } from 'vue'; import { ExternalLibs, IconEntity } from '../types'; export const EXTERNAL_LIBS_CONTEXT = Symbol('externalLibs'); type ExternalIconNodes = Partial<Record<ExternalLibs, IconEntity[]>>; interface ExternalLibContext { selectedLibs: Ref<[ExternalLibs]>; externalIconNodes: Ref<ExternalIconNodes>; } export const externalLibContext = { selectedLibs: ref([]), externalIconNodes: ref({}), }; const externalLibIconNodesAPI = { lab: 'https://lab.lucide.dev/api/icon-details', }; export function useExternalLibs(): ExternalLibContext { const context = inject<ExternalLibContext>(EXTERNAL_LIBS_CONTEXT); watch(context?.selectedLibs, async (selectedLibs) => { const savedIconNodes = { ...context?.externalIconNodes.value }; const newExternalIconNodes: ExternalIconNodes = {}; try { for (const lib of selectedLibs) { if (savedIconNodes[lib]) { newExternalIconNodes[lib] = savedIconNodes[lib]; } else { const response = await fetch(externalLibIconNodesAPI[lib]); const iconNodes = await response.json(); if (iconNodes) { newExternalIconNodes[lib] = Object.values(iconNodes).map((iconEntity: IconEntity) => ({ ...iconEntity, externalLibrary: lib, })); } } } context.externalIconNodes.value = newExternalIconNodes; } catch (error) { console.error(error); } }); if (!context) { throw new Error('useExternalLibs must be used with externalLibs context'); } return context; }
lucide-icons/lucide/docs/.vitepress/theme/composables/useExternalLibs.ts
{ "file_path": "lucide-icons/lucide/docs/.vitepress/theme/composables/useExternalLibs.ts", "repo_id": "lucide-icons/lucide", "token_count": 616 }
33
import { IconNode } from 'lucide-vue-next/src/createLucideIcon'; import Vue from 'vue'; declare module '*.vue' { export default Vue; } declare module '*.data.ts' { const data: any; export { data }; } declare module '*.wasm' {} declare const resvg_wasm: RequestInfo | URL | Response | BufferSource | WebAssembly.Module; declare module 'node:module' { function createRequire(filename: string): NodeRequire; } declare module '*.node.json' { export default IconNode; }
lucide-icons/lucide/docs/.vitepress/vue-shim.d.ts
{ "file_path": "lucide-icons/lucide/docs/.vitepress/vue-shim.d.ts", "repo_id": "lucide-icons/lucide", "token_count": 166 }
34
import { PartyPopper } from "lucide-react"; function App() { return ( <div> <PartyPopper className="w-24 h-24" /> </div> ); } export default App;
lucide-icons/lucide/docs/guide/basics/examples/size-icon-tailwind-example/App.js
{ "file_path": "lucide-icons/lucide/docs/guide/basics/examples/size-icon-tailwind-example/App.js", "repo_id": "lucide-icons/lucide", "token_count": 71 }
35
import fs from 'fs'; import path from 'path'; const currentDir = process.cwd(); const dataDirectory = path.resolve(currentDir, '.vitepress/data'); const directory = path.join(process.cwd(), '../categories'); function getAllCategoryFiles() { const fileNames = fs.readdirSync(directory).filter((file) => path.extname(file) === '.json'); return fileNames.map((fileName) => { const name = path.basename(fileName, '.json'); const fileContent = fs.readFileSync(path.join(directory, fileName), 'utf8'); const parsedFileContent = JSON.parse(fileContent); return { name, title: parsedFileContent.title, }; }); } const categoriesFile = path.resolve(dataDirectory, `categoriesData.json`); const categoriesData = getAllCategoryFiles(); fs.promises .writeFile(categoriesFile, JSON.stringify(categoriesData, null, 2), 'utf-8') .then(() => { console.log('Successfully written categoriesData.json file'); }) .catch((error) => { throw new Error(`Something went wrong generating the categoriesData.json file,\n ${error}`); });
lucide-icons/lucide/docs/scripts/writeCategoriesMetadata.mjs
{ "file_path": "lucide-icons/lucide/docs/scripts/writeCategoriesMetadata.mjs", "repo_id": "lucide-icons/lucide", "token_count": 349 }
36
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M21 14h-5" /> <path d="M16 16v-3.5a2.5 2.5 0 0 1 5 0V16" /> <path d="M4.5 13h6" /> <path d="m3 16 4.5-9 4.5 9" /> </svg>
lucide-icons/lucide/icons/a-large-small.svg
{ "file_path": "lucide-icons/lucide/icons/a-large-small.svg", "repo_id": "lucide-icons/lucide", "token_count": 169 }
37
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5" /> <path d="M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5" /> </svg>
lucide-icons/lucide/icons/ampersands.svg
{ "file_path": "lucide-icons/lucide/icons/ampersands.svg", "repo_id": "lucide-icons/lucide", "token_count": 225 }
38
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M10 10.01h.01" /> <path d="M10 14.01h.01" /> <path d="M14 10.01h.01" /> <path d="M14 14.01h.01" /> <path d="M18 6v11.5" /> <path d="M6 6v12" /> <rect x="2" y="6" width="20" height="12" rx="2" /> </svg>
lucide-icons/lucide/icons/bandage.svg
{ "file_path": "lucide-icons/lucide/icons/bandage.svg", "repo_id": "lucide-icons/lucide", "token_count": 209 }
39
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M2 4v16" /> <path d="M2 8h18a2 2 0 0 1 2 2v10" /> <path d="M2 17h20" /> <path d="M6 8v9" /> </svg>
lucide-icons/lucide/icons/bed.svg
{ "file_path": "lucide-icons/lucide/icons/bed.svg", "repo_id": "lucide-icons/lucide", "token_count": 153 }
40
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z" /> </svg>
lucide-icons/lucide/icons/bone.svg
{ "file_path": "lucide-icons/lucide/icons/bone.svg", "repo_id": "lucide-icons/lucide", "token_count": 235 }
41
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M16 8.2A2.22 2.22 0 0 0 13.8 6c-.8 0-1.4.3-1.8.9-.4-.6-1-.9-1.8-.9A2.22 2.22 0 0 0 8 8.2c0 .6.3 1.2.7 1.6A226.652 226.652 0 0 0 12 13a404 404 0 0 0 3.3-3.1 2.413 2.413 0 0 0 .7-1.7" /> <path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" /> </svg>
lucide-icons/lucide/icons/book-heart.svg
{ "file_path": "lucide-icons/lucide/icons/book-heart.svg", "repo_id": "lucide-icons/lucide", "token_count": 282 }
42
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2" /> <path d="M14.12 3.88 16 2" /> <path d="M22 13h-4v-2a4 4 0 0 0-4-4h-1.3" /> <path d="M20.97 5c0 2.1-1.6 3.8-3.5 4" /> <path d="m2 2 20 20" /> <path d="M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13" /> <path d="M12 20v-8" /> <path d="M6 13H2" /> <path d="M3 21c0-2.1 1.7-3.9 3.8-4" /> </svg>
lucide-icons/lucide/icons/bug-off.svg
{ "file_path": "lucide-icons/lucide/icons/bug-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 308 }
43
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z" /> <path d="M21.21 15.89A10 10 0 1 1 8 2.83" /> </svg>
lucide-icons/lucide/icons/chart-pie.svg
{ "file_path": "lucide-icons/lucide/icons/chart-pie.svg", "repo_id": "lucide-icons/lucide", "token_count": 178 }
44
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="m4.6 13.11 5.79-3.21c1.89-1.05 4.79 1.78 3.71 3.71l-3.22 5.81C8.8 23.16.79 15.23 4.6 13.11Z" /> <path d="m10.5 9.5-1-2.29C9.2 6.48 8.8 6 8 6H4.5C2.79 6 2 6.5 2 8.5a7.71 7.71 0 0 0 2 4.83" /> <path d="M8 6c0-1.55.24-4-2-4-2 0-2.5 2.17-2.5 4" /> <path d="m14.5 13.5 2.29 1c.73.3 1.21.7 1.21 1.5v3.5c0 1.71-.5 2.5-2.5 2.5a7.71 7.71 0 0 1-4.83-2" /> <path d="M18 16c1.55 0 4-.24 4 2 0 2-2.17 2.5-4 2.5" /> </svg>
lucide-icons/lucide/icons/croissant.svg
{ "file_path": "lucide-icons/lucide/icons/croissant.svg", "repo_id": "lucide-icons/lucide", "token_count": 372 }
45
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <ellipse cx="12" cy="5" rx="9" ry="3" /> <path d="M3 5v14a9 3 0 0 0 18 0V5" /> </svg>
lucide-icons/lucide/icons/cylinder.svg
{ "file_path": "lucide-icons/lucide/icons/cylinder.svg", "repo_id": "lucide-icons/lucide", "token_count": 139 }
46
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="m7 21-4.3-4.3c-1-1-1-2.5 0-3.4l9.6-9.6c1-1 2.5-1 3.4 0l5.6 5.6c1 1 1 2.5 0 3.4L13 21" /> <path d="M22 21H7" /> <path d="m5 11 9 9" /> </svg>
lucide-icons/lucide/icons/eraser.svg
{ "file_path": "lucide-icons/lucide/icons/eraser.svg", "repo_id": "lucide-icons/lucide", "token_count": 194 }
47
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2" /> <path d="M14 2v4a2 2 0 0 0 2 2h4" /> <circle cx="3" cy="17" r="1" /> <path d="M2 17v-3a4 4 0 0 1 8 0v3" /> <circle cx="9" cy="17" r="1" /> </svg>
lucide-icons/lucide/icons/file-audio-2.svg
{ "file_path": "lucide-icons/lucide/icons/file-audio-2.svg", "repo_id": "lucide-icons/lucide", "token_count": 214 }
48
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058" /> <path d="M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618" /> <path d="m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20" /> </svg>
lucide-icons/lucide/icons/fish-off.svg
{ "file_path": "lucide-icons/lucide/icons/fish-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 427 }
49
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M9 10h.01" /> <path d="M15 10h.01" /> <path d="M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z" /> </svg>
lucide-icons/lucide/icons/ghost.svg
{ "file_path": "lucide-icons/lucide/icons/ghost.svg", "repo_id": "lucide-icons/lucide", "token_count": 180 }
50
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <circle cx="12" cy="18" r="3" /> <circle cx="6" cy="6" r="3" /> <circle cx="18" cy="6" r="3" /> <path d="M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9" /> <path d="M12 12v3" /> </svg>
lucide-icons/lucide/icons/git-fork.svg
{ "file_path": "lucide-icons/lucide/icons/git-fork.svg", "repo_id": "lucide-icons/lucide", "token_count": 194 }
51
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <line x1="22" x2="2" y1="12" y2="12" /> <path d="M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" /> <line x1="6" x2="6.01" y1="16" y2="16" /> <line x1="10" x2="10.01" y1="16" y2="16" /> </svg>
lucide-icons/lucide/icons/hard-drive.svg
{ "file_path": "lucide-icons/lucide/icons/hard-drive.svg", "repo_id": "lucide-icons/lucide", "token_count": 248 }
52
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" /> <path d="M12 5 9.04 7.96a2.17 2.17 0 0 0 0 3.08c.82.82 2.13.85 3 .07l2.07-1.9a2.82 2.82 0 0 1 3.79 0l2.96 2.66" /> <path d="m18 15-2-2" /> <path d="m15 18-2-2" /> </svg>
lucide-icons/lucide/icons/heart-handshake.svg
{ "file_path": "lucide-icons/lucide/icons/heart-handshake.svg", "repo_id": "lucide-icons/lucide", "token_count": 305 }
53
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27" /> <path d="M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28" /> <path d="M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26" /> <path d="M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25" /> <path d="M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75" /> <path d="M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24" /> <path d="M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28" /> <path d="M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05" /> <path d="m2 2 20 20" /> </svg>
lucide-icons/lucide/icons/hop-off.svg
{ "file_path": "lucide-icons/lucide/icons/hop-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 572 }
54
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21" /> <path d="m14 19.5 3-3 3 3" /> <path d="M17 22v-5.5" /> <circle cx="9" cy="9" r="2" /> </svg>
lucide-icons/lucide/icons/image-up.svg
{ "file_path": "lucide-icons/lucide/icons/image-up.svg", "repo_id": "lucide-icons/lucide", "token_count": 215 }
55
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M12 12c-2-2.67-4-4-6-4a4 4 0 1 0 0 8c2 0 4-1.33 6-4Zm0 0c2 2.67 4 4 6 4a4 4 0 0 0 0-8c-2 0-4 1.33-6 4Z" /> </svg>
lucide-icons/lucide/icons/infinity.svg
{ "file_path": "lucide-icons/lucide/icons/infinity.svg", "repo_id": "lucide-icons/lucide", "token_count": 171 }
56
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <rect x="3" y="5" width="6" height="6" rx="1" /> <path d="m3 17 2 2 4-4" /> <path d="M13 6h8" /> <path d="M13 12h8" /> <path d="M13 18h8" /> </svg>
lucide-icons/lucide/icons/list-todo.svg
{ "file_path": "lucide-icons/lucide/icons/list-todo.svg", "repo_id": "lucide-icons/lucide", "token_count": 172 }
57
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15" /> <path d="M11 12 5.12 2.2" /> <path d="m13 12 5.88-9.8" /> <path d="M8 7h8" /> <circle cx="12" cy="17" r="5" /> <path d="M12 18v-2h-.5" /> </svg>
lucide-icons/lucide/icons/medal.svg
{ "file_path": "lucide-icons/lucide/icons/medal.svg", "repo_id": "lucide-icons/lucide", "token_count": 255 }
58
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M13.5 3.1c-.5 0-1-.1-1.5-.1s-1 .1-1.5.1" /> <path d="M19.3 6.8a10.45 10.45 0 0 0-2.1-2.1" /> <path d="M20.9 13.5c.1-.5.1-1 .1-1.5s-.1-1-.1-1.5" /> <path d="M17.2 19.3a10.45 10.45 0 0 0 2.1-2.1" /> <path d="M10.5 20.9c.5.1 1 .1 1.5.1s1-.1 1.5-.1" /> <path d="M3.5 17.5 2 22l4.5-1.5" /> <path d="M3.1 10.5c0 .5-.1 1-.1 1.5s.1 1 .1 1.5" /> <path d="M6.8 4.7a10.45 10.45 0 0 0-2.1 2.1" /> </svg>
lucide-icons/lucide/icons/message-circle-dashed.svg
{ "file_path": "lucide-icons/lucide/icons/message-circle-dashed.svg", "repo_id": "lucide-icons/lucide", "token_count": 367 }
59
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M12 17v4" /> <path d="M8 21h8" /> <rect x="2" y="3" width="20" height="14" rx="2" /> <rect x="9" y="7" width="6" height="6" rx="1" /> </svg>
lucide-icons/lucide/icons/monitor-stop.svg
{ "file_path": "lucide-icons/lucide/icons/monitor-stop.svg", "repo_id": "lucide-icons/lucide", "token_count": 169 }
60
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M9.31 9.31 5 21l7-4 7 4-1.17-3.17" /> <path d="M14.53 8.88 12 2l-1.17 3.17" /> <line x1="2" x2="22" y1="2" y2="22" /> </svg>
lucide-icons/lucide/icons/navigation-2-off.svg
{ "file_path": "lucide-icons/lucide/icons/navigation-2-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 172 }
61
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M3 9h18v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9Z" /> <path d="m3 9 2.45-4.9A2 2 0 0 1 7.24 3h9.52a2 2 0 0 1 1.8 1.1L21 9" /> <path d="M12 3v6" /> </svg>
lucide-icons/lucide/icons/package-2.svg
{ "file_path": "lucide-icons/lucide/icons/package-2.svg", "repo_id": "lucide-icons/lucide", "token_count": 190 }
62
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z" /> <path d="m5 2 5 5" /> <path d="M2 13h15" /> <path d="M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z" /> </svg>
lucide-icons/lucide/icons/paint-bucket.svg
{ "file_path": "lucide-icons/lucide/icons/paint-bucket.svg", "repo_id": "lucide-icons/lucide", "token_count": 220 }
63
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M19.439 7.85c-.049.322.059.648.289.878l1.568 1.568c.47.47.706 1.087.706 1.704s-.235 1.233-.706 1.704l-1.611 1.611a.98.98 0 0 1-.837.276c-.47-.07-.802-.48-.968-.925a2.501 2.501 0 1 0-3.214 3.214c.446.166.855.497.925.968a.979.979 0 0 1-.276.837l-1.61 1.61a2.404 2.404 0 0 1-1.705.707 2.402 2.402 0 0 1-1.704-.706l-1.568-1.568a1.026 1.026 0 0 0-.877-.29c-.493.074-.84.504-1.02.968a2.5 2.5 0 1 1-3.237-3.237c.464-.18.894-.527.967-1.02a1.026 1.026 0 0 0-.289-.877l-1.568-1.568A2.402 2.402 0 0 1 1.998 12c0-.617.236-1.234.706-1.704L4.23 8.77c.24-.24.581-.353.917-.303.515.077.877.528 1.073 1.01a2.5 2.5 0 1 0 3.259-3.259c-.482-.196-.933-.558-1.01-1.073-.05-.336.062-.676.303-.917l1.525-1.525A2.402 2.402 0 0 1 12 1.998c.617 0 1.234.236 1.704.706l1.568 1.568c.23.23.556.338.877.29.493-.074.84-.504 1.02-.968a2.5 2.5 0 1 1 3.237 3.237c-.464.18-.894.527-.967 1.02Z" /> </svg>
lucide-icons/lucide/icons/puzzle.svg
{ "file_path": "lucide-icons/lucide/icons/puzzle.svg", "repo_id": "lucide-icons/lucide", "token_count": 594 }
64
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" /> <path d="M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8" /> <path d="M12 17.5v-11" /> </svg>
lucide-icons/lucide/icons/receipt.svg
{ "file_path": "lucide-icons/lucide/icons/receipt.svg", "repo_id": "lucide-icons/lucide", "token_count": 203 }
65
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M3 2v6h6" /> <path d="M21 12A9 9 0 0 0 6 5.3L3 8" /> <path d="M21 22v-6h-6" /> <path d="M3 12a9 9 0 0 0 15 6.7l3-2.7" /> <circle cx="12" cy="12" r="1" /> </svg>
lucide-icons/lucide/icons/refresh-ccw-dot.svg
{ "file_path": "lucide-icons/lucide/icons/refresh-ccw-dot.svg", "repo_id": "lucide-icons/lucide", "token_count": 191 }
66
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="m2 9 3-3 3 3" /> <path d="M13 18H7a2 2 0 0 1-2-2V6" /> <path d="m22 15-3 3-3-3" /> <path d="M11 6h6a2 2 0 0 1 2 2v10" /> </svg>
lucide-icons/lucide/icons/repeat-2.svg
{ "file_path": "lucide-icons/lucide/icons/repeat-2.svg", "repo_id": "lucide-icons/lucide", "token_count": 173 }
67
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z" /> <path d="m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z" /> <path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0" /> <path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5" /> </svg>
lucide-icons/lucide/icons/rocket.svg
{ "file_path": "lucide-icons/lucide/icons/rocket.svg", "repo_id": "lucide-icons/lucide", "token_count": 299 }
68
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <circle cx="6" cy="19" r="3" /> <path d="M9 19h8.5c.4 0 .9-.1 1.3-.2" /> <path d="M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12" /> <path d="m2 2 20 20" /> <path d="M21 15.3a3.5 3.5 0 0 0-3.3-3.3" /> <path d="M15 5h-4.3" /> <circle cx="18" cy="5" r="3" /> </svg>
lucide-icons/lucide/icons/route-off.svg
{ "file_path": "lucide-icons/lucide/icons/route-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 244 }
69
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M6 11h8a4 4 0 0 0 0-8H9v18" /> <path d="M6 15h8" /> </svg>
lucide-icons/lucide/icons/russian-ruble.svg
{ "file_path": "lucide-icons/lucide/icons/russian-ruble.svg", "repo_id": "lucide-icons/lucide", "token_count": 130 }
70
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5" /> <path d="M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z" /> <path d="M22 17v-1a2 2 0 0 0-2-2h-1" /> <path d="M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z" /> <path d="M6 18h.01" /> <path d="m2 2 20 20" /> </svg>
lucide-icons/lucide/icons/server-off.svg
{ "file_path": "lucide-icons/lucide/icons/server-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 268 }
71
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="m15 11-1 9" /> <path d="m19 11-4-7" /> <path d="M2 11h20" /> <path d="m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4" /> <path d="M4.5 15.5h15" /> <path d="m5 11 4-7" /> <path d="m9 11 1 9" /> </svg>
lucide-icons/lucide/icons/shopping-basket.svg
{ "file_path": "lucide-icons/lucide/icons/shopping-basket.svg", "repo_id": "lucide-icons/lucide", "token_count": 229 }
72
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M7 18v-6a5 5 0 1 1 10 0v6" /> <path d="M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z" /> <path d="M21 12h1" /> <path d="M18.5 4.5 18 5" /> <path d="M2 12h1" /> <path d="M12 2v1" /> <path d="m4.929 4.929.707.707" /> <path d="M12 12v6" /> </svg>
lucide-icons/lucide/icons/siren.svg
{ "file_path": "lucide-icons/lucide/icons/siren.svg", "repo_id": "lucide-icons/lucide", "token_count": 260 }
73
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z" /> <path d="M5 3a2 2 0 0 0-2 2" /> <path d="M19 3a2 2 0 0 1 2 2" /> <path d="M5 21a2 2 0 0 1-2-2" /> <path d="M9 3h1" /> <path d="M9 21h2" /> <path d="M14 3h1" /> <path d="M3 9v1" /> <path d="M21 9v2" /> <path d="M3 14v1" /> </svg>
lucide-icons/lucide/icons/square-dashed-mouse-pointer.svg
{ "file_path": "lucide-icons/lucide/icons/square-dashed-mouse-pointer.svg", "repo_id": "lucide-icons/lucide", "token_count": 316 }
74
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18" /> </svg>
lucide-icons/lucide/icons/table-2.svg
{ "file_path": "lucide-icons/lucide/icons/table-2.svg", "repo_id": "lucide-icons/lucide", "token_count": 174 }
75
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3" /> <path d="m16 2 6 6" /> <path d="M12 16H4" /> </svg>
lucide-icons/lucide/icons/test-tube-diagonal.svg
{ "file_path": "lucide-icons/lucide/icons/test-tube-diagonal.svg", "repo_id": "lucide-icons/lucide", "token_count": 166 }
76
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z" /> <path d="M4.82 7.9 8 10" /> <path d="M15.18 7.9 12 10" /> <path d="M16.93 10H20a2 2 0 0 1 0 4H2" /> </svg>
lucide-icons/lucide/icons/turtle.svg
{ "file_path": "lucide-icons/lucide/icons/turtle.svg", "repo_id": "lucide-icons/lucide", "token_count": 227 }
77
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="M12 2v1" /> <path d="M15.5 21a1.85 1.85 0 0 1-3.5-1v-8H2a10 10 0 0 1 3.428-6.575" /> <path d="M17.5 12H22A10 10 0 0 0 9.004 3.455" /> <path d="m2 2 20 20" /> </svg>
lucide-icons/lucide/icons/umbrella-off.svg
{ "file_path": "lucide-icons/lucide/icons/umbrella-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 191 }
78
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" > <path d="m2 8 2 2-2 2 2 2-2 2" /> <path d="m22 8-2 2 2 2-2 2 2 2" /> <path d="M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2" /> <path d="M16 10.34V6c0-.55-.45-1-1-1h-4.34" /> <line x1="2" x2="22" y1="2" y2="22" /> </svg>
lucide-icons/lucide/icons/vibrate-off.svg
{ "file_path": "lucide-icons/lucide/icons/vibrate-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 227 }
79
import { ChangeDetectorRef, Component, ElementRef, Inject, Input, OnChanges, Renderer2, SimpleChange, } from '@angular/core'; import { LucideIconData } from '../icons/types'; import defaultAttributes from '../icons/constants/default-attributes'; import { LUCIDE_ICONS, LucideIconProviderInterface } from './lucide-icon.provider'; import { LucideIconConfig } from './lucide-icon.config'; interface TypedChange<T> extends SimpleChange { previousValue: T; currentValue: T; } type SvgAttributes = { [key: string]: string | number }; type LucideAngularComponentChanges = { name?: TypedChange<string | LucideIconData>; img?: TypedChange<LucideIconData | undefined>; color?: TypedChange<string>; size?: TypedChange<number>; strokeWidth?: TypedChange<number>; absoluteStrokeWidth?: TypedChange<boolean>; class: TypedChange<string>; }; export function formatFixed(number: number, decimals = 3): string { return parseFloat(number.toFixed(decimals)).toString(10); } @Component({ selector: 'lucide-angular, lucide-icon, i-lucide, span-lucide', template: '<ng-content></ng-content>', }) export class LucideAngularComponent implements OnChanges { @Input() class?: string; @Input() name?: string | LucideIconData; @Input() img?: LucideIconData; @Input() color?: string; @Input() absoluteStrokeWidth = false; defaultSize: number; constructor( @Inject(ElementRef) private elem: ElementRef, @Inject(Renderer2) private renderer: Renderer2, @Inject(ChangeDetectorRef) private changeDetector: ChangeDetectorRef, @Inject(LUCIDE_ICONS) private iconProviders: LucideIconProviderInterface[], @Inject(LucideIconConfig) private iconConfig: LucideIconConfig, ) { this.defaultSize = defaultAttributes.height; } _size?: number; get size(): number { return this._size ?? this.iconConfig.size; } @Input() set size(value: string | number | undefined) { if (value) { this._size = this.parseNumber(value); } else { delete this._size; } } _strokeWidth?: number; get strokeWidth(): number { return this._strokeWidth ?? this.iconConfig.strokeWidth; } @Input() set strokeWidth(value: string | number | undefined) { if (value) { this._strokeWidth = this.parseNumber(value); } else { delete this._strokeWidth; } } ngOnChanges(changes: LucideAngularComponentChanges): void { if ( changes.name || changes.img || changes.color || changes.size || changes.absoluteStrokeWidth || changes.strokeWidth || changes.class ) { this.color = this.color ?? this.iconConfig.color; this.size = this.parseNumber(this.size ?? this.iconConfig.size); this.strokeWidth = this.parseNumber(this.strokeWidth ?? this.iconConfig.strokeWidth); this.absoluteStrokeWidth = this.absoluteStrokeWidth ?? this.iconConfig.absoluteStrokeWidth; const nameOrIcon = this.img ?? this.name; if (typeof nameOrIcon === 'string') { const icoOfName = this.getIcon(this.toPascalCase(nameOrIcon)); if (icoOfName) { this.replaceElement(icoOfName); } else { throw new Error( `The "${nameOrIcon}" icon has not been provided by any available icon providers.`, ); } } else if (Array.isArray(nameOrIcon)) { this.replaceElement(nameOrIcon); } else { throw new Error(`No icon name or image has been provided.`); } } this.changeDetector.markForCheck(); } replaceElement(img: LucideIconData): void { const attributes = { ...defaultAttributes, width: this.size, height: this.size, stroke: this.color ?? this.iconConfig.color, 'stroke-width': this.absoluteStrokeWidth ? formatFixed(this.strokeWidth / (this.size / this.defaultSize)) : this.strokeWidth.toString(10), }; const icoElement = this.createElement(['svg', attributes, img]); icoElement.classList.add('lucide'); if (typeof this.name === 'string') { icoElement.classList.add(`lucide-${this.name.replace('_', '-')}`); } if (this.class) { icoElement.classList.add( ...this.class .split(/ /) .map((a) => a.trim()) .filter((a) => a.length > 0), ); } const childElements = this.elem.nativeElement.childNodes; for (const child of childElements) { this.renderer.removeChild(this.elem.nativeElement, child); } this.renderer.appendChild(this.elem.nativeElement, icoElement); } toPascalCase(str: string): string { return str.replace( /(\w)([a-z0-9]*)(_|-|\s*)/g, (g0, g1, g2) => g1.toUpperCase() + g2.toLowerCase(), ); } private parseNumber(value: string | number): number { if (typeof value === 'string') { const parsedValue = parseInt(value, 10); if (isNaN(parsedValue)) { throw new Error(`${value} is not numeric.`); } return parsedValue; } return value; } private getIcon(name: string): LucideIconData | null { for (const iconProvider of Array.isArray(this.iconProviders) ? this.iconProviders : [this.iconProviders]) { if (iconProvider.hasIcon(name)) { return iconProvider.getIcon(name); } } return null; } private createElement([tag, attrs, children = []]: readonly [ string, SvgAttributes, LucideIconData?, ]) { const element = this.renderer.createElement(tag, 'http://www.w3.org/2000/svg'); Object.keys(attrs).forEach((name) => { const attrValue: string = typeof attrs[name] === 'string' ? (attrs[name] as string) : attrs[name].toString(10); this.renderer.setAttribute(element, name, attrValue); }); if (children.length) { children.forEach((child) => { const childElement = this.createElement(child); this.renderer.appendChild(element, childElement); }); } return element; } }
lucide-icons/lucide/packages/lucide-angular/src/lib/lucide-angular.component.ts
{ "file_path": "lucide-icons/lucide/packages/lucide-angular/src/lib/lucide-angular.component.ts", "repo_id": "lucide-icons/lucide", "token_count": 2321 }
80
/// <reference types="react" /> declare module 'lucide-react-native'; // Create interface extending SVGProps export interface LucideProps extends Partial<React.SVGProps<SVGSVGElement>> { size?: string | number; } export declare const createLucideIcon: ( iconName: string, iconNode: any[], ) => (props: LucideProps) => JSX.Element; export type Icon = React.FC<LucideProps>; // Generated icons export declare const Accessibility: (props: LucideProps) => JSX.Element; export declare const Activity: (props: LucideProps) => JSX.Element; export declare const AirVent: (props: LucideProps) => JSX.Element; export declare const Airplay: (props: LucideProps) => JSX.Element; export declare const AlarmCheck: (props: LucideProps) => JSX.Element; export declare const AlarmClockOff: (props: LucideProps) => JSX.Element; export declare const AlarmClock: (props: LucideProps) => JSX.Element; export declare const AlarmMinus: (props: LucideProps) => JSX.Element; export declare const AlarmPlus: (props: LucideProps) => JSX.Element; export declare const Album: (props: LucideProps) => JSX.Element; export declare const AlertCircle: (props: LucideProps) => JSX.Element; export declare const AlertOctagon: (props: LucideProps) => JSX.Element; export declare const AlertTriangle: (props: LucideProps) => JSX.Element; export declare const AlignCenterHorizontal: (props: LucideProps) => JSX.Element; export declare const AlignCenterVertical: (props: LucideProps) => JSX.Element; export declare const AlignCenter: (props: LucideProps) => JSX.Element; export declare const AlignEndHorizontal: (props: LucideProps) => JSX.Element; export declare const AlignEndVertical: (props: LucideProps) => JSX.Element; export declare const AlignHorizontalDistributeCenter: (props: LucideProps) => JSX.Element; export declare const AlignHorizontalDistributeEnd: (props: LucideProps) => JSX.Element; export declare const AlignHorizontalDistributeStart: (props: LucideProps) => JSX.Element; export declare const AlignHorizontalJustifyCenter: (props: LucideProps) => JSX.Element; export declare const AlignHorizontalJustifyEnd: (props: LucideProps) => JSX.Element; export declare const AlignHorizontalJustifyStart: (props: LucideProps) => JSX.Element; export declare const AlignHorizontalSpaceAround: (props: LucideProps) => JSX.Element; export declare const AlignHorizontalSpaceBetween: (props: LucideProps) => JSX.Element; export declare const AlignJustify: (props: LucideProps) => JSX.Element; export declare const AlignLeft: (props: LucideProps) => JSX.Element; export declare const AlignRight: (props: LucideProps) => JSX.Element; export declare const AlignStartHorizontal: (props: LucideProps) => JSX.Element; export declare const AlignStartVertical: (props: LucideProps) => JSX.Element; export declare const AlignVerticalDistributeCenter: (props: LucideProps) => JSX.Element; export declare const AlignVerticalDistributeEnd: (props: LucideProps) => JSX.Element; export declare const AlignVerticalDistributeStart: (props: LucideProps) => JSX.Element; export declare const AlignVerticalJustifyCenter: (props: LucideProps) => JSX.Element; export declare const AlignVerticalJustifyEnd: (props: LucideProps) => JSX.Element; export declare const AlignVerticalJustifyStart: (props: LucideProps) => JSX.Element; export declare const AlignVerticalSpaceAround: (props: LucideProps) => JSX.Element; export declare const AlignVerticalSpaceBetween: (props: LucideProps) => JSX.Element; export declare const Anchor: (props: LucideProps) => JSX.Element; export declare const Angry: (props: LucideProps) => JSX.Element; export declare const Annoyed: (props: LucideProps) => JSX.Element; export declare const Aperture: (props: LucideProps) => JSX.Element; export declare const Apple: (props: LucideProps) => JSX.Element; export declare const ArchiveRestore: (props: LucideProps) => JSX.Element; export declare const Archive: (props: LucideProps) => JSX.Element; export declare const Armchair: (props: LucideProps) => JSX.Element; export declare const ArrowBigDown: (props: LucideProps) => JSX.Element; export declare const ArrowBigLeft: (props: LucideProps) => JSX.Element; export declare const ArrowBigRight: (props: LucideProps) => JSX.Element; export declare const ArrowBigUp: (props: LucideProps) => JSX.Element; export declare const ArrowDownCircle: (props: LucideProps) => JSX.Element; export declare const ArrowDownLeft: (props: LucideProps) => JSX.Element; export declare const ArrowDownRight: (props: LucideProps) => JSX.Element; export declare const ArrowDown: (props: LucideProps) => JSX.Element; export declare const ArrowLeftCircle: (props: LucideProps) => JSX.Element; export declare const ArrowLeftRight: (props: LucideProps) => JSX.Element; export declare const ArrowLeft: (props: LucideProps) => JSX.Element; export declare const ArrowRightCircle: (props: LucideProps) => JSX.Element; export declare const ArrowRight: (props: LucideProps) => JSX.Element; export declare const ArrowUpCircle: (props: LucideProps) => JSX.Element; export declare const ArrowUpDown: (props: LucideProps) => JSX.Element; export declare const ArrowUpLeft: (props: LucideProps) => JSX.Element; export declare const ArrowUpRight: (props: LucideProps) => JSX.Element; export declare const ArrowUp: (props: LucideProps) => JSX.Element; export declare const Asterisk: (props: LucideProps) => JSX.Element; export declare const AtSign: (props: LucideProps) => JSX.Element; export declare const Award: (props: LucideProps) => JSX.Element; export declare const Axe: (props: LucideProps) => JSX.Element; export declare const Axis3d: (props: LucideProps) => JSX.Element; export declare const Baby: (props: LucideProps) => JSX.Element; export declare const Backpack: (props: LucideProps) => JSX.Element; export declare const BaggageClaim: (props: LucideProps) => JSX.Element; export declare const Banana: (props: LucideProps) => JSX.Element; export declare const Banknote: (props: LucideProps) => JSX.Element; export declare const BarChart2: (props: LucideProps) => JSX.Element; export declare const BarChart3: (props: LucideProps) => JSX.Element; export declare const BarChart4: (props: LucideProps) => JSX.Element; export declare const BarChartHorizontal: (props: LucideProps) => JSX.Element; export declare const BarChart: (props: LucideProps) => JSX.Element; export declare const Baseline: (props: LucideProps) => JSX.Element; export declare const Bath: (props: LucideProps) => JSX.Element; export declare const BatteryCharging: (props: LucideProps) => JSX.Element; export declare const BatteryFull: (props: LucideProps) => JSX.Element; export declare const BatteryLow: (props: LucideProps) => JSX.Element; export declare const BatteryMedium: (props: LucideProps) => JSX.Element; export declare const Battery: (props: LucideProps) => JSX.Element; export declare const Beaker: (props: LucideProps) => JSX.Element; export declare const BeanOff: (props: LucideProps) => JSX.Element; export declare const Bean: (props: LucideProps) => JSX.Element; export declare const BedDouble: (props: LucideProps) => JSX.Element; export declare const BedSingle: (props: LucideProps) => JSX.Element; export declare const Bed: (props: LucideProps) => JSX.Element; export declare const Beer: (props: LucideProps) => JSX.Element; export declare const BellMinus: (props: LucideProps) => JSX.Element; export declare const BellOff: (props: LucideProps) => JSX.Element; export declare const BellPlus: (props: LucideProps) => JSX.Element; export declare const BellRing: (props: LucideProps) => JSX.Element; export declare const Bell: (props: LucideProps) => JSX.Element; export declare const Bike: (props: LucideProps) => JSX.Element; export declare const Binary: (props: LucideProps) => JSX.Element; export declare const Bitcoin: (props: LucideProps) => JSX.Element; export declare const BluetoothConnected: (props: LucideProps) => JSX.Element; export declare const BluetoothOff: (props: LucideProps) => JSX.Element; export declare const BluetoothSearching: (props: LucideProps) => JSX.Element; export declare const Bluetooth: (props: LucideProps) => JSX.Element; export declare const Bold: (props: LucideProps) => JSX.Element; export declare const Bomb: (props: LucideProps) => JSX.Element; export declare const Bone: (props: LucideProps) => JSX.Element; export declare const BookOpenCheck: (props: LucideProps) => JSX.Element; export declare const BookOpen: (props: LucideProps) => JSX.Element; export declare const Book: (props: LucideProps) => JSX.Element; export declare const BookmarkMinus: (props: LucideProps) => JSX.Element; export declare const BookmarkPlus: (props: LucideProps) => JSX.Element; export declare const Bookmark: (props: LucideProps) => JSX.Element; export declare const Bot: (props: LucideProps) => JSX.Element; export declare const BoxSelect: (props: LucideProps) => JSX.Element; export declare const Box: (props: LucideProps) => JSX.Element; export declare const Boxes: (props: LucideProps) => JSX.Element; export declare const Briefcase: (props: LucideProps) => JSX.Element; export declare const Brush: (props: LucideProps) => JSX.Element; export declare const Bug: (props: LucideProps) => JSX.Element; export declare const Building2: (props: LucideProps) => JSX.Element; export declare const Building: (props: LucideProps) => JSX.Element; export declare const Bus: (props: LucideProps) => JSX.Element; export declare const Cake: (props: LucideProps) => JSX.Element; export declare const Calculator: (props: LucideProps) => JSX.Element; export declare const CalendarCheck2: (props: LucideProps) => JSX.Element; export declare const CalendarCheck: (props: LucideProps) => JSX.Element; export declare const CalendarClock: (props: LucideProps) => JSX.Element; export declare const CalendarDays: (props: LucideProps) => JSX.Element; export declare const CalendarHeart: (props: LucideProps) => JSX.Element; export declare const CalendarMinus: (props: LucideProps) => JSX.Element; export declare const CalendarOff: (props: LucideProps) => JSX.Element; export declare const CalendarPlus: (props: LucideProps) => JSX.Element; export declare const CalendarRange: (props: LucideProps) => JSX.Element; export declare const CalendarSearch: (props: LucideProps) => JSX.Element; export declare const CalendarX2: (props: LucideProps) => JSX.Element; export declare const CalendarX: (props: LucideProps) => JSX.Element; export declare const Calendar: (props: LucideProps) => JSX.Element; export declare const CameraOff: (props: LucideProps) => JSX.Element; export declare const Camera: (props: LucideProps) => JSX.Element; export declare const CandyOff: (props: LucideProps) => JSX.Element; export declare const Candy: (props: LucideProps) => JSX.Element; export declare const Car: (props: LucideProps) => JSX.Element; export declare const Carrot: (props: LucideProps) => JSX.Element; export declare const Cast: (props: LucideProps) => JSX.Element; export declare const Cat: (props: LucideProps) => JSX.Element; export declare const CheckCheck: (props: LucideProps) => JSX.Element; export declare const CheckCircle2: (props: LucideProps) => JSX.Element; export declare const CheckCircle: (props: LucideProps) => JSX.Element; export declare const CheckSquare: (props: LucideProps) => JSX.Element; export declare const Check: (props: LucideProps) => JSX.Element; export declare const ChefHat: (props: LucideProps) => JSX.Element; export declare const Cherry: (props: LucideProps) => JSX.Element; export declare const ChevronDown: (props: LucideProps) => JSX.Element; export declare const ChevronFirst: (props: LucideProps) => JSX.Element; export declare const ChevronLast: (props: LucideProps) => JSX.Element; export declare const ChevronLeft: (props: LucideProps) => JSX.Element; export declare const ChevronRight: (props: LucideProps) => JSX.Element; export declare const ChevronUp: (props: LucideProps) => JSX.Element; export declare const ChevronsDownUp: (props: LucideProps) => JSX.Element; export declare const ChevronsDown: (props: LucideProps) => JSX.Element; export declare const ChevronsLeftRight: (props: LucideProps) => JSX.Element; export declare const ChevronsLeft: (props: LucideProps) => JSX.Element; export declare const ChevronsRightLeft: (props: LucideProps) => JSX.Element; export declare const ChevronsRight: (props: LucideProps) => JSX.Element; export declare const ChevronsUpDown: (props: LucideProps) => JSX.Element; export declare const ChevronsUp: (props: LucideProps) => JSX.Element; export declare const Chrome: (props: LucideProps) => JSX.Element; export declare const CigaretteOff: (props: LucideProps) => JSX.Element; export declare const Cigarette: (props: LucideProps) => JSX.Element; export declare const CircleDot: (props: LucideProps) => JSX.Element; export declare const CircleEllipsis: (props: LucideProps) => JSX.Element; export declare const CircleSlashed: (props: LucideProps) => JSX.Element; export declare const Circle: (props: LucideProps) => JSX.Element; export declare const Citrus: (props: LucideProps) => JSX.Element; export declare const Clapperboard: (props: LucideProps) => JSX.Element; export declare const ClipboardCheck: (props: LucideProps) => JSX.Element; export declare const ClipboardCopy: (props: LucideProps) => JSX.Element; export declare const ClipboardEdit: (props: LucideProps) => JSX.Element; export declare const ClipboardList: (props: LucideProps) => JSX.Element; export declare const ClipboardSignature: (props: LucideProps) => JSX.Element; export declare const ClipboardType: (props: LucideProps) => JSX.Element; export declare const ClipboardX: (props: LucideProps) => JSX.Element; export declare const Clipboard: (props: LucideProps) => JSX.Element; export declare const Clock1: (props: LucideProps) => JSX.Element; export declare const Clock10: (props: LucideProps) => JSX.Element; export declare const Clock11: (props: LucideProps) => JSX.Element; export declare const Clock12: (props: LucideProps) => JSX.Element; export declare const Clock2: (props: LucideProps) => JSX.Element; export declare const Clock3: (props: LucideProps) => JSX.Element; export declare const Clock4: (props: LucideProps) => JSX.Element; export declare const Clock5: (props: LucideProps) => JSX.Element; export declare const Clock6: (props: LucideProps) => JSX.Element; export declare const Clock7: (props: LucideProps) => JSX.Element; export declare const Clock8: (props: LucideProps) => JSX.Element; export declare const Clock9: (props: LucideProps) => JSX.Element; export declare const Clock: (props: LucideProps) => JSX.Element; export declare const CloudCog: (props: LucideProps) => JSX.Element; export declare const CloudDrizzle: (props: LucideProps) => JSX.Element; export declare const CloudFog: (props: LucideProps) => JSX.Element; export declare const CloudHail: (props: LucideProps) => JSX.Element; export declare const CloudLightning: (props: LucideProps) => JSX.Element; export declare const CloudMoonRain: (props: LucideProps) => JSX.Element; export declare const CloudMoon: (props: LucideProps) => JSX.Element; export declare const CloudOff: (props: LucideProps) => JSX.Element; export declare const CloudRainWind: (props: LucideProps) => JSX.Element; export declare const CloudRain: (props: LucideProps) => JSX.Element; export declare const CloudSnow: (props: LucideProps) => JSX.Element; export declare const CloudSunRain: (props: LucideProps) => JSX.Element; export declare const CloudSun: (props: LucideProps) => JSX.Element; export declare const Cloud: (props: LucideProps) => JSX.Element; export declare const Cloudy: (props: LucideProps) => JSX.Element; export declare const Clover: (props: LucideProps) => JSX.Element; export declare const Code2: (props: LucideProps) => JSX.Element; export declare const Code: (props: LucideProps) => JSX.Element; export declare const Codepen: (props: LucideProps) => JSX.Element; export declare const Codesandbox: (props: LucideProps) => JSX.Element; export declare const Coffee: (props: LucideProps) => JSX.Element; export declare const Cog: (props: LucideProps) => JSX.Element; export declare const Coins: (props: LucideProps) => JSX.Element; export declare const Columns: (props: LucideProps) => JSX.Element; export declare const Command: (props: LucideProps) => JSX.Element; export declare const Compass: (props: LucideProps) => JSX.Element; export declare const Component: (props: LucideProps) => JSX.Element; export declare const ConciergeBell: (props: LucideProps) => JSX.Element; export declare const Contact: (props: LucideProps) => JSX.Element; export declare const Contrast: (props: LucideProps) => JSX.Element; export declare const Cookie: (props: LucideProps) => JSX.Element; export declare const Copy: (props: LucideProps) => JSX.Element; export declare const Copyleft: (props: LucideProps) => JSX.Element; export declare const Copyright: (props: LucideProps) => JSX.Element; export declare const CornerDownLeft: (props: LucideProps) => JSX.Element; export declare const CornerDownRight: (props: LucideProps) => JSX.Element; export declare const CornerLeftDown: (props: LucideProps) => JSX.Element; export declare const CornerLeftUp: (props: LucideProps) => JSX.Element; export declare const CornerRightDown: (props: LucideProps) => JSX.Element; export declare const CornerRightUp: (props: LucideProps) => JSX.Element; export declare const CornerUpLeft: (props: LucideProps) => JSX.Element; export declare const CornerUpRight: (props: LucideProps) => JSX.Element; export declare const Cpu: (props: LucideProps) => JSX.Element; export declare const CreditCard: (props: LucideProps) => JSX.Element; export declare const Croissant: (props: LucideProps) => JSX.Element; export declare const Crop: (props: LucideProps) => JSX.Element; export declare const Cross: (props: LucideProps) => JSX.Element; export declare const Crosshair: (props: LucideProps) => JSX.Element; export declare const Crown: (props: LucideProps) => JSX.Element; export declare const CupSoda: (props: LucideProps) => JSX.Element; export declare const CurlyBraces: (props: LucideProps) => JSX.Element; export declare const Currency: (props: LucideProps) => JSX.Element; export declare const Database: (props: LucideProps) => JSX.Element; export declare const Delete: (props: LucideProps) => JSX.Element; export declare const Diamond: (props: LucideProps) => JSX.Element; export declare const Dice1: (props: LucideProps) => JSX.Element; export declare const Dice2: (props: LucideProps) => JSX.Element; export declare const Dice3: (props: LucideProps) => JSX.Element; export declare const Dice4: (props: LucideProps) => JSX.Element; export declare const Dice5: (props: LucideProps) => JSX.Element; export declare const Dice6: (props: LucideProps) => JSX.Element; export declare const Dices: (props: LucideProps) => JSX.Element; export declare const Diff: (props: LucideProps) => JSX.Element; export declare const Disc: (props: LucideProps) => JSX.Element; export declare const DivideCircle: (props: LucideProps) => JSX.Element; export declare const DivideSquare: (props: LucideProps) => JSX.Element; export declare const Divide: (props: LucideProps) => JSX.Element; export declare const DnaOff: (props: LucideProps) => JSX.Element; export declare const Dna: (props: LucideProps) => JSX.Element; export declare const Dog: (props: LucideProps) => JSX.Element; export declare const DollarSign: (props: LucideProps) => JSX.Element; export declare const DownloadCloud: (props: LucideProps) => JSX.Element; export declare const Download: (props: LucideProps) => JSX.Element; export declare const Dribbble: (props: LucideProps) => JSX.Element; export declare const Droplet: (props: LucideProps) => JSX.Element; export declare const Droplets: (props: LucideProps) => JSX.Element; export declare const Drumstick: (props: LucideProps) => JSX.Element; export declare const Dumbbell: (props: LucideProps) => JSX.Element; export declare const EarOff: (props: LucideProps) => JSX.Element; export declare const Ear: (props: LucideProps) => JSX.Element; export declare const Edit2: (props: LucideProps) => JSX.Element; export declare const Edit3: (props: LucideProps) => JSX.Element; export declare const Edit: (props: LucideProps) => JSX.Element; export declare const EggFried: (props: LucideProps) => JSX.Element; export declare const EggOff: (props: LucideProps) => JSX.Element; export declare const Egg: (props: LucideProps) => JSX.Element; export declare const EqualNot: (props: LucideProps) => JSX.Element; export declare const Equal: (props: LucideProps) => JSX.Element; export declare const Eraser: (props: LucideProps) => JSX.Element; export declare const Euro: (props: LucideProps) => JSX.Element; export declare const Expand: (props: LucideProps) => JSX.Element; export declare const ExternalLink: (props: LucideProps) => JSX.Element; export declare const EyeOff: (props: LucideProps) => JSX.Element; export declare const Eye: (props: LucideProps) => JSX.Element; export declare const Facebook: (props: LucideProps) => JSX.Element; export declare const Factory: (props: LucideProps) => JSX.Element; export declare const Fan: (props: LucideProps) => JSX.Element; export declare const FastForward: (props: LucideProps) => JSX.Element; export declare const Feather: (props: LucideProps) => JSX.Element; export declare const Figma: (props: LucideProps) => JSX.Element; export declare const FileArchive: (props: LucideProps) => JSX.Element; export declare const FileAudio2: (props: LucideProps) => JSX.Element; export declare const FileAudio: (props: LucideProps) => JSX.Element; export declare const FileAxis3d: (props: LucideProps) => JSX.Element; export declare const FileBadge2: (props: LucideProps) => JSX.Element; export declare const FileBadge: (props: LucideProps) => JSX.Element; export declare const FileBarChart2: (props: LucideProps) => JSX.Element; export declare const FileBarChart: (props: LucideProps) => JSX.Element; export declare const FileBox: (props: LucideProps) => JSX.Element; export declare const FileCheck2: (props: LucideProps) => JSX.Element; export declare const FileCheck: (props: LucideProps) => JSX.Element; export declare const FileClock: (props: LucideProps) => JSX.Element; export declare const FileCode: (props: LucideProps) => JSX.Element; export declare const FileCog2: (props: LucideProps) => JSX.Element; export declare const FileCog: (props: LucideProps) => JSX.Element; export declare const FileDiff: (props: LucideProps) => JSX.Element; export declare const FileDigit: (props: LucideProps) => JSX.Element; export declare const FileDown: (props: LucideProps) => JSX.Element; export declare const FileEdit: (props: LucideProps) => JSX.Element; export declare const FileHeart: (props: LucideProps) => JSX.Element; export declare const FileImage: (props: LucideProps) => JSX.Element; export declare const FileInput: (props: LucideProps) => JSX.Element; export declare const FileJson2: (props: LucideProps) => JSX.Element; export declare const FileJson: (props: LucideProps) => JSX.Element; export declare const FileKey2: (props: LucideProps) => JSX.Element; export declare const FileKey: (props: LucideProps) => JSX.Element; export declare const FileLineChart: (props: LucideProps) => JSX.Element; export declare const FileLock2: (props: LucideProps) => JSX.Element; export declare const FileLock: (props: LucideProps) => JSX.Element; export declare const FileMinus2: (props: LucideProps) => JSX.Element; export declare const FileMinus: (props: LucideProps) => JSX.Element; export declare const FileOutput: (props: LucideProps) => JSX.Element; export declare const FilePieChart: (props: LucideProps) => JSX.Element; export declare const FilePlus2: (props: LucideProps) => JSX.Element; export declare const FilePlus: (props: LucideProps) => JSX.Element; export declare const FileQuestion: (props: LucideProps) => JSX.Element; export declare const FileScan: (props: LucideProps) => JSX.Element; export declare const FileSearch2: (props: LucideProps) => JSX.Element; export declare const FileSearch: (props: LucideProps) => JSX.Element; export declare const FileSignature: (props: LucideProps) => JSX.Element; export declare const FileSpreadsheet: (props: LucideProps) => JSX.Element; export declare const FileSymlink: (props: LucideProps) => JSX.Element; export declare const FileTerminal: (props: LucideProps) => JSX.Element; export declare const FileText: (props: LucideProps) => JSX.Element; export declare const FileType2: (props: LucideProps) => JSX.Element; export declare const FileType: (props: LucideProps) => JSX.Element; export declare const FileUp: (props: LucideProps) => JSX.Element; export declare const FileVideo2: (props: LucideProps) => JSX.Element; export declare const FileVideo: (props: LucideProps) => JSX.Element; export declare const FileVolume2: (props: LucideProps) => JSX.Element; export declare const FileVolume: (props: LucideProps) => JSX.Element; export declare const FileWarning: (props: LucideProps) => JSX.Element; export declare const FileX2: (props: LucideProps) => JSX.Element; export declare const FileX: (props: LucideProps) => JSX.Element; export declare const File: (props: LucideProps) => JSX.Element; export declare const Files: (props: LucideProps) => JSX.Element; export declare const Film: (props: LucideProps) => JSX.Element; export declare const Filter: (props: LucideProps) => JSX.Element; export declare const Fingerprint: (props: LucideProps) => JSX.Element; export declare const FlagOff: (props: LucideProps) => JSX.Element; export declare const FlagTriangleLeft: (props: LucideProps) => JSX.Element; export declare const FlagTriangleRight: (props: LucideProps) => JSX.Element; export declare const Flag: (props: LucideProps) => JSX.Element; export declare const Flame: (props: LucideProps) => JSX.Element; export declare const FlashlightOff: (props: LucideProps) => JSX.Element; export declare const Flashlight: (props: LucideProps) => JSX.Element; export declare const FlaskConicalOff: (props: LucideProps) => JSX.Element; export declare const FlaskConical: (props: LucideProps) => JSX.Element; export declare const FlaskRound: (props: LucideProps) => JSX.Element; export declare const FlipHorizontal2: (props: LucideProps) => JSX.Element; export declare const FlipHorizontal: (props: LucideProps) => JSX.Element; export declare const FlipVertical2: (props: LucideProps) => JSX.Element; export declare const FlipVertical: (props: LucideProps) => JSX.Element; export declare const Flower2: (props: LucideProps) => JSX.Element; export declare const Flower: (props: LucideProps) => JSX.Element; export declare const Focus: (props: LucideProps) => JSX.Element; export declare const FolderArchive: (props: LucideProps) => JSX.Element; export declare const FolderCheck: (props: LucideProps) => JSX.Element; export declare const FolderClock: (props: LucideProps) => JSX.Element; export declare const FolderClosed: (props: LucideProps) => JSX.Element; export declare const FolderCog2: (props: LucideProps) => JSX.Element; export declare const FolderCog: (props: LucideProps) => JSX.Element; export declare const FolderDown: (props: LucideProps) => JSX.Element; export declare const FolderEdit: (props: LucideProps) => JSX.Element; export declare const FolderHeart: (props: LucideProps) => JSX.Element; export declare const FolderInput: (props: LucideProps) => JSX.Element; export declare const FolderKey: (props: LucideProps) => JSX.Element; export declare const FolderLock: (props: LucideProps) => JSX.Element; export declare const FolderMinus: (props: LucideProps) => JSX.Element; export declare const FolderOpen: (props: LucideProps) => JSX.Element; export declare const FolderOutput: (props: LucideProps) => JSX.Element; export declare const FolderPlus: (props: LucideProps) => JSX.Element; export declare const FolderSearch2: (props: LucideProps) => JSX.Element; export declare const FolderSearch: (props: LucideProps) => JSX.Element; export declare const FolderSymlink: (props: LucideProps) => JSX.Element; export declare const FolderTree: (props: LucideProps) => JSX.Element; export declare const FolderUp: (props: LucideProps) => JSX.Element; export declare const FolderX: (props: LucideProps) => JSX.Element; export declare const Folder: (props: LucideProps) => JSX.Element; export declare const Folders: (props: LucideProps) => JSX.Element; export declare const FormInput: (props: LucideProps) => JSX.Element; export declare const Forward: (props: LucideProps) => JSX.Element; export declare const Frame: (props: LucideProps) => JSX.Element; export declare const Framer: (props: LucideProps) => JSX.Element; export declare const Frown: (props: LucideProps) => JSX.Element; export declare const Fuel: (props: LucideProps) => JSX.Element; export declare const FunctionSquare: (props: LucideProps) => JSX.Element; export declare const Gamepad2: (props: LucideProps) => JSX.Element; export declare const Gamepad: (props: LucideProps) => JSX.Element; export declare const Gauge: (props: LucideProps) => JSX.Element; export declare const Gavel: (props: LucideProps) => JSX.Element; export declare const Gem: (props: LucideProps) => JSX.Element; export declare const Ghost: (props: LucideProps) => JSX.Element; export declare const Gift: (props: LucideProps) => JSX.Element; export declare const GitBranchPlus: (props: LucideProps) => JSX.Element; export declare const GitBranch: (props: LucideProps) => JSX.Element; export declare const GitCommit: (props: LucideProps) => JSX.Element; export declare const GitCompare: (props: LucideProps) => JSX.Element; export declare const GitFork: (props: LucideProps) => JSX.Element; export declare const GitMerge: (props: LucideProps) => JSX.Element; export declare const GitPullRequestClosed: (props: LucideProps) => JSX.Element; export declare const GitPullRequestDraft: (props: LucideProps) => JSX.Element; export declare const GitPullRequest: (props: LucideProps) => JSX.Element; export declare const Github: (props: LucideProps) => JSX.Element; export declare const Gitlab: (props: LucideProps) => JSX.Element; export declare const GlassWater: (props: LucideProps) => JSX.Element; export declare const Glasses: (props: LucideProps) => JSX.Element; export declare const Globe2: (props: LucideProps) => JSX.Element; export declare const Globe: (props: LucideProps) => JSX.Element; export declare const Grab: (props: LucideProps) => JSX.Element; export declare const GraduationCap: (props: LucideProps) => JSX.Element; export declare const Grape: (props: LucideProps) => JSX.Element; export declare const Grid: (props: LucideProps) => JSX.Element; export declare const GripHorizontal: (props: LucideProps) => JSX.Element; export declare const GripVertical: (props: LucideProps) => JSX.Element; export declare const Hammer: (props: LucideProps) => JSX.Element; export declare const HandMetal: (props: LucideProps) => JSX.Element; export declare const Hand: (props: LucideProps) => JSX.Element; export declare const HardDrive: (props: LucideProps) => JSX.Element; export declare const HardHat: (props: LucideProps) => JSX.Element; export declare const Hash: (props: LucideProps) => JSX.Element; export declare const Haze: (props: LucideProps) => JSX.Element; export declare const Heading1: (props: LucideProps) => JSX.Element; export declare const Heading2: (props: LucideProps) => JSX.Element; export declare const Heading3: (props: LucideProps) => JSX.Element; export declare const Heading4: (props: LucideProps) => JSX.Element; export declare const Heading5: (props: LucideProps) => JSX.Element; export declare const Heading6: (props: LucideProps) => JSX.Element; export declare const Heading: (props: LucideProps) => JSX.Element; export declare const Headphones: (props: LucideProps) => JSX.Element; export declare const HeartCrack: (props: LucideProps) => JSX.Element; export declare const HeartHandshake: (props: LucideProps) => JSX.Element; export declare const HeartOff: (props: LucideProps) => JSX.Element; export declare const HeartPulse: (props: LucideProps) => JSX.Element; export declare const Heart: (props: LucideProps) => JSX.Element; export declare const HelpCircle: (props: LucideProps) => JSX.Element; export declare const Hexagon: (props: LucideProps) => JSX.Element; export declare const Highlighter: (props: LucideProps) => JSX.Element; export declare const History: (props: LucideProps) => JSX.Element; export declare const Home: (props: LucideProps) => JSX.Element; export declare const HopOff: (props: LucideProps) => JSX.Element; export declare const Hop: (props: LucideProps) => JSX.Element; export declare const Hourglass: (props: LucideProps) => JSX.Element; export declare const IceCream: (props: LucideProps) => JSX.Element; export declare const ImageMinus: (props: LucideProps) => JSX.Element; export declare const ImageOff: (props: LucideProps) => JSX.Element; export declare const ImagePlus: (props: LucideProps) => JSX.Element; export declare const Image: (props: LucideProps) => JSX.Element; export declare const Import: (props: LucideProps) => JSX.Element; export declare const Inbox: (props: LucideProps) => JSX.Element; export declare const Indent: (props: LucideProps) => JSX.Element; export declare const IndianRupee: (props: LucideProps) => JSX.Element; export declare const Infinity: (props: LucideProps) => JSX.Element; export declare const Info: (props: LucideProps) => JSX.Element; export declare const Inspect: (props: LucideProps) => JSX.Element; export declare const Instagram: (props: LucideProps) => JSX.Element; export declare const Italic: (props: LucideProps) => JSX.Element; export declare const JapaneseYen: (props: LucideProps) => JSX.Element; export declare const Joystick: (props: LucideProps) => JSX.Element; export declare const Key: (props: LucideProps) => JSX.Element; export declare const Keyboard: (props: LucideProps) => JSX.Element; export declare const LampCeiling: (props: LucideProps) => JSX.Element; export declare const LampDesk: (props: LucideProps) => JSX.Element; export declare const LampFloor: (props: LucideProps) => JSX.Element; export declare const LampWallDown: (props: LucideProps) => JSX.Element; export declare const LampWallUp: (props: LucideProps) => JSX.Element; export declare const Lamp: (props: LucideProps) => JSX.Element; export declare const Landmark: (props: LucideProps) => JSX.Element; export declare const Languages: (props: LucideProps) => JSX.Element; export declare const Laptop2: (props: LucideProps) => JSX.Element; export declare const Laptop: (props: LucideProps) => JSX.Element; export declare const LassoSelect: (props: LucideProps) => JSX.Element; export declare const Lasso: (props: LucideProps) => JSX.Element; export declare const Laugh: (props: LucideProps) => JSX.Element; export declare const Layers: (props: LucideProps) => JSX.Element; export declare const LayoutDashboard: (props: LucideProps) => JSX.Element; export declare const LayoutGrid: (props: LucideProps) => JSX.Element; export declare const LayoutList: (props: LucideProps) => JSX.Element; export declare const LayoutTemplate: (props: LucideProps) => JSX.Element; export declare const Layout: (props: LucideProps) => JSX.Element; export declare const Leaf: (props: LucideProps) => JSX.Element; export declare const Library: (props: LucideProps) => JSX.Element; export declare const LifeBuoy: (props: LucideProps) => JSX.Element; export declare const LightbulbOff: (props: LucideProps) => JSX.Element; export declare const Lightbulb: (props: LucideProps) => JSX.Element; export declare const LineChart: (props: LucideProps) => JSX.Element; export declare const Link2Off: (props: LucideProps) => JSX.Element; export declare const Link2: (props: LucideProps) => JSX.Element; export declare const Link: (props: LucideProps) => JSX.Element; export declare const Linkedin: (props: LucideProps) => JSX.Element; export declare const ListChecks: (props: LucideProps) => JSX.Element; export declare const ListEnd: (props: LucideProps) => JSX.Element; export declare const ListMinus: (props: LucideProps) => JSX.Element; export declare const ListMusic: (props: LucideProps) => JSX.Element; export declare const ListOrdered: (props: LucideProps) => JSX.Element; export declare const ListPlus: (props: LucideProps) => JSX.Element; export declare const ListStart: (props: LucideProps) => JSX.Element; export declare const ListVideo: (props: LucideProps) => JSX.Element; export declare const ListX: (props: LucideProps) => JSX.Element; export declare const List: (props: LucideProps) => JSX.Element; export declare const Loader2: (props: LucideProps) => JSX.Element; export declare const Loader: (props: LucideProps) => JSX.Element; export declare const LocateFixed: (props: LucideProps) => JSX.Element; export declare const LocateOff: (props: LucideProps) => JSX.Element; export declare const Locate: (props: LucideProps) => JSX.Element; export declare const Lock: (props: LucideProps) => JSX.Element; export declare const LogIn: (props: LucideProps) => JSX.Element; export declare const LogOut: (props: LucideProps) => JSX.Element; export declare const Luggage: (props: LucideProps) => JSX.Element; export declare const Magnet: (props: LucideProps) => JSX.Element; export declare const MailCheck: (props: LucideProps) => JSX.Element; export declare const MailMinus: (props: LucideProps) => JSX.Element; export declare const MailOpen: (props: LucideProps) => JSX.Element; export declare const MailPlus: (props: LucideProps) => JSX.Element; export declare const MailQuestion: (props: LucideProps) => JSX.Element; export declare const MailSearch: (props: LucideProps) => JSX.Element; export declare const MailWarning: (props: LucideProps) => JSX.Element; export declare const MailX: (props: LucideProps) => JSX.Element; export declare const Mail: (props: LucideProps) => JSX.Element; export declare const Mails: (props: LucideProps) => JSX.Element; export declare const MapPinOff: (props: LucideProps) => JSX.Element; export declare const MapPin: (props: LucideProps) => JSX.Element; export declare const Map: (props: LucideProps) => JSX.Element; export declare const Martini: (props: LucideProps) => JSX.Element; export declare const Maximize2: (props: LucideProps) => JSX.Element; export declare const Maximize: (props: LucideProps) => JSX.Element; export declare const Medal: (props: LucideProps) => JSX.Element; export declare const MegaphoneOff: (props: LucideProps) => JSX.Element; export declare const Megaphone: (props: LucideProps) => JSX.Element; export declare const Meh: (props: LucideProps) => JSX.Element; export declare const Menu: (props: LucideProps) => JSX.Element; export declare const MessageCircle: (props: LucideProps) => JSX.Element; export declare const MessageSquare: (props: LucideProps) => JSX.Element; export declare const Mic2: (props: LucideProps) => JSX.Element; export declare const MicOff: (props: LucideProps) => JSX.Element; export declare const Mic: (props: LucideProps) => JSX.Element; export declare const Microscope: (props: LucideProps) => JSX.Element; export declare const Microwave: (props: LucideProps) => JSX.Element; export declare const Milestone: (props: LucideProps) => JSX.Element; export declare const MilkOff: (props: LucideProps) => JSX.Element; export declare const Milk: (props: LucideProps) => JSX.Element; export declare const Minimize2: (props: LucideProps) => JSX.Element; export declare const Minimize: (props: LucideProps) => JSX.Element; export declare const MinusCircle: (props: LucideProps) => JSX.Element; export declare const MinusSquare: (props: LucideProps) => JSX.Element; export declare const Minus: (props: LucideProps) => JSX.Element; export declare const MonitorOff: (props: LucideProps) => JSX.Element; export declare const MonitorSmartphone: (props: LucideProps) => JSX.Element; export declare const MonitorSpeaker: (props: LucideProps) => JSX.Element; export declare const Monitor: (props: LucideProps) => JSX.Element; export declare const Moon: (props: LucideProps) => JSX.Element; export declare const MoreHorizontal: (props: LucideProps) => JSX.Element; export declare const MoreVertical: (props: LucideProps) => JSX.Element; export declare const MountainSnow: (props: LucideProps) => JSX.Element; export declare const Mountain: (props: LucideProps) => JSX.Element; export declare const MousePointer2: (props: LucideProps) => JSX.Element; export declare const MousePointerClick: (props: LucideProps) => JSX.Element; export declare const MousePointer: (props: LucideProps) => JSX.Element; export declare const Mouse: (props: LucideProps) => JSX.Element; export declare const Move3d: (props: LucideProps) => JSX.Element; export declare const MoveDiagonal2: (props: LucideProps) => JSX.Element; export declare const MoveDiagonal: (props: LucideProps) => JSX.Element; export declare const MoveHorizontal: (props: LucideProps) => JSX.Element; export declare const MoveVertical: (props: LucideProps) => JSX.Element; export declare const Move: (props: LucideProps) => JSX.Element; export declare const Music2: (props: LucideProps) => JSX.Element; export declare const Music3: (props: LucideProps) => JSX.Element; export declare const Music4: (props: LucideProps) => JSX.Element; export declare const Music: (props: LucideProps) => JSX.Element; export declare const Navigation2Off: (props: LucideProps) => JSX.Element; export declare const Navigation2: (props: LucideProps) => JSX.Element; export declare const NavigationOff: (props: LucideProps) => JSX.Element; export declare const Navigation: (props: LucideProps) => JSX.Element; export declare const Network: (props: LucideProps) => JSX.Element; export declare const Newspaper: (props: LucideProps) => JSX.Element; export declare const NutOff: (props: LucideProps) => JSX.Element; export declare const Nut: (props: LucideProps) => JSX.Element; export declare const Octagon: (props: LucideProps) => JSX.Element; export declare const Option: (props: LucideProps) => JSX.Element; export declare const Outdent: (props: LucideProps) => JSX.Element; export declare const Package2: (props: LucideProps) => JSX.Element; export declare const PackageCheck: (props: LucideProps) => JSX.Element; export declare const PackageMinus: (props: LucideProps) => JSX.Element; export declare const PackageOpen: (props: LucideProps) => JSX.Element; export declare const PackagePlus: (props: LucideProps) => JSX.Element; export declare const PackageSearch: (props: LucideProps) => JSX.Element; export declare const PackageX: (props: LucideProps) => JSX.Element; export declare const Package: (props: LucideProps) => JSX.Element; export declare const PaintBucket: (props: LucideProps) => JSX.Element; export declare const Paintbrush2: (props: LucideProps) => JSX.Element; export declare const Paintbrush: (props: LucideProps) => JSX.Element; export declare const Palette: (props: LucideProps) => JSX.Element; export declare const Palmtree: (props: LucideProps) => JSX.Element; export declare const Paperclip: (props: LucideProps) => JSX.Element; export declare const PartyPopper: (props: LucideProps) => JSX.Element; export declare const PauseCircle: (props: LucideProps) => JSX.Element; export declare const PauseOctagon: (props: LucideProps) => JSX.Element; export declare const Pause: (props: LucideProps) => JSX.Element; export declare const PenTool: (props: LucideProps) => JSX.Element; export declare const Pencil: (props: LucideProps) => JSX.Element; export declare const Percent: (props: LucideProps) => JSX.Element; export declare const PersonStanding: (props: LucideProps) => JSX.Element; export declare const PhoneCall: (props: LucideProps) => JSX.Element; export declare const PhoneForwarded: (props: LucideProps) => JSX.Element; export declare const PhoneIncoming: (props: LucideProps) => JSX.Element; export declare const PhoneMissed: (props: LucideProps) => JSX.Element; export declare const PhoneOff: (props: LucideProps) => JSX.Element; export declare const PhoneOutgoing: (props: LucideProps) => JSX.Element; export declare const Phone: (props: LucideProps) => JSX.Element; export declare const PieChart: (props: LucideProps) => JSX.Element; export declare const PiggyBank: (props: LucideProps) => JSX.Element; export declare const Pilcrow: (props: LucideProps) => JSX.Element; export declare const PinOff: (props: LucideProps) => JSX.Element; export declare const Pin: (props: LucideProps) => JSX.Element; export declare const Pipette: (props: LucideProps) => JSX.Element; export declare const Pizza: (props: LucideProps) => JSX.Element; export declare const Plane: (props: LucideProps) => JSX.Element; export declare const PlayCircle: (props: LucideProps) => JSX.Element; export declare const Play: (props: LucideProps) => JSX.Element; export declare const Plug2: (props: LucideProps) => JSX.Element; export declare const PlugZap: (props: LucideProps) => JSX.Element; export declare const Plug: (props: LucideProps) => JSX.Element; export declare const PlusCircle: (props: LucideProps) => JSX.Element; export declare const PlusSquare: (props: LucideProps) => JSX.Element; export declare const Plus: (props: LucideProps) => JSX.Element; export declare const Pocket: (props: LucideProps) => JSX.Element; export declare const Podcast: (props: LucideProps) => JSX.Element; export declare const Pointer: (props: LucideProps) => JSX.Element; export declare const PoundSterling: (props: LucideProps) => JSX.Element; export declare const PowerOff: (props: LucideProps) => JSX.Element; export declare const Power: (props: LucideProps) => JSX.Element; export declare const Printer: (props: LucideProps) => JSX.Element; export declare const Puzzle: (props: LucideProps) => JSX.Element; export declare const QrCode: (props: LucideProps) => JSX.Element; export declare const Quote: (props: LucideProps) => JSX.Element; export declare const RadioReceiver: (props: LucideProps) => JSX.Element; export declare const Radio: (props: LucideProps) => JSX.Element; export declare const RectangleHorizontal: (props: LucideProps) => JSX.Element; export declare const RectangleVertical: (props: LucideProps) => JSX.Element; export declare const Recycle: (props: LucideProps) => JSX.Element; export declare const Redo2: (props: LucideProps) => JSX.Element; export declare const Redo: (props: LucideProps) => JSX.Element; export declare const RefreshCcw: (props: LucideProps) => JSX.Element; export declare const RefreshCw: (props: LucideProps) => JSX.Element; export declare const Refrigerator: (props: LucideProps) => JSX.Element; export declare const Regex: (props: LucideProps) => JSX.Element; export declare const Repeat1: (props: LucideProps) => JSX.Element; export declare const Repeat: (props: LucideProps) => JSX.Element; export declare const ReplyAll: (props: LucideProps) => JSX.Element; export declare const Reply: (props: LucideProps) => JSX.Element; export declare const Rewind: (props: LucideProps) => JSX.Element; export declare const Rocket: (props: LucideProps) => JSX.Element; export declare const RockingChair: (props: LucideProps) => JSX.Element; export declare const Rotate3d: (props: LucideProps) => JSX.Element; export declare const RotateCcw: (props: LucideProps) => JSX.Element; export declare const RotateCw: (props: LucideProps) => JSX.Element; export declare const Rss: (props: LucideProps) => JSX.Element; export declare const Ruler: (props: LucideProps) => JSX.Element; export declare const RussianRuble: (props: LucideProps) => JSX.Element; export declare const Sailboat: (props: LucideProps) => JSX.Element; export declare const Save: (props: LucideProps) => JSX.Element; export declare const Scale3d: (props: LucideProps) => JSX.Element; export declare const Scale: (props: LucideProps) => JSX.Element; export declare const Scaling: (props: LucideProps) => JSX.Element; export declare const ScanFace: (props: LucideProps) => JSX.Element; export declare const ScanLine: (props: LucideProps) => JSX.Element; export declare const Scan: (props: LucideProps) => JSX.Element; export declare const Scissors: (props: LucideProps) => JSX.Element; export declare const ScreenShareOff: (props: LucideProps) => JSX.Element; export declare const ScreenShare: (props: LucideProps) => JSX.Element; export declare const Scroll: (props: LucideProps) => JSX.Element; export declare const Search: (props: LucideProps) => JSX.Element; export declare const Send: (props: LucideProps) => JSX.Element; export declare const SeparatorHorizontal: (props: LucideProps) => JSX.Element; export declare const SeparatorVertical: (props: LucideProps) => JSX.Element; export declare const ServerCog: (props: LucideProps) => JSX.Element; export declare const ServerCrash: (props: LucideProps) => JSX.Element; export declare const ServerOff: (props: LucideProps) => JSX.Element; export declare const Server: (props: LucideProps) => JSX.Element; export declare const Settings2: (props: LucideProps) => JSX.Element; export declare const Settings: (props: LucideProps) => JSX.Element; export declare const Share2: (props: LucideProps) => JSX.Element; export declare const Share: (props: LucideProps) => JSX.Element; export declare const Sheet: (props: LucideProps) => JSX.Element; export declare const ShieldAlert: (props: LucideProps) => JSX.Element; export declare const ShieldCheck: (props: LucideProps) => JSX.Element; export declare const ShieldClose: (props: LucideProps) => JSX.Element; export declare const ShieldOff: (props: LucideProps) => JSX.Element; export declare const Shield: (props: LucideProps) => JSX.Element; export declare const Shirt: (props: LucideProps) => JSX.Element; export declare const ShoppingBag: (props: LucideProps) => JSX.Element; export declare const ShoppingCart: (props: LucideProps) => JSX.Element; export declare const Shovel: (props: LucideProps) => JSX.Element; export declare const ShowerHead: (props: LucideProps) => JSX.Element; export declare const Shrink: (props: LucideProps) => JSX.Element; export declare const Shrub: (props: LucideProps) => JSX.Element; export declare const Shuffle: (props: LucideProps) => JSX.Element; export declare const SidebarClose: (props: LucideProps) => JSX.Element; export declare const SidebarOpen: (props: LucideProps) => JSX.Element; export declare const Sidebar: (props: LucideProps) => JSX.Element; export declare const Sigma: (props: LucideProps) => JSX.Element; export declare const SignalHigh: (props: LucideProps) => JSX.Element; export declare const SignalLow: (props: LucideProps) => JSX.Element; export declare const SignalMedium: (props: LucideProps) => JSX.Element; export declare const SignalZero: (props: LucideProps) => JSX.Element; export declare const Signal: (props: LucideProps) => JSX.Element; export declare const Siren: (props: LucideProps) => JSX.Element; export declare const SkipBack: (props: LucideProps) => JSX.Element; export declare const SkipForward: (props: LucideProps) => JSX.Element; export declare const Skull: (props: LucideProps) => JSX.Element; export declare const Slack: (props: LucideProps) => JSX.Element; export declare const Slash: (props: LucideProps) => JSX.Element; export declare const Slice: (props: LucideProps) => JSX.Element; export declare const SlidersHorizontal: (props: LucideProps) => JSX.Element; export declare const Sliders: (props: LucideProps) => JSX.Element; export declare const SmartphoneCharging: (props: LucideProps) => JSX.Element; export declare const Smartphone: (props: LucideProps) => JSX.Element; export declare const SmilePlus: (props: LucideProps) => JSX.Element; export declare const Smile: (props: LucideProps) => JSX.Element; export declare const Snowflake: (props: LucideProps) => JSX.Element; export declare const Sofa: (props: LucideProps) => JSX.Element; export declare const SortAsc: (props: LucideProps) => JSX.Element; export declare const SortDesc: (props: LucideProps) => JSX.Element; export declare const Speaker: (props: LucideProps) => JSX.Element; export declare const Spline: (props: LucideProps) => JSX.Element; export declare const Sprout: (props: LucideProps) => JSX.Element; export declare const Square: (props: LucideProps) => JSX.Element; export declare const StarHalf: (props: LucideProps) => JSX.Element; export declare const StarOff: (props: LucideProps) => JSX.Element; export declare const Star: (props: LucideProps) => JSX.Element; export declare const Stethoscope: (props: LucideProps) => JSX.Element; export declare const Sticker: (props: LucideProps) => JSX.Element; export declare const StickyNote: (props: LucideProps) => JSX.Element; export declare const StopCircle: (props: LucideProps) => JSX.Element; export declare const StretchHorizontal: (props: LucideProps) => JSX.Element; export declare const StretchVertical: (props: LucideProps) => JSX.Element; export declare const Strikethrough: (props: LucideProps) => JSX.Element; export declare const Subscript: (props: LucideProps) => JSX.Element; export declare const Subtitles: (props: LucideProps) => JSX.Element; export declare const SunDim: (props: LucideProps) => JSX.Element; export declare const SunMedium: (props: LucideProps) => JSX.Element; export declare const SunMoon: (props: LucideProps) => JSX.Element; export declare const SunSnow: (props: LucideProps) => JSX.Element; export declare const Sun: (props: LucideProps) => JSX.Element; export declare const Sunrise: (props: LucideProps) => JSX.Element; export declare const Sunset: (props: LucideProps) => JSX.Element; export declare const Superscript: (props: LucideProps) => JSX.Element; export declare const SwissFranc: (props: LucideProps) => JSX.Element; export declare const SwitchCamera: (props: LucideProps) => JSX.Element; export declare const Sword: (props: LucideProps) => JSX.Element; export declare const Swords: (props: LucideProps) => JSX.Element; export declare const Syringe: (props: LucideProps) => JSX.Element; export declare const Table2: (props: LucideProps) => JSX.Element; export declare const Table: (props: LucideProps) => JSX.Element; export declare const Tablet: (props: LucideProps) => JSX.Element; export declare const Tag: (props: LucideProps) => JSX.Element; export declare const Tags: (props: LucideProps) => JSX.Element; export declare const Target: (props: LucideProps) => JSX.Element; export declare const Tent: (props: LucideProps) => JSX.Element; export declare const TerminalSquare: (props: LucideProps) => JSX.Element; export declare const Terminal: (props: LucideProps) => JSX.Element; export declare const TextCursorInput: (props: LucideProps) => JSX.Element; export declare const TextCursor: (props: LucideProps) => JSX.Element; export declare const ThermometerSnowflake: (props: LucideProps) => JSX.Element; export declare const ThermometerSun: (props: LucideProps) => JSX.Element; export declare const Thermometer: (props: LucideProps) => JSX.Element; export declare const ThumbsDown: (props: LucideProps) => JSX.Element; export declare const ThumbsUp: (props: LucideProps) => JSX.Element; export declare const Ticket: (props: LucideProps) => JSX.Element; export declare const TimerOff: (props: LucideProps) => JSX.Element; export declare const TimerReset: (props: LucideProps) => JSX.Element; export declare const Timer: (props: LucideProps) => JSX.Element; export declare const ToggleLeft: (props: LucideProps) => JSX.Element; export declare const ToggleRight: (props: LucideProps) => JSX.Element; export declare const Tornado: (props: LucideProps) => JSX.Element; export declare const ToyBrick: (props: LucideProps) => JSX.Element; export declare const Train: (props: LucideProps) => JSX.Element; export declare const Trash2: (props: LucideProps) => JSX.Element; export declare const Trash: (props: LucideProps) => JSX.Element; export declare const TreeDeciduous: (props: LucideProps) => JSX.Element; export declare const TreePine: (props: LucideProps) => JSX.Element; export declare const Trees: (props: LucideProps) => JSX.Element; export declare const Trello: (props: LucideProps) => JSX.Element; export declare const TrendingDown: (props: LucideProps) => JSX.Element; export declare const TrendingUp: (props: LucideProps) => JSX.Element; export declare const Triangle: (props: LucideProps) => JSX.Element; export declare const Trophy: (props: LucideProps) => JSX.Element; export declare const Truck: (props: LucideProps) => JSX.Element; export declare const Tv2: (props: LucideProps) => JSX.Element; export declare const Tv: (props: LucideProps) => JSX.Element; export declare const Twitch: (props: LucideProps) => JSX.Element; export declare const Twitter: (props: LucideProps) => JSX.Element; export declare const Type: (props: LucideProps) => JSX.Element; export declare const Umbrella: (props: LucideProps) => JSX.Element; export declare const Underline: (props: LucideProps) => JSX.Element; export declare const Undo2: (props: LucideProps) => JSX.Element; export declare const Undo: (props: LucideProps) => JSX.Element; export declare const Unlink2: (props: LucideProps) => JSX.Element; export declare const Unlink: (props: LucideProps) => JSX.Element; export declare const Unlock: (props: LucideProps) => JSX.Element; export declare const UploadCloud: (props: LucideProps) => JSX.Element; export declare const Upload: (props: LucideProps) => JSX.Element; export declare const Usb: (props: LucideProps) => JSX.Element; export declare const UserCheck: (props: LucideProps) => JSX.Element; export declare const UserCog: (props: LucideProps) => JSX.Element; export declare const UserMinus: (props: LucideProps) => JSX.Element; export declare const UserPlus: (props: LucideProps) => JSX.Element; export declare const UserX: (props: LucideProps) => JSX.Element; export declare const User: (props: LucideProps) => JSX.Element; export declare const Users: (props: LucideProps) => JSX.Element; export declare const UtensilsCrossed: (props: LucideProps) => JSX.Element; export declare const Utensils: (props: LucideProps) => JSX.Element; export declare const Vegan: (props: LucideProps) => JSX.Element; export declare const VenetianMask: (props: LucideProps) => JSX.Element; export declare const Verified: (props: LucideProps) => JSX.Element; export declare const VibrateOff: (props: LucideProps) => JSX.Element; export declare const Vibrate: (props: LucideProps) => JSX.Element; export declare const VideoOff: (props: LucideProps) => JSX.Element; export declare const Video: (props: LucideProps) => JSX.Element; export declare const View: (props: LucideProps) => JSX.Element; export declare const Voicemail: (props: LucideProps) => JSX.Element; export declare const Volume1: (props: LucideProps) => JSX.Element; export declare const Volume2: (props: LucideProps) => JSX.Element; export declare const VolumeX: (props: LucideProps) => JSX.Element; export declare const Volume: (props: LucideProps) => JSX.Element; export declare const Wallet: (props: LucideProps) => JSX.Element; export declare const Wand2: (props: LucideProps) => JSX.Element; export declare const Wand: (props: LucideProps) => JSX.Element; export declare const Watch: (props: LucideProps) => JSX.Element; export declare const Waves: (props: LucideProps) => JSX.Element; export declare const Webcam: (props: LucideProps) => JSX.Element; export declare const Webhook: (props: LucideProps) => JSX.Element; export declare const WheatOff: (props: LucideProps) => JSX.Element; export declare const Wheat: (props: LucideProps) => JSX.Element; export declare const WifiOff: (props: LucideProps) => JSX.Element; export declare const Wifi: (props: LucideProps) => JSX.Element; export declare const Wind: (props: LucideProps) => JSX.Element; export declare const WineOff: (props: LucideProps) => JSX.Element; export declare const Wine: (props: LucideProps) => JSX.Element; export declare const WrapText: (props: LucideProps) => JSX.Element; export declare const Wrench: (props: LucideProps) => JSX.Element; export declare const XCircle: (props: LucideProps) => JSX.Element; export declare const XOctagon: (props: LucideProps) => JSX.Element; export declare const XSquare: (props: LucideProps) => JSX.Element; export declare const X: (props: LucideProps) => JSX.Element; export declare const Youtube: (props: LucideProps) => JSX.Element; export declare const ZapOff: (props: LucideProps) => JSX.Element; export declare const Zap: (props: LucideProps) => JSX.Element; export declare const ZoomIn: (props: LucideProps) => JSX.Element; export declare const ZoomOut: (props: LucideProps) => JSX.Element;
lucide-icons/lucide/packages/lucide-react-native/lucide-react-native.d.ts
{ "file_path": "lucide-icons/lucide/packages/lucide-react-native/lucide-react-native.d.ts", "repo_id": "lucide-icons/lucide", "token_count": 19480 }
81
import { writeFile } from 'fs/promises'; import { existsSync, unlinkSync, mkdirSync } from 'fs'; export default async function copyIcons(parsedSvgs, packageDir, license) { const iconsDirectory = `${packageDir}/icons`; if (existsSync(iconsDirectory)) { unlinkSync(iconsDirectory); } if (!existsSync(iconsDirectory)) { mkdirSync(iconsDirectory); } // eslint-disable-next-line arrow-body-style const writeIconPromises = parsedSvgs.map(({ name, contents }) => { let content = `<!-- ${license} -->\n${contents}`; content = content.replace('<svg', `<svg\n class="lucide lucide-${name}"`); return writeFile(`${iconsDirectory}/${name}.svg`, content); }); await Promise.all(writeIconPromises); }
lucide-icons/lucide/packages/lucide-static/scripts/copyIcons.mjs
{ "file_path": "lucide-icons/lucide/packages/lucide-static/scripts/copyIcons.mjs", "repo_id": "lucide-icons/lucide", "token_count": 255 }
82
export * from './icons/index.js'; export * as icons from './icons/index.js'; export * from './aliases.js'; export { default as defaultAttributes } from './defaultAttributes.js'; export * from './types.js'; export { default as Icon } from './Icon.svelte';
lucide-icons/lucide/packages/lucide-svelte/src/lucide-svelte.ts
{ "file_path": "lucide-icons/lucide/packages/lucide-svelte/src/lucide-svelte.ts", "repo_id": "lucide-icons/lucide", "token_count": 79 }
83
import { type FunctionalComponent, h } from 'vue'; import { mergeClasses, toKebabCase } from '@lucide/shared'; import defaultAttributes from './defaultAttributes'; import { IconNode, LucideProps } from './types'; interface IconProps { iconNode: IconNode; name: string; } const Icon: FunctionalComponent<LucideProps & IconProps> = ( { size, strokeWidth = 2, absoluteStrokeWidth, color, iconNode, name, class: classes, ...props }, { slots }, ) => { return h( 'svg', { ...defaultAttributes, width: size || defaultAttributes.width, height: size || defaultAttributes.height, stroke: color || defaultAttributes.stroke, 'stroke-width': absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth, class: ['lucide', `lucide-${toKebabCase(name ?? 'icon')}`], ...props, }, [...iconNode.map((child) => h(...child)), ...(slots.default ? [slots.default()] : [])], ); }; export default Icon;
lucide-icons/lucide/packages/lucide-vue-next/src/Icon.ts
{ "file_path": "lucide-icons/lucide/packages/lucide-vue-next/src/Icon.ts", "repo_id": "lucide-icons/lucide", "token_count": 348 }
84
import plugins from '@lucide/rollup-plugins'; import replace from '@rollup/plugin-replace'; import dts from 'rollup-plugin-dts'; import pkg from './package.json' assert { type: 'json' }; const outputFileName = pkg.name; const outputDir = 'dist'; const inputs = ['src/lucide.ts']; const bundles = [ { format: 'umd', inputs, outputDir, minify: true, }, { format: 'umd', inputs, outputDir, }, { format: 'cjs', inputs, outputDir, }, { format: 'esm', inputs, outputDir, preserveModules: true, }, ]; const configs = bundles .map(({ inputs, outputDir, format, minify, preserveModules }) => inputs.map((input) => ({ input, plugins: [ // This is for lucide plugin to replace an argument in createIcons so it is easier to use with UMD. ...(format === 'umd' ? [ replace({ 'icons = {}': 'icons = iconAndAliases', delimiters: ['', ''], preventAssignment: false, }), ] : []), ...plugins({ pkg, minify }), ], output: { name: outputFileName, ...(preserveModules ? { dir: `${outputDir}/${format}`, } : { file: `${outputDir}/${format}/${outputFileName}${minify ? '.min' : ''}.js`, }), format, sourcemap: true, preserveModules, }, })), ) .flat(); const typesFileConfig = { input: inputs[0], output: [ { file: `${outputDir}/${outputFileName}.d.ts`, format: 'esm', }, ], plugins: [ dts({ include: ['src'], }), ], }; export default [...configs, typesFileConfig];
lucide-icons/lucide/packages/lucide/rollup.config.mjs
{ "file_path": "lucide-icons/lucide/packages/lucide/rollup.config.mjs", "repo_id": "lucide-icons/lucide", "token_count": 841 }
85
import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'jsdom', setupFiles: './tests/setupVitest.js', } });
lucide-icons/lucide/packages/lucide/vitest.config.mts
{ "file_path": "lucide-icons/lucide/packages/lucide/vitest.config.mts", "repo_id": "lucide-icons/lucide", "token_count": 68 }
86
import path from 'path'; import fs from 'fs'; import process from 'process'; import { spawn } from 'child_process'; const regex = /(?<file>[^:]+):(?<line>\d+):(?<column>\d+)\s-\s+(?<message>.+)/; const fileList = process.env.CHANGED_FILES ? (process.env.CHANGED_FILES || '').split(' ') : fs.readdirSync('./icons').map((fileName) => path.join('./icons', fileName)); const cspell = spawn('npx', ['cspell', 'stdin'], { stdio: ['pipe', 'pipe', 'inherit'] }); cspell.stdin.write(fileList.join('\n')); cspell.stdin.end(); cspell.stdout.on('data', (data) => { console.log(data.toString()); data .toString() .split('\n') .forEach((line) => { const match = line.match(regex); if (match) { const { line, message } = match.groups; console.log(`::error file=${fileList[line - 1]},line=1,column=1::${message}`); } }); }); cspell.on('exit', process.exit);
lucide-icons/lucide/scripts/lintFilenames.mjs
{ "file_path": "lucide-icons/lucide/scripts/lintFilenames.mjs", "repo_id": "lucide-icons/lucide", "token_count": 379 }
87
export * from './src/toCamelCase.mjs'; export * from './src/toPascalCase.mjs'; export * from './src/toKebabCase.mjs'; export * from './src/resetFile.mjs'; export * from './src/readFile.mjs'; export * from './src/appendFile.mjs'; export * from './src/writeFile.mjs'; export * from './src/writeFileIfNotExists.mjs'; export * from './src/readAllMetadata.mjs'; export * from './src/readMetadata.mjs'; export * from './src/readSvgDirectory.mjs'; export * from './src/readSvg.mjs'; export * from './src/writeSvgFile.mjs'; export * from './src/hash.mjs'; export * from './src/generateHashedKey.mjs'; export * from './src/hasDuplicatedChildren.mjs'; export * from './src/mergeArrays.mjs'; export * from './src/getCurrentDirPath.mjs'; export * from './src/minifySvg.mjs'; export * from './src/shuffleArray.mjs';
lucide-icons/lucide/tools/build-helpers/helpers.mjs
{ "file_path": "lucide-icons/lucide/tools/build-helpers/helpers.mjs", "repo_id": "lucide-icons/lucide", "token_count": 311 }
88
/* eslint-disable import/prefer-default-export */ /** * Converts string to CamelCase * * @param {string} string * @returns {string} A camelized string */ export const toCamelCase = (string) => string.replace(/^([A-Z])|[\s-_]+(\w)/g, (match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase(), );
lucide-icons/lucide/tools/build-helpers/src/toCamelCase.mjs
{ "file_path": "lucide-icons/lucide/tools/build-helpers/src/toCamelCase.mjs", "repo_id": "lucide-icons/lucide", "token_count": 124 }
89
const base64SVG = (svgContents) => Buffer.from( svgContents .replace('\n', '') .replace( 'stroke="currentColor"', 'stroke="#000" style="background-color: #fff; border-radius: 2px"', ), ).toString('base64'); export default base64SVG;
lucide-icons/lucide/tools/build-icons/utils/base64SVG.mjs
{ "file_path": "lucide-icons/lucide/tools/build-icons/utils/base64SVG.mjs", "repo_id": "lucide-icons/lucide", "token_count": 119 }
90
"use server"; import { type Session, type User } from "lucia"; import { cookies } from "next/headers"; import { redirect } from "next/navigation"; import { TimeSpan, createDate, isWithinExpirationDate } from "oslo"; import { alphabet, generateRandomString } from "oslo/crypto"; import { cache } from "react"; import { lucia } from "~/lib/lucia"; import prisma from "~/lib/prisma"; export const validateRequest = cache( async (): Promise< { user: User; session: Session } | { user: null; session: null } > => { const sessionId = cookies().get(lucia.sessionCookieName)?.value ?? null; if (!sessionId) { return { user: null, session: null, }; } const result = await lucia.validateSession(sessionId); try { if (result.session && result.session.fresh) { const sessionCookie = lucia.createSessionCookie(result.session.id); cookies().set( sessionCookie.name, sessionCookie.value, sessionCookie.attributes ); } if (!result.session) { const sessionCookie = lucia.createBlankSessionCookie(); cookies().set( sessionCookie.name, sessionCookie.value, sessionCookie.attributes ); } } catch { // next.js throws when you attempt to set cookie when rendering page } return result; } ); export async function logout() { const { session } = await validateRequest(); if (!session) { return { error: "Unauthorized", }; } await lucia.invalidateSession(session.id); const sessionCookie = lucia.createBlankSessionCookie(); cookies().set( sessionCookie.name, sessionCookie.value, sessionCookie.attributes ); redirect("/"); } export async function generateEmailVerificationCode( userId: string, email: string ): Promise<string> { await prisma.emailVerificationCode.deleteMany({ where: { userId, }, }); const code = generateRandomString(6, alphabet("0-9")); await prisma.emailVerificationCode.create({ data: { userId, email, code, expiresAt: createDate(new TimeSpan(10, "m")), // 10 minutes }, }); return code; } export async function verifyVerificationCode( user: { id: string; email: string }, code: string ): Promise<boolean> { return await prisma.$transaction(async (tx) => { const databaseCode = await tx.emailVerificationCode.findFirst({ where: { userId: user.id, }, }); if (!databaseCode || databaseCode.code !== code) { return false; } await tx.emailVerificationCode.delete({ where: { id: databaseCode.id, }, }); if (!isWithinExpirationDate(databaseCode.expiresAt)) { return false; } if (databaseCode.email !== user.email) { return false; } return true; }); }
moinulmoin/chadnext/src/actions/auth.ts
{ "file_path": "moinulmoin/chadnext/src/actions/auth.ts", "repo_id": "moinulmoin/chadnext", "token_count": 1119 }
91
"use server"; import { type Project } from "@prisma/client"; import { revalidatePath } from "next/cache"; import { redirect } from "next/navigation"; import { validateRequest } from "~/actions/auth"; import { getUserSubscriptionPlan } from "~/actions/subscription"; import prisma from "~/lib/prisma"; interface Payload { name: string; domain: string; } export async function createProject(payload: Payload) { const { user } = await validateRequest(); await prisma.project.create({ data: { ...payload, user: { connect: { id: user?.id, }, }, }, }); revalidatePath(`/dashboard/projects`); } export async function checkIfFreePlanLimitReached() { const { user } = await validateRequest(); const subscriptionPlan = await getUserSubscriptionPlan(user?.id as string); // If user is on a free plan. // Check if user has reached limit of 3 projects. if (subscriptionPlan?.isPro) return false; const count = await prisma.project.count({ where: { userId: user?.id, }, }); return count >= 3; } export async function getProjects() { const { user } = await validateRequest(); const projects = await prisma.project.findMany({ where: { userId: user?.id, }, orderBy: { createdAt: "desc", }, }); return projects as Project[]; } export async function getProjectById(id: string) { const { user } = await validateRequest(); const project = await prisma.project.findFirst({ where: { id, userId: user?.id, }, }); return project as Project; } export async function updateProjectById(id: string, payload: Payload) { const { user } = await validateRequest(); await prisma.project.update({ where: { id, userId: user?.id, }, data: payload, }); revalidatePath(`/dashboard/projects`); } export async function deleteProjectById(id: string) { const { user } = await validateRequest(); await prisma.project.delete({ where: { id, userId: user?.id, }, }); revalidatePath(`/dashboard/projects`); redirect("/dashboard/projects"); }
moinulmoin/chadnext/src/app/[locale]/dashboard/projects/action.ts
{ "file_path": "moinulmoin/chadnext/src/app/[locale]/dashboard/projects/action.ts", "repo_id": "moinulmoin/chadnext", "token_count": 761 }
92
import { ImageResponse } from "next/og"; import { RenderIMGEl } from "~/components/OGImgEl"; import { siteUrl } from "~/config/site"; import Logo from "public/chad-next.png"; import homepageImage from "public/chadnext-homepage.png"; export const runtime = "edge"; export async function GET(request: Request) { const { searchParams } = new URL(request.url); const hasLocale = searchParams.has("locale"); const locale = hasLocale ? searchParams.get("locale") : ""; try { return new ImageResponse( RenderIMGEl({ logo: siteUrl + Logo.src, locale: locale as string, image: siteUrl + homepageImage.src, }), { width: 1200, height: 630, } ); } catch (e) { console.log(e); return new Response(`Failed to generate the image`, { status: 500, }); } }
moinulmoin/chadnext/src/app/api/og/route.ts
{ "file_path": "moinulmoin/chadnext/src/app/api/og/route.ts", "repo_id": "moinulmoin/chadnext", "token_count": 330 }
93
/* eslint-disable @next/next/no-img-element */ export const RenderIMGEl = ({ logo, image, locale, }: { logo: string; locale: string; image: string; }) => { return ( <div tw="flex relative flex-col p-12 w-full h-full rounded bg-gray-900 text-white items-center"> <div tw="flex items-center my-5"> <img src={logo} alt="ChadNext Logo" tw="h-10 mr-2" /> <div tw="text-xl font-bold tracking-tight text-white">ChadNext</div> <div style={{ marginLeft: 10, }} > {locale ? "/" + locale : ""} </div> </div> <img src={image} alt="ChadNext Logo" tw=" rounded-lg" /> </div> ); };
moinulmoin/chadnext/src/components/OGImgEl.tsx
{ "file_path": "moinulmoin/chadnext/src/components/OGImgEl.tsx", "repo_id": "moinulmoin/chadnext", "token_count": 329 }
94
export default { header: { changelog: "Changelog", about: "About", login: "Login", dashboard: "Dashboard", }, hero: { top: "Introducing", main: "Quick Starter Template for your Next project", sub: "Packed with all necessary features to get started.", firstButton: "Get started", tools: "Built using Great Tools", on: "on", }, notFound: { title: "Page Not Found!", }, } as const;
moinulmoin/chadnext/src/locales/en.ts
{ "file_path": "moinulmoin/chadnext/src/locales/en.ts", "repo_id": "moinulmoin/chadnext", "token_count": 160 }
95
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Icon } from "@/components/ui/icon"; import { icons } from "lucide-react"; interface BenefitsProps { icon: string; title: string; description: string; } const benefitList: BenefitsProps[] = [ { icon: "Blocks", title: "Build Brand Trust", description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. A odio velit cum aliquam. Natus consectetur dolores.", }, { icon: "LineChart", title: "More Leads", description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. A odio velit cum aliquam, natus consectetur.", }, { icon: "Wallet", title: "Higher Conversions", description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus consectetur. A odio velit cum aliquam", }, { icon: "Sparkle", title: "Test Marketing Ideas", description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. A odio velit cum aliquam. Natus consectetur dolores.", }, ]; export const BenefitsSection = () => { return ( <section id="benefits" className="container py-24 sm:py-32"> <div className="grid lg:grid-cols-2 place-items-center lg:gap-24"> <div> <h2 className="text-lg text-primary mb-2 tracking-wider">Benefits</h2> <h2 className="text-3xl md:text-4xl font-bold mb-4"> Your Shortcut to Success </h2> <p className="text-xl text-muted-foreground mb-8"> Lorem ipsum dolor sit amet consectetur, adipisicing elit. Non ducimus reprehenderit architecto rerum similique facere odit deleniti necessitatibus quo quae. </p> </div> <div className="grid lg:grid-cols-2 gap-4 w-full"> {benefitList.map(({ icon, title, description }, index) => ( <Card key={title} className="bg-muted/50 dark:bg-card hover:bg-background transition-all delay-75 group/number" > <CardHeader> <div className="flex justify-between"> <Icon name={icon as keyof typeof icons} size={32} color="hsl(var(--primary))" className="mb-6 text-primary" /> <span className="text-5xl text-muted-foreground/15 font-medium transition-all delay-75 group-hover/number:text-muted-foreground/30"> 0{index + 1} </span> </div> <CardTitle>{title}</CardTitle> </CardHeader> <CardContent className="text-muted-foreground"> {description} </CardContent> </Card> ))} </div> </div> </section> ); };
nobruf/shadcn-landing-page/components/layout/sections/benefits.tsx
{ "file_path": "nobruf/shadcn-landing-page/components/layout/sections/benefits.tsx", "repo_id": "nobruf/shadcn-landing-page", "token_count": 1376 }
96
import * as React from "react"; import { cva, type VariantProps } from "class-variance-authority"; import { cn } from "@/lib/utils"; const badgeVariants = cva( "inline-flex items-center rounded-full border border-secondary px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2", { variants: { variant: { default: "border-transparent bg-primary text-primary-foreground hover:bg-primary/80", secondary: "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80", destructive: "border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80", outline: "text-foreground", }, }, defaultVariants: { variant: "default", }, } ); export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {} function Badge({ className, variant, ...props }: BadgeProps) { return ( <div className={cn(badgeVariants({ variant }), className)} {...props} /> ); } export { Badge, badgeVariants };
nobruf/shadcn-landing-page/components/ui/badge.tsx
{ "file_path": "nobruf/shadcn-landing-page/components/ui/badge.tsx", "repo_id": "nobruf/shadcn-landing-page", "token_count": 427 }
97
/** @type {import('next').NextConfig} */ const nextConfig = { images: { remotePatterns: [ { protocol: "https", hostname: "i.pravatar.cc", }, { protocol: "https", hostname: "images.unsplash.com", }, { protocol: "https", hostname: "github.com", }, ], }, }; export default nextConfig;
nobruf/shadcn-landing-page/next.config.mjs
{ "file_path": "nobruf/shadcn-landing-page/next.config.mjs", "repo_id": "nobruf/shadcn-landing-page", "token_count": 187 }
98
import Link from "next/link" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" import { Icons } from "@/components/icons" import { UserAuthForm } from "@/components/user-auth-form" export const metadata = { title: "Create an account", description: "Create an account to get started.", } export default function RegisterPage() { return ( <div className="container grid h-screen w-screen flex-col items-center justify-center lg:max-w-none lg:grid-cols-2 lg:px-0"> <Link href="/login" className={cn( buttonVariants({ variant: "ghost" }), "absolute right-4 top-4 md:right-8 md:top-8" )} > Login </Link> <div className="hidden h-full bg-muted lg:block" /> <div className="lg:p-8"> <div className="mx-auto flex w-full flex-col justify-center space-y-6 sm:w-[350px]"> <div className="flex flex-col space-y-2 text-center"> <Icons.logo className="mx-auto h-6 w-6" /> <h1 className="text-2xl font-semibold tracking-tight"> Create an account </h1> <p className="text-sm text-muted-foreground"> Enter your email below to create your account </p> </div> <UserAuthForm /> <p className="px-8 text-center text-sm text-muted-foreground"> By clicking continue, you agree to our{" "} <Link href="/terms" className="hover:text-brand underline underline-offset-4" > Terms of Service </Link>{" "} and{" "} <Link href="/privacy" className="hover:text-brand underline underline-offset-4" > Privacy Policy </Link> . </p> </div> </div> </div> ) }
shadcn-ui/taxonomy/app/(auth)/register/page.tsx
{ "file_path": "shadcn-ui/taxonomy/app/(auth)/register/page.tsx", "repo_id": "shadcn-ui/taxonomy", "token_count": 933 }
99
import { notFound, redirect } from "next/navigation" import { Post, User } from "@prisma/client" import { authOptions } from "@/lib/auth" import { db } from "@/lib/db" import { getCurrentUser } from "@/lib/session" import { Editor } from "@/components/editor" async function getPostForUser(postId: Post["id"], userId: User["id"]) { return await db.post.findFirst({ where: { id: postId, authorId: userId, }, }) } interface EditorPageProps { params: { postId: string } } export default async function EditorPage({ params }: EditorPageProps) { const user = await getCurrentUser() if (!user) { redirect(authOptions?.pages?.signIn || "/login") } const post = await getPostForUser(params.postId, user.id) if (!post) { notFound() } return ( <Editor post={{ id: post.id, title: post.title, content: post.content, published: post.published, }} /> ) }
shadcn-ui/taxonomy/app/(editor)/editor/[postId]/page.tsx
{ "file_path": "shadcn-ui/taxonomy/app/(editor)/editor/[postId]/page.tsx", "repo_id": "shadcn-ui/taxonomy", "token_count": 365 }
100
import Link from "next/link" import { cn } from "@/lib/utils" interface CardProps extends React.HTMLAttributes<HTMLDivElement> { href?: string disabled?: boolean } export function MdxCard({ href, className, children, disabled, ...props }: CardProps) { return ( <div className={cn( "group relative rounded-lg border p-6 shadow-md transition-shadow hover:shadow-lg", disabled && "cursor-not-allowed opacity-60", className )} {...props} > <div className="flex flex-col justify-between space-y-4"> <div className="space-y-2 [&>h3]:!mt-0 [&>h4]:!mt-0 [&>p]:text-muted-foreground"> {children} </div> </div> {href && ( <Link href={disabled ? "#" : href} className="absolute inset-0"> <span className="sr-only">View</span> </Link> )} </div> ) }
shadcn-ui/taxonomy/components/mdx-card.tsx
{ "file_path": "shadcn-ui/taxonomy/components/mdx-card.tsx", "repo_id": "shadcn-ui/taxonomy", "token_count": 394 }
101
"use client" import * as React from "react" import { TableOfContents } from "@/lib/toc" import { cn } from "@/lib/utils" import { useMounted } from "@/hooks/use-mounted" interface TocProps { toc: TableOfContents } export function DashboardTableOfContents({ toc }: TocProps) { const itemIds = React.useMemo( () => toc.items ? toc.items .flatMap((item) => [item.url, item?.items?.map((item) => item.url)]) .flat() .filter(Boolean) .map((id) => id?.split("#")[1]) : [], [toc] ) const activeHeading = useActiveItem(itemIds) const mounted = useMounted() if (!toc?.items) { return null } return mounted ? ( <div className="space-y-2"> <p className="font-medium">On This Page</p> <Tree tree={toc} activeItem={activeHeading} /> </div> ) : null } function useActiveItem(itemIds: (string | undefined)[]) { const [activeId, setActiveId] = React.useState<string>("") React.useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { setActiveId(entry.target.id) } }) }, { rootMargin: `0% 0% -80% 0%` } ) itemIds?.forEach((id) => { if (!id) { return } const element = document.getElementById(id) if (element) { observer.observe(element) } }) return () => { itemIds?.forEach((id) => { if (!id) { return } const element = document.getElementById(id) if (element) { observer.unobserve(element) } }) } }, [itemIds]) return activeId } interface TreeProps { tree: TableOfContents level?: number activeItem?: string | null } function Tree({ tree, level = 1, activeItem }: TreeProps) { return tree?.items?.length && level < 3 ? ( <ul className={cn("m-0 list-none", { "pl-4": level !== 1 })}> {tree.items.map((item, index) => { return ( <li key={index} className={cn("mt-0 pt-2")}> <a href={item.url} className={cn( "inline-block no-underline", item.url === `#${activeItem}` ? "font-medium text-primary" : "text-sm text-muted-foreground" )} > {item.title} </a> {item.items?.length ? ( <Tree tree={item} level={level + 1} activeItem={activeItem} /> ) : null} </li> ) })} </ul> ) : null }
shadcn-ui/taxonomy/components/toc.tsx
{ "file_path": "shadcn-ui/taxonomy/components/toc.tsx", "repo_id": "shadcn-ui/taxonomy", "token_count": 1309 }
102
"use client" import * as React from "react" import * as HoverCardPrimitive from "@radix-ui/react-hover-card" import { cn } from "@/lib/utils" const HoverCard = HoverCardPrimitive.Root const HoverCardTrigger = HoverCardPrimitive.Trigger const HoverCardContent = React.forwardRef< React.ElementRef<typeof HoverCardPrimitive.Content>, React.ComponentPropsWithoutRef<typeof HoverCardPrimitive.Content> >(({ className, align = "center", sideOffset = 4, ...props }, ref) => ( <HoverCardPrimitive.Content ref={ref} align={align} sideOffset={sideOffset} className={cn( "z-50 w-64 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none animate-in zoom-in-90", className )} {...props} /> )) HoverCardContent.displayName = HoverCardPrimitive.Content.displayName export { HoverCard, HoverCardTrigger, HoverCardContent }
shadcn-ui/taxonomy/components/ui/hover-card.tsx
{ "file_path": "shadcn-ui/taxonomy/components/ui/hover-card.tsx", "repo_id": "shadcn-ui/taxonomy", "token_count": 299 }
103
import * as React from "react" import { cn } from "@/lib/utils" export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {} const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>( ({ className, ...props }, ref) => { return ( <textarea className={cn( "flex h-20 w-full rounded-md border border-input bg-transparent px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50", className )} ref={ref} {...props} /> ) } ) Textarea.displayName = "Textarea" export { Textarea }
shadcn-ui/taxonomy/components/ui/textarea.tsx
{ "file_path": "shadcn-ui/taxonomy/components/ui/textarea.tsx", "repo_id": "shadcn-ui/taxonomy", "token_count": 292 }
104
import * as React from "react" // @see https://usehooks.com/useLockBodyScroll. export function useLockBody() { React.useLayoutEffect((): (() => void) => { const originalStyle: string = window.getComputedStyle( document.body ).overflow document.body.style.overflow = "hidden" return () => (document.body.style.overflow = originalStyle) }, []) }
shadcn-ui/taxonomy/hooks/use-lock-body.ts
{ "file_path": "shadcn-ui/taxonomy/hooks/use-lock-body.ts", "repo_id": "shadcn-ui/taxonomy", "token_count": 127 }
105
// @ts-nocheck // This file is autogenerated by scripts/build-registry.ts // Do not edit this file directly. import * as React from "react" export const Index: Record<string, any> = { "new-york": { "accordion": { name: "accordion", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/accordion.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/accordion.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert": { name: "alert", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/alert.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/alert.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert-dialog": { name: "alert-dialog", type: "registry:ui", registryDependencies: ["button"], files: ["registry/new-york/ui/alert-dialog.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/alert-dialog.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "aspect-ratio": { name: "aspect-ratio", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/aspect-ratio.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/aspect-ratio.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "avatar": { name: "avatar", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/avatar.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/avatar.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge": { name: "badge", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/badge.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/badge.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb": { name: "breadcrumb", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/breadcrumb.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/breadcrumb.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button": { name: "button", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/button.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/button.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "calendar": { name: "calendar", type: "registry:ui", registryDependencies: ["button"], files: ["registry/new-york/ui/calendar.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/calendar.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "card": { name: "card", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/card.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/card.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel": { name: "carousel", type: "registry:ui", registryDependencies: ["button"], files: ["registry/new-york/ui/carousel.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/carousel.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart": { name: "chart", type: "registry:ui", registryDependencies: ["card"], files: ["registry/new-york/ui/chart.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/chart.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox": { name: "checkbox", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/checkbox.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/checkbox.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "collapsible": { name: "collapsible", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/collapsible.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/collapsible.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "command": { name: "command", type: "registry:ui", registryDependencies: ["dialog"], files: ["registry/new-york/ui/command.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/command.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "context-menu": { name: "context-menu", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/context-menu.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/context-menu.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dialog": { name: "dialog", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/dialog.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/dialog.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "drawer": { name: "drawer", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/drawer.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/drawer.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dropdown-menu": { name: "dropdown-menu", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/dropdown-menu.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/dropdown-menu.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "form": { name: "form", type: "registry:ui", registryDependencies: ["button","label"], files: ["registry/new-york/ui/form.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "hover-card": { name: "hover-card", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/hover-card.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/hover-card.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input": { name: "input", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/input.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/input.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp": { name: "input-otp", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/input-otp.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/input-otp.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "label": { name: "label", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/label.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/label.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "menubar": { name: "menubar", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/menubar.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/menubar.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "navigation-menu": { name: "navigation-menu", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/navigation-menu.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/navigation-menu.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "pagination": { name: "pagination", type: "registry:ui", registryDependencies: ["button"], files: ["registry/new-york/ui/pagination.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/pagination.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "popover": { name: "popover", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/popover.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/popover.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "progress": { name: "progress", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/progress.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/progress.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "radio-group": { name: "radio-group", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/radio-group.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/radio-group.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable": { name: "resizable", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/resizable.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/resizable.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "scroll-area": { name: "scroll-area", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/scroll-area.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/scroll-area.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "select": { name: "select", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/select.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/select.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "separator": { name: "separator", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/separator.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/separator.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sheet": { name: "sheet", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/sheet.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/sheet.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "skeleton": { name: "skeleton", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/skeleton.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/skeleton.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "slider": { name: "slider", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/slider.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/slider.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sonner": { name: "sonner", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/sonner.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/sonner.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "switch": { name: "switch", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/switch.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/switch.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "table": { name: "table", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/table.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/table.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "tabs": { name: "tabs", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/tabs.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/tabs.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea": { name: "textarea", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/textarea.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/textarea.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast": { name: "toast", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/toast.tsx","registry/new-york/hooks/use-toast.ts","registry/new-york/ui/toaster.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/toast.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle": { name: "toggle", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/toggle.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/toggle.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group": { name: "toggle-group", type: "registry:ui", registryDependencies: ["toggle"], files: ["registry/new-york/ui/toggle-group.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/toggle-group.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "tooltip": { name: "tooltip", type: "registry:ui", registryDependencies: undefined, files: ["registry/new-york/ui/tooltip.tsx"], component: React.lazy(() => import("@/registry/new-york/ui/tooltip.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "accordion-demo": { name: "accordion-demo", type: "registry:example", registryDependencies: ["accordion"], files: ["registry/new-york/example/accordion-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/accordion-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert-demo": { name: "alert-demo", type: "registry:example", registryDependencies: ["alert"], files: ["registry/new-york/example/alert-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/alert-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert-destructive": { name: "alert-destructive", type: "registry:example", registryDependencies: ["alert"], files: ["registry/new-york/example/alert-destructive.tsx"], component: React.lazy(() => import("@/registry/new-york/example/alert-destructive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert-dialog-demo": { name: "alert-dialog-demo", type: "registry:example", registryDependencies: ["alert-dialog","button"], files: ["registry/new-york/example/alert-dialog-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/alert-dialog-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "aspect-ratio-demo": { name: "aspect-ratio-demo", type: "registry:example", registryDependencies: ["aspect-ratio"], files: ["registry/new-york/example/aspect-ratio-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/aspect-ratio-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "avatar-demo": { name: "avatar-demo", type: "registry:example", registryDependencies: ["avatar"], files: ["registry/new-york/example/avatar-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/avatar-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge-demo": { name: "badge-demo", type: "registry:example", registryDependencies: ["badge"], files: ["registry/new-york/example/badge-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/badge-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge-destructive": { name: "badge-destructive", type: "registry:example", registryDependencies: ["badge"], files: ["registry/new-york/example/badge-destructive.tsx"], component: React.lazy(() => import("@/registry/new-york/example/badge-destructive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge-outline": { name: "badge-outline", type: "registry:example", registryDependencies: ["badge"], files: ["registry/new-york/example/badge-outline.tsx"], component: React.lazy(() => import("@/registry/new-york/example/badge-outline.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge-secondary": { name: "badge-secondary", type: "registry:example", registryDependencies: ["badge"], files: ["registry/new-york/example/badge-secondary.tsx"], component: React.lazy(() => import("@/registry/new-york/example/badge-secondary.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-demo": { name: "breadcrumb-demo", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/new-york/example/breadcrumb-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/breadcrumb-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-separator": { name: "breadcrumb-separator", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/new-york/example/breadcrumb-separator.tsx"], component: React.lazy(() => import("@/registry/new-york/example/breadcrumb-separator.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-dropdown": { name: "breadcrumb-dropdown", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/new-york/example/breadcrumb-dropdown.tsx"], component: React.lazy(() => import("@/registry/new-york/example/breadcrumb-dropdown.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-ellipsis": { name: "breadcrumb-ellipsis", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/new-york/example/breadcrumb-ellipsis.tsx"], component: React.lazy(() => import("@/registry/new-york/example/breadcrumb-ellipsis.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-link": { name: "breadcrumb-link", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/new-york/example/breadcrumb-link.tsx"], component: React.lazy(() => import("@/registry/new-york/example/breadcrumb-link.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-responsive": { name: "breadcrumb-responsive", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/new-york/example/breadcrumb-responsive.tsx"], component: React.lazy(() => import("@/registry/new-york/example/breadcrumb-responsive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-demo": { name: "button-demo", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-secondary": { name: "button-secondary", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-secondary.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-secondary.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-destructive": { name: "button-destructive", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-destructive.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-destructive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-outline": { name: "button-outline", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-outline.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-outline.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-ghost": { name: "button-ghost", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-ghost.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-ghost.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-link": { name: "button-link", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-link.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-link.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-with-icon": { name: "button-with-icon", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-with-icon.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-with-icon.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-loading": { name: "button-loading", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-loading.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-loading.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-icon": { name: "button-icon", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-icon.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-icon.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-as-child": { name: "button-as-child", type: "registry:example", registryDependencies: ["button"], files: ["registry/new-york/example/button-as-child.tsx"], component: React.lazy(() => import("@/registry/new-york/example/button-as-child.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "calendar-demo": { name: "calendar-demo", type: "registry:example", registryDependencies: ["calendar"], files: ["registry/new-york/example/calendar-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/calendar-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "calendar-form": { name: "calendar-form", type: "registry:example", registryDependencies: ["calendar","form","popover"], files: ["registry/new-york/example/calendar-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/calendar-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "card-demo": { name: "card-demo", type: "registry:example", registryDependencies: ["card","button","switch"], files: ["registry/new-york/example/card-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/card-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "card-with-form": { name: "card-with-form", type: "registry:example", registryDependencies: ["button","card","input","label","select"], files: ["registry/new-york/example/card-with-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/card-with-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-demo": { name: "carousel-demo", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/new-york/example/carousel-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/carousel-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-size": { name: "carousel-size", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/new-york/example/carousel-size.tsx"], component: React.lazy(() => import("@/registry/new-york/example/carousel-size.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-spacing": { name: "carousel-spacing", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/new-york/example/carousel-spacing.tsx"], component: React.lazy(() => import("@/registry/new-york/example/carousel-spacing.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-orientation": { name: "carousel-orientation", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/new-york/example/carousel-orientation.tsx"], component: React.lazy(() => import("@/registry/new-york/example/carousel-orientation.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-api": { name: "carousel-api", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/new-york/example/carousel-api.tsx"], component: React.lazy(() => import("@/registry/new-york/example/carousel-api.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-plugin": { name: "carousel-plugin", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/new-york/example/carousel-plugin.tsx"], component: React.lazy(() => import("@/registry/new-york/example/carousel-plugin.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-demo": { name: "checkbox-demo", type: "registry:example", registryDependencies: ["checkbox"], files: ["registry/new-york/example/checkbox-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/checkbox-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-disabled": { name: "checkbox-disabled", type: "registry:example", registryDependencies: ["checkbox"], files: ["registry/new-york/example/checkbox-disabled.tsx"], component: React.lazy(() => import("@/registry/new-york/example/checkbox-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-form-multiple": { name: "checkbox-form-multiple", type: "registry:example", registryDependencies: ["checkbox","form"], files: ["registry/new-york/example/checkbox-form-multiple.tsx"], component: React.lazy(() => import("@/registry/new-york/example/checkbox-form-multiple.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-form-single": { name: "checkbox-form-single", type: "registry:example", registryDependencies: ["checkbox","form"], files: ["registry/new-york/example/checkbox-form-single.tsx"], component: React.lazy(() => import("@/registry/new-york/example/checkbox-form-single.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-with-text": { name: "checkbox-with-text", type: "registry:example", registryDependencies: ["checkbox"], files: ["registry/new-york/example/checkbox-with-text.tsx"], component: React.lazy(() => import("@/registry/new-york/example/checkbox-with-text.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "collapsible-demo": { name: "collapsible-demo", type: "registry:example", registryDependencies: ["collapsible"], files: ["registry/new-york/example/collapsible-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/collapsible-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-demo": { name: "combobox-demo", type: "registry:example", registryDependencies: ["command"], files: ["registry/new-york/example/combobox-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/combobox-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-dropdown-menu": { name: "combobox-dropdown-menu", type: "registry:example", registryDependencies: ["command","dropdown-menu","button"], files: ["registry/new-york/example/combobox-dropdown-menu.tsx"], component: React.lazy(() => import("@/registry/new-york/example/combobox-dropdown-menu.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-form": { name: "combobox-form", type: "registry:example", registryDependencies: ["command","form"], files: ["registry/new-york/example/combobox-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/combobox-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-popover": { name: "combobox-popover", type: "registry:example", registryDependencies: ["combobox","popover"], files: ["registry/new-york/example/combobox-popover.tsx"], component: React.lazy(() => import("@/registry/new-york/example/combobox-popover.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-responsive": { name: "combobox-responsive", type: "registry:example", registryDependencies: ["combobox","popover","drawer"], files: ["registry/new-york/example/combobox-responsive.tsx"], component: React.lazy(() => import("@/registry/new-york/example/combobox-responsive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "command-demo": { name: "command-demo", type: "registry:example", registryDependencies: ["command"], files: ["registry/new-york/example/command-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/command-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "command-dialog": { name: "command-dialog", type: "registry:example", registryDependencies: ["command","dialog"], files: ["registry/new-york/example/command-dialog.tsx"], component: React.lazy(() => import("@/registry/new-york/example/command-dialog.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "context-menu-demo": { name: "context-menu-demo", type: "registry:example", registryDependencies: ["context-menu"], files: ["registry/new-york/example/context-menu-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/context-menu-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "data-table-demo": { name: "data-table-demo", type: "registry:example", registryDependencies: ["data-table"], files: ["registry/new-york/example/data-table-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/data-table-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "date-picker-demo": { name: "date-picker-demo", type: "registry:example", registryDependencies: ["button","calendar","popover"], files: ["registry/new-york/example/date-picker-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/date-picker-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "date-picker-form": { name: "date-picker-form", type: "registry:example", registryDependencies: ["button","calendar","form","popover"], files: ["registry/new-york/example/date-picker-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/date-picker-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "date-picker-with-presets": { name: "date-picker-with-presets", type: "registry:example", registryDependencies: ["button","calendar","popover","select"], files: ["registry/new-york/example/date-picker-with-presets.tsx"], component: React.lazy(() => import("@/registry/new-york/example/date-picker-with-presets.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "date-picker-with-range": { name: "date-picker-with-range", type: "registry:example", registryDependencies: ["button","calendar","popover"], files: ["registry/new-york/example/date-picker-with-range.tsx"], component: React.lazy(() => import("@/registry/new-york/example/date-picker-with-range.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dialog-demo": { name: "dialog-demo", type: "registry:example", registryDependencies: ["dialog"], files: ["registry/new-york/example/dialog-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/dialog-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dialog-close-button": { name: "dialog-close-button", type: "registry:example", registryDependencies: ["dialog","button"], files: ["registry/new-york/example/dialog-close-button.tsx"], component: React.lazy(() => import("@/registry/new-york/example/dialog-close-button.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "drawer-demo": { name: "drawer-demo", type: "registry:example", registryDependencies: ["drawer"], files: ["registry/new-york/example/drawer-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/drawer-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "drawer-dialog": { name: "drawer-dialog", type: "registry:example", registryDependencies: ["drawer","dialog"], files: ["registry/new-york/example/drawer-dialog.tsx"], component: React.lazy(() => import("@/registry/new-york/example/drawer-dialog.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dropdown-menu-demo": { name: "dropdown-menu-demo", type: "registry:example", registryDependencies: ["dropdown-menu"], files: ["registry/new-york/example/dropdown-menu-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/dropdown-menu-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dropdown-menu-checkboxes": { name: "dropdown-menu-checkboxes", type: "registry:example", registryDependencies: ["dropdown-menu","checkbox"], files: ["registry/new-york/example/dropdown-menu-checkboxes.tsx"], component: React.lazy(() => import("@/registry/new-york/example/dropdown-menu-checkboxes.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dropdown-menu-radio-group": { name: "dropdown-menu-radio-group", type: "registry:example", registryDependencies: ["dropdown-menu","radio-group"], files: ["registry/new-york/example/dropdown-menu-radio-group.tsx"], component: React.lazy(() => import("@/registry/new-york/example/dropdown-menu-radio-group.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "hover-card-demo": { name: "hover-card-demo", type: "registry:example", registryDependencies: ["hover-card"], files: ["registry/new-york/example/hover-card-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/hover-card-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-demo": { name: "input-demo", type: "registry:example", registryDependencies: ["input"], files: ["registry/new-york/example/input-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-disabled": { name: "input-disabled", type: "registry:example", registryDependencies: ["input"], files: ["registry/new-york/example/input-disabled.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-file": { name: "input-file", type: "registry:example", registryDependencies: ["input"], files: ["registry/new-york/example/input-file.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-file.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-form": { name: "input-form", type: "registry:example", registryDependencies: ["input","button","form"], files: ["registry/new-york/example/input-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-with-button": { name: "input-with-button", type: "registry:example", registryDependencies: ["input","button"], files: ["registry/new-york/example/input-with-button.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-with-button.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-with-label": { name: "input-with-label", type: "registry:example", registryDependencies: ["input","button","label"], files: ["registry/new-york/example/input-with-label.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-with-label.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-with-text": { name: "input-with-text", type: "registry:example", registryDependencies: ["input","button","label"], files: ["registry/new-york/example/input-with-text.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-with-text.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-demo": { name: "input-otp-demo", type: "registry:example", registryDependencies: ["input-otp"], files: ["registry/new-york/example/input-otp-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-otp-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-pattern": { name: "input-otp-pattern", type: "registry:example", registryDependencies: ["input-otp"], files: ["registry/new-york/example/input-otp-pattern.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-otp-pattern.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-separator": { name: "input-otp-separator", type: "registry:example", registryDependencies: ["input-otp"], files: ["registry/new-york/example/input-otp-separator.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-otp-separator.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-controlled": { name: "input-otp-controlled", type: "registry:example", registryDependencies: ["input-otp"], files: ["registry/new-york/example/input-otp-controlled.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-otp-controlled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-form": { name: "input-otp-form", type: "registry:example", registryDependencies: ["input-otp","form"], files: ["registry/new-york/example/input-otp-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/input-otp-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "label-demo": { name: "label-demo", type: "registry:example", registryDependencies: ["label"], files: ["registry/new-york/example/label-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/label-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "menubar-demo": { name: "menubar-demo", type: "registry:example", registryDependencies: ["menubar"], files: ["registry/new-york/example/menubar-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/menubar-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "navigation-menu-demo": { name: "navigation-menu-demo", type: "registry:example", registryDependencies: ["navigation-menu"], files: ["registry/new-york/example/navigation-menu-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/navigation-menu-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "pagination-demo": { name: "pagination-demo", type: "registry:example", registryDependencies: ["pagination"], files: ["registry/new-york/example/pagination-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/pagination-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "popover-demo": { name: "popover-demo", type: "registry:example", registryDependencies: ["popover"], files: ["registry/new-york/example/popover-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/popover-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "progress-demo": { name: "progress-demo", type: "registry:example", registryDependencies: ["progress"], files: ["registry/new-york/example/progress-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/progress-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "radio-group-demo": { name: "radio-group-demo", type: "registry:example", registryDependencies: ["radio-group"], files: ["registry/new-york/example/radio-group-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/radio-group-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "radio-group-form": { name: "radio-group-form", type: "registry:example", registryDependencies: ["radio-group","form"], files: ["registry/new-york/example/radio-group-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/radio-group-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable-demo": { name: "resizable-demo", type: "registry:example", registryDependencies: ["resizable"], files: ["registry/new-york/example/resizable-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/resizable-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable-demo-with-handle": { name: "resizable-demo-with-handle", type: "registry:example", registryDependencies: ["resizable"], files: ["registry/new-york/example/resizable-demo-with-handle.tsx"], component: React.lazy(() => import("@/registry/new-york/example/resizable-demo-with-handle.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable-vertical": { name: "resizable-vertical", type: "registry:example", registryDependencies: ["resizable"], files: ["registry/new-york/example/resizable-vertical.tsx"], component: React.lazy(() => import("@/registry/new-york/example/resizable-vertical.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable-handle": { name: "resizable-handle", type: "registry:example", registryDependencies: ["resizable"], files: ["registry/new-york/example/resizable-handle.tsx"], component: React.lazy(() => import("@/registry/new-york/example/resizable-handle.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "scroll-area-demo": { name: "scroll-area-demo", type: "registry:example", registryDependencies: ["scroll-area"], files: ["registry/new-york/example/scroll-area-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/scroll-area-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "scroll-area-horizontal-demo": { name: "scroll-area-horizontal-demo", type: "registry:example", registryDependencies: ["scroll-area"], files: ["registry/new-york/example/scroll-area-horizontal-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/scroll-area-horizontal-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "select-demo": { name: "select-demo", type: "registry:example", registryDependencies: ["select"], files: ["registry/new-york/example/select-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/select-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "select-scrollable": { name: "select-scrollable", type: "registry:example", registryDependencies: ["select"], files: ["registry/new-york/example/select-scrollable.tsx"], component: React.lazy(() => import("@/registry/new-york/example/select-scrollable.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "select-form": { name: "select-form", type: "registry:example", registryDependencies: ["select"], files: ["registry/new-york/example/select-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/select-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "separator-demo": { name: "separator-demo", type: "registry:example", registryDependencies: ["separator"], files: ["registry/new-york/example/separator-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/separator-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sheet-demo": { name: "sheet-demo", type: "registry:example", registryDependencies: ["sheet"], files: ["registry/new-york/example/sheet-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/sheet-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sheet-side": { name: "sheet-side", type: "registry:example", registryDependencies: ["sheet"], files: ["registry/new-york/example/sheet-side.tsx"], component: React.lazy(() => import("@/registry/new-york/example/sheet-side.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "skeleton-demo": { name: "skeleton-demo", type: "registry:example", registryDependencies: ["skeleton"], files: ["registry/new-york/example/skeleton-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/skeleton-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "skeleton-card": { name: "skeleton-card", type: "registry:example", registryDependencies: ["skeleton"], files: ["registry/new-york/example/skeleton-card.tsx"], component: React.lazy(() => import("@/registry/new-york/example/skeleton-card.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "slider-demo": { name: "slider-demo", type: "registry:example", registryDependencies: ["slider"], files: ["registry/new-york/example/slider-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/slider-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sonner-demo": { name: "sonner-demo", type: "registry:example", registryDependencies: ["sonner"], files: ["registry/new-york/example/sonner-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/sonner-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "switch-demo": { name: "switch-demo", type: "registry:example", registryDependencies: ["switch"], files: ["registry/new-york/example/switch-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/switch-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "switch-form": { name: "switch-form", type: "registry:example", registryDependencies: ["switch","form"], files: ["registry/new-york/example/switch-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/switch-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "table-demo": { name: "table-demo", type: "registry:example", registryDependencies: ["table"], files: ["registry/new-york/example/table-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/table-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "tabs-demo": { name: "tabs-demo", type: "registry:example", registryDependencies: ["tabs"], files: ["registry/new-york/example/tabs-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/tabs-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-demo": { name: "textarea-demo", type: "registry:example", registryDependencies: ["textarea"], files: ["registry/new-york/example/textarea-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/textarea-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-disabled": { name: "textarea-disabled", type: "registry:example", registryDependencies: ["textarea"], files: ["registry/new-york/example/textarea-disabled.tsx"], component: React.lazy(() => import("@/registry/new-york/example/textarea-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-form": { name: "textarea-form", type: "registry:example", registryDependencies: ["textarea","form"], files: ["registry/new-york/example/textarea-form.tsx"], component: React.lazy(() => import("@/registry/new-york/example/textarea-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-with-button": { name: "textarea-with-button", type: "registry:example", registryDependencies: ["textarea","button"], files: ["registry/new-york/example/textarea-with-button.tsx"], component: React.lazy(() => import("@/registry/new-york/example/textarea-with-button.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-with-label": { name: "textarea-with-label", type: "registry:example", registryDependencies: ["textarea","label"], files: ["registry/new-york/example/textarea-with-label.tsx"], component: React.lazy(() => import("@/registry/new-york/example/textarea-with-label.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-with-text": { name: "textarea-with-text", type: "registry:example", registryDependencies: ["textarea","label"], files: ["registry/new-york/example/textarea-with-text.tsx"], component: React.lazy(() => import("@/registry/new-york/example/textarea-with-text.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-demo": { name: "toast-demo", type: "registry:example", registryDependencies: ["toast"], files: ["registry/new-york/example/toast-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toast-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-destructive": { name: "toast-destructive", type: "registry:example", registryDependencies: ["toast"], files: ["registry/new-york/example/toast-destructive.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toast-destructive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-simple": { name: "toast-simple", type: "registry:example", registryDependencies: ["toast"], files: ["registry/new-york/example/toast-simple.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toast-simple.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-with-action": { name: "toast-with-action", type: "registry:example", registryDependencies: ["toast"], files: ["registry/new-york/example/toast-with-action.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toast-with-action.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-with-title": { name: "toast-with-title", type: "registry:example", registryDependencies: ["toast"], files: ["registry/new-york/example/toast-with-title.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toast-with-title.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-demo": { name: "toggle-group-demo", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/new-york/example/toggle-group-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-group-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-disabled": { name: "toggle-group-disabled", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/new-york/example/toggle-group-disabled.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-group-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-lg": { name: "toggle-group-lg", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/new-york/example/toggle-group-lg.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-group-lg.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-outline": { name: "toggle-group-outline", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/new-york/example/toggle-group-outline.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-group-outline.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-sm": { name: "toggle-group-sm", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/new-york/example/toggle-group-sm.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-group-sm.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-single": { name: "toggle-group-single", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/new-york/example/toggle-group-single.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-group-single.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-demo": { name: "toggle-demo", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/new-york/example/toggle-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-disabled": { name: "toggle-disabled", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/new-york/example/toggle-disabled.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-lg": { name: "toggle-lg", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/new-york/example/toggle-lg.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-lg.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-outline": { name: "toggle-outline", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/new-york/example/toggle-outline.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-outline.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-sm": { name: "toggle-sm", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/new-york/example/toggle-sm.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-sm.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-with-text": { name: "toggle-with-text", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/new-york/example/toggle-with-text.tsx"], component: React.lazy(() => import("@/registry/new-york/example/toggle-with-text.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "tooltip-demo": { name: "tooltip-demo", type: "registry:example", registryDependencies: ["tooltip"], files: ["registry/new-york/example/tooltip-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/tooltip-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-blockquote": { name: "typography-blockquote", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-blockquote.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-blockquote.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-demo": { name: "typography-demo", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-h1": { name: "typography-h1", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-h1.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-h1.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-h2": { name: "typography-h2", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-h2.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-h2.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-h3": { name: "typography-h3", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-h3.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-h3.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-h4": { name: "typography-h4", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-h4.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-h4.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-inline-code": { name: "typography-inline-code", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-inline-code.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-inline-code.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-large": { name: "typography-large", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-large.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-large.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-lead": { name: "typography-lead", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-lead.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-lead.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-list": { name: "typography-list", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-list.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-list.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-muted": { name: "typography-muted", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-muted.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-muted.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-p": { name: "typography-p", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-p.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-p.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-small": { name: "typography-small", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-small.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-small.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-table": { name: "typography-table", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/typography-table.tsx"], component: React.lazy(() => import("@/registry/new-york/example/typography-table.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "mode-toggle": { name: "mode-toggle", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/mode-toggle.tsx"], component: React.lazy(() => import("@/registry/new-york/example/mode-toggle.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo": { name: "chart-bar-demo", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/chart-bar-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/chart-bar-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo-grid": { name: "chart-bar-demo-grid", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/chart-bar-demo-grid.tsx"], component: React.lazy(() => import("@/registry/new-york/example/chart-bar-demo-grid.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo-axis": { name: "chart-bar-demo-axis", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/chart-bar-demo-axis.tsx"], component: React.lazy(() => import("@/registry/new-york/example/chart-bar-demo-axis.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo-tooltip": { name: "chart-bar-demo-tooltip", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/chart-bar-demo-tooltip.tsx"], component: React.lazy(() => import("@/registry/new-york/example/chart-bar-demo-tooltip.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo-legend": { name: "chart-bar-demo-legend", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/chart-bar-demo-legend.tsx"], component: React.lazy(() => import("@/registry/new-york/example/chart-bar-demo-legend.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-tooltip-demo": { name: "chart-tooltip-demo", type: "registry:example", registryDependencies: undefined, files: ["registry/new-york/example/chart-tooltip-demo.tsx"], component: React.lazy(() => import("@/registry/new-york/example/chart-tooltip-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sidebar-01": { name: "sidebar-01", type: "registry:block", registryDependencies: ["avatar","button","collapsible","dropdown-menu","drawer","separator","input","popover","sheet","progress","card","use-mobile"], files: ["registry/new-york/block/sidebar-01/page.tsx","registry/new-york/block/sidebar-01/components/app-sidebar.tsx","registry/new-york/block/sidebar-01/components/nav-main.tsx","registry/new-york/block/sidebar-01/components/nav-projects.tsx","registry/new-york/block/sidebar-01/components/nav-secondary.tsx","registry/new-york/block/sidebar-01/components/nav-user.tsx","registry/new-york/block/sidebar-01/components/storage-card.tsx","registry/new-york/block/sidebar-01/components/team-switcher.tsx","registry/new-york/block/sidebar-01/hooks/use-sidebar.tsx","registry/new-york/block/sidebar-01/ui/sidebar.tsx"], component: React.lazy(() => import("@/registry/new-york/block/sidebar-01/page.tsx")), source: "__registry__/new-york/block/sidebar-01/page.tsx", category: "Application", subcategory: "Dashboard", chunks: [] }, "login-01": { name: "login-01", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/new-york/block/login-01/page.tsx","registry/new-york/block/login-01/components/login-form.tsx"], component: React.lazy(() => import("@/registry/new-york/block/login-01/page.tsx")), source: "__registry__/new-york/block/login-01/page.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "charts-01": { name: "charts-01", type: "registry:block", registryDependencies: ["chart"], files: ["registry/new-york/block/charts-01.tsx"], component: React.lazy(() => import("@/registry/new-york/block/charts-01.tsx")), source: "__registry__/new-york/block/charts-01.tsx", category: "Application", subcategory: "Charts", chunks: [{ name: "charts-01-chunk-0", description: "A bar chart showing the number of steps you have walked in the past 7 days.", component: React.lazy(() => import("@/registry/new-york/block/charts-01-chunk-0")), file: "registry/new-york/block/charts-01-chunk-0.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-1", description: "A line chart showing the resting heart rate for the past 7 days.", component: React.lazy(() => import("@/registry/new-york/block/charts-01-chunk-1")), file: "registry/new-york/block/charts-01-chunk-1.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-2", description: "Two horizontal bar charts showing total steps taken during the current year and last year.", component: React.lazy(() => import("@/registry/new-york/block/charts-01-chunk-2")), file: "registry/new-york/block/charts-01-chunk-2.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-3", description: "A bar chart showing the walking and running distance for the past 7 days.", component: React.lazy(() => import("@/registry/new-york/block/charts-01-chunk-3")), file: "registry/new-york/block/charts-01-chunk-3.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-4", description: "A bar chart showing move, exercise, and stand progress.", component: React.lazy(() => import("@/registry/new-york/block/charts-01-chunk-4")), file: "registry/new-york/block/charts-01-chunk-4.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-5", description: "A radial bar chart showing the percentage of time spent moving, exercising, and standing.", component: React.lazy(() => import("@/registry/new-york/block/charts-01-chunk-5")), file: "registry/new-york/block/charts-01-chunk-5.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-6", description: "A bar chart showing active energy in the past 7 days.", component: React.lazy(() => import("@/registry/new-york/block/charts-01-chunk-6")), file: "registry/new-york/block/charts-01-chunk-6.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-7", description: "An area chart showing the time spent in bed for the past 7 days.", component: React.lazy(() => import("@/registry/new-york/block/charts-01-chunk-7")), file: "registry/new-york/block/charts-01-chunk-7.tsx", container: { className: "undefined" } }] }, "dashboard-05": { name: "dashboard-05", type: "registry:block", registryDependencies: ["badge","breadcrumb","button","card","dropdown-menu","input","pagination","progress","separator","sheet","table","tabs","tooltip"], files: ["registry/new-york/block/dashboard-05.tsx"], component: React.lazy(() => import("@/registry/new-york/block/dashboard-05.tsx")), source: "__registry__/new-york/block/dashboard-05.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-05-chunk-0", description: "A card for an orders dashboard with a description and a button to create a new order.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-05-chunk-0")), file: "registry/new-york/block/dashboard-05-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-05-chunk-1", description: "A stats card showing this week's total sales in USD, the percentage difference from last week, and a progress bar.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-05-chunk-1")), file: "registry/new-york/block/dashboard-05-chunk-1.tsx", container: { className: "undefined" } },{ name: "dashboard-05-chunk-2", description: "A stats card showing this month's total sales in USD, the percentage difference from last month, and a progress bar.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-05-chunk-2")), file: "registry/new-york/block/dashboard-05-chunk-2.tsx", container: { className: "undefined" } },{ name: "dashboard-05-chunk-3", description: "A table of recent orders showing the following columns: Customer, Type, Status, Date, and Amount.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-05-chunk-3")), file: "registry/new-york/block/dashboard-05-chunk-3.tsx", container: { className: "undefined" } },{ name: "dashboard-05-chunk-4", description: "An order details card with order details, shipping information, customer information and payment information.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-05-chunk-4")), file: "registry/new-york/block/dashboard-05-chunk-4.tsx", container: { className: "undefined" } }] }, "dashboard-06": { name: "dashboard-06", type: "registry:block", registryDependencies: ["badge","breadcrumb","button","card","dropdown-menu","input","sheet","table","tabs","tooltip"], files: ["registry/new-york/block/dashboard-06.tsx"], component: React.lazy(() => import("@/registry/new-york/block/dashboard-06.tsx")), source: "__registry__/new-york/block/dashboard-06.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-06-chunk-0", description: "A list of products in a table with actions. Each row has an image, name, status, price, total sales, created at and actions.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-06-chunk-0")), file: "registry/new-york/block/dashboard-06-chunk-0.tsx", container: { className: "undefined" } }] }, "dashboard-07": { name: "dashboard-07", type: "registry:block", registryDependencies: ["badge","breadcrumb","button","card","dropdown-menu","input","pagination","progress","separator","sheet","table","tabs","tooltip"], files: ["registry/new-york/block/dashboard-07.tsx"], component: React.lazy(() => import("@/registry/new-york/block/dashboard-07.tsx")), source: "__registry__/new-york/block/dashboard-07.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-07-chunk-0", description: "A card with a form to edit the product details", component: React.lazy(() => import("@/registry/new-york/block/dashboard-07-chunk-0")), file: "registry/new-york/block/dashboard-07-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-1", description: "A card with a form to edit the product stock and variants", component: React.lazy(() => import("@/registry/new-york/block/dashboard-07-chunk-1")), file: "registry/new-york/block/dashboard-07-chunk-1.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-2", description: "A card with a form to edit the product category and subcategory", component: React.lazy(() => import("@/registry/new-york/block/dashboard-07-chunk-2")), file: "registry/new-york/block/dashboard-07-chunk-2.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-3", description: "A card with a form to edit the product status", component: React.lazy(() => import("@/registry/new-york/block/dashboard-07-chunk-3")), file: "registry/new-york/block/dashboard-07-chunk-3.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-4", description: "A card with a form to upload product images", component: React.lazy(() => import("@/registry/new-york/block/dashboard-07-chunk-4")), file: "registry/new-york/block/dashboard-07-chunk-4.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-5", description: "A card with a call to action to archive the product", component: React.lazy(() => import("@/registry/new-york/block/dashboard-07-chunk-5")), file: "registry/new-york/block/dashboard-07-chunk-5.tsx", container: { className: "undefined" } }] }, "dashboard-04": { name: "dashboard-04", type: "registry:block", registryDependencies: ["button","card","dropdown-menu","input"], files: ["registry/new-york/block/dashboard-04.tsx"], component: React.lazy(() => import("@/registry/new-york/block/dashboard-04.tsx")), source: "__registry__/new-york/block/dashboard-04.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-04-chunk-0", description: "A sidebar navigation with links to general, security, integrations, support, organizations, and advanced settings.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-04-chunk-0")), file: "registry/new-york/block/dashboard-04-chunk-0.tsx", container: { className: "chunk-container after:right-0" } },{ name: "dashboard-04-chunk-1", description: "A form to update the store name.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-04-chunk-1")), file: "registry/new-york/block/dashboard-04-chunk-1.tsx", container: { className: "undefined" } },{ name: "dashboard-04-chunk-2", description: "A form to update the plugins directory with a checkbox to allow administrators to change the directory.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-04-chunk-2")), file: "registry/new-york/block/dashboard-04-chunk-2.tsx", container: { className: "undefined" } }] }, "dashboard-03": { name: "dashboard-03", type: "registry:block", registryDependencies: ["badge","button","drawer","input","label","select","textarea","tooltip"], files: ["registry/new-york/block/dashboard-03.tsx"], component: React.lazy(() => import("@/registry/new-york/block/dashboard-03.tsx")), source: "__registry__/new-york/block/dashboard-03.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-03-chunk-0", description: "A settings form a configuring an AI model and messages.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-03-chunk-0")), file: "registry/new-york/block/dashboard-03-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-03-chunk-1", description: "A form for sending a message to an AI chatbot. The form has a textarea and buttons to upload files and record audio.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-03-chunk-1")), file: "registry/new-york/block/dashboard-03-chunk-1.tsx", container: { className: "undefined" } }] }, "dashboard-02": { name: "dashboard-02", type: "registry:block", registryDependencies: ["badge","button","card","dropdown-menu","input"], files: ["registry/new-york/block/dashboard-02.tsx"], component: React.lazy(() => import("@/registry/new-york/block/dashboard-02.tsx")), source: "__registry__/new-york/block/dashboard-02.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-02-chunk-0", description: "A card with a call to action", component: React.lazy(() => import("@/registry/new-york/block/dashboard-02-chunk-0")), file: "registry/new-york/block/dashboard-02-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-02-chunk-1", description: "An empty state showing no products with a heading, description and a call to action to add a product.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-02-chunk-1")), file: "registry/new-york/block/dashboard-02-chunk-1.tsx", container: { className: "undefined" } }] }, "dashboard-01": { name: "dashboard-01", type: "registry:block", registryDependencies: ["button","dropdown-menu","input","sheet"], files: ["registry/new-york/block/dashboard-01.tsx"], component: React.lazy(() => import("@/registry/new-york/block/dashboard-01.tsx")), source: "__registry__/new-york/block/dashboard-01.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-01-chunk-0", description: "A card showing the total revenue in USD and the percentage difference from last month.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-01-chunk-0")), file: "registry/new-york/block/dashboard-01-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-1", description: "A card showing the total subscriptions and the percentage difference from last month.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-01-chunk-1")), file: "registry/new-york/block/dashboard-01-chunk-1.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-2", description: "A card showing the total sales and the percentage difference from last month.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-01-chunk-2")), file: "registry/new-york/block/dashboard-01-chunk-2.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-3", description: "A card showing the total active users and the percentage difference from last hour.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-01-chunk-3")), file: "registry/new-york/block/dashboard-01-chunk-3.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-4", description: "A card showing a table of recent transactions with a link to view all transactions.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-01-chunk-4")), file: "registry/new-york/block/dashboard-01-chunk-4.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-5", description: "A card showing a list of recent sales with customer names and email addresses.", component: React.lazy(() => import("@/registry/new-york/block/dashboard-01-chunk-5")), file: "registry/new-york/block/dashboard-01-chunk-5.tsx", container: { className: "undefined" } }] }, "authentication-01": { name: "authentication-01", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/new-york/block/authentication-01.tsx"], component: React.lazy(() => import("@/registry/new-york/block/authentication-01.tsx")), source: "__registry__/new-york/block/authentication-01.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "authentication-02": { name: "authentication-02", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/new-york/block/authentication-02.tsx"], component: React.lazy(() => import("@/registry/new-york/block/authentication-02.tsx")), source: "__registry__/new-york/block/authentication-02.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "authentication-03": { name: "authentication-03", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/new-york/block/authentication-03.tsx"], component: React.lazy(() => import("@/registry/new-york/block/authentication-03.tsx")), source: "__registry__/new-york/block/authentication-03.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "authentication-04": { name: "authentication-04", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/new-york/block/authentication-04.tsx"], component: React.lazy(() => import("@/registry/new-york/block/authentication-04.tsx")), source: "__registry__/new-york/block/authentication-04.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "chart-area-axes": { name: "chart-area-axes", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-axes.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-axes.tsx")), source: "__registry__/new-york/block/chart-area-axes.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-default": { name: "chart-area-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-default.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-default.tsx")), source: "__registry__/new-york/block/chart-area-default.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-gradient": { name: "chart-area-gradient", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-gradient.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-gradient.tsx")), source: "__registry__/new-york/block/chart-area-gradient.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-icons": { name: "chart-area-icons", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-icons.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-icons.tsx")), source: "__registry__/new-york/block/chart-area-icons.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-interactive": { name: "chart-area-interactive", type: "registry:block", registryDependencies: ["card","chart","select"], files: ["registry/new-york/block/chart-area-interactive.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-interactive.tsx")), source: "__registry__/new-york/block/chart-area-interactive.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-legend": { name: "chart-area-legend", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-legend.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-legend.tsx")), source: "__registry__/new-york/block/chart-area-legend.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-linear": { name: "chart-area-linear", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-linear.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-linear.tsx")), source: "__registry__/new-york/block/chart-area-linear.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-stacked-expand": { name: "chart-area-stacked-expand", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-stacked-expand.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-stacked-expand.tsx")), source: "__registry__/new-york/block/chart-area-stacked-expand.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-stacked": { name: "chart-area-stacked", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-stacked.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-stacked.tsx")), source: "__registry__/new-york/block/chart-area-stacked.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-step": { name: "chart-area-step", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-area-step.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-area-step.tsx")), source: "__registry__/new-york/block/chart-area-step.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-bar-active": { name: "chart-bar-active", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-active.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-active.tsx")), source: "__registry__/new-york/block/chart-bar-active.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-default": { name: "chart-bar-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-default.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-default.tsx")), source: "__registry__/new-york/block/chart-bar-default.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-horizontal": { name: "chart-bar-horizontal", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-horizontal.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-horizontal.tsx")), source: "__registry__/new-york/block/chart-bar-horizontal.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-interactive": { name: "chart-bar-interactive", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-interactive.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-interactive.tsx")), source: "__registry__/new-york/block/chart-bar-interactive.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-label-custom": { name: "chart-bar-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-label-custom.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-label-custom.tsx")), source: "__registry__/new-york/block/chart-bar-label-custom.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-label": { name: "chart-bar-label", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-label.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-label.tsx")), source: "__registry__/new-york/block/chart-bar-label.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-mixed": { name: "chart-bar-mixed", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-mixed.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-mixed.tsx")), source: "__registry__/new-york/block/chart-bar-mixed.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-multiple": { name: "chart-bar-multiple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-multiple.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-multiple.tsx")), source: "__registry__/new-york/block/chart-bar-multiple.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-negative": { name: "chart-bar-negative", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-negative.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-negative.tsx")), source: "__registry__/new-york/block/chart-bar-negative.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-stacked": { name: "chart-bar-stacked", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-bar-stacked.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-bar-stacked.tsx")), source: "__registry__/new-york/block/chart-bar-stacked.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-line-default": { name: "chart-line-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-default.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-default.tsx")), source: "__registry__/new-york/block/chart-line-default.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-dots-colors": { name: "chart-line-dots-colors", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-dots-colors.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-dots-colors.tsx")), source: "__registry__/new-york/block/chart-line-dots-colors.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-dots-custom": { name: "chart-line-dots-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-dots-custom.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-dots-custom.tsx")), source: "__registry__/new-york/block/chart-line-dots-custom.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-dots": { name: "chart-line-dots", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-dots.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-dots.tsx")), source: "__registry__/new-york/block/chart-line-dots.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-interactive": { name: "chart-line-interactive", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-interactive.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-interactive.tsx")), source: "__registry__/new-york/block/chart-line-interactive.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-label-custom": { name: "chart-line-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-label-custom.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-label-custom.tsx")), source: "__registry__/new-york/block/chart-line-label-custom.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-label": { name: "chart-line-label", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-label.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-label.tsx")), source: "__registry__/new-york/block/chart-line-label.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-linear": { name: "chart-line-linear", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-linear.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-linear.tsx")), source: "__registry__/new-york/block/chart-line-linear.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-multiple": { name: "chart-line-multiple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-multiple.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-multiple.tsx")), source: "__registry__/new-york/block/chart-line-multiple.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-step": { name: "chart-line-step", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-line-step.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-line-step.tsx")), source: "__registry__/new-york/block/chart-line-step.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-pie-donut-active": { name: "chart-pie-donut-active", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-donut-active.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-donut-active.tsx")), source: "__registry__/new-york/block/chart-pie-donut-active.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-donut-text": { name: "chart-pie-donut-text", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-donut-text.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-donut-text.tsx")), source: "__registry__/new-york/block/chart-pie-donut-text.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-donut": { name: "chart-pie-donut", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-donut.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-donut.tsx")), source: "__registry__/new-york/block/chart-pie-donut.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-interactive": { name: "chart-pie-interactive", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-interactive.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-interactive.tsx")), source: "__registry__/new-york/block/chart-pie-interactive.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-label-custom": { name: "chart-pie-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-label-custom.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-label-custom.tsx")), source: "__registry__/new-york/block/chart-pie-label-custom.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-label-list": { name: "chart-pie-label-list", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-label-list.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-label-list.tsx")), source: "__registry__/new-york/block/chart-pie-label-list.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-label": { name: "chart-pie-label", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-label.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-label.tsx")), source: "__registry__/new-york/block/chart-pie-label.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-legend": { name: "chart-pie-legend", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-legend.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-legend.tsx")), source: "__registry__/new-york/block/chart-pie-legend.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-separator-none": { name: "chart-pie-separator-none", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-separator-none.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-separator-none.tsx")), source: "__registry__/new-york/block/chart-pie-separator-none.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-simple": { name: "chart-pie-simple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-simple.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-simple.tsx")), source: "__registry__/new-york/block/chart-pie-simple.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-stacked": { name: "chart-pie-stacked", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-pie-stacked.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-pie-stacked.tsx")), source: "__registry__/new-york/block/chart-pie-stacked.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-radar-default": { name: "chart-radar-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-default.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-default.tsx")), source: "__registry__/new-york/block/chart-radar-default.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-dots": { name: "chart-radar-dots", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-dots.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-dots.tsx")), source: "__registry__/new-york/block/chart-radar-dots.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-circle-fill": { name: "chart-radar-grid-circle-fill", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-grid-circle-fill.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-grid-circle-fill.tsx")), source: "__registry__/new-york/block/chart-radar-grid-circle-fill.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-circle-no-lines": { name: "chart-radar-grid-circle-no-lines", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-grid-circle-no-lines.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-grid-circle-no-lines.tsx")), source: "__registry__/new-york/block/chart-radar-grid-circle-no-lines.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-circle": { name: "chart-radar-grid-circle", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-grid-circle.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-grid-circle.tsx")), source: "__registry__/new-york/block/chart-radar-grid-circle.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-custom": { name: "chart-radar-grid-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-grid-custom.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-grid-custom.tsx")), source: "__registry__/new-york/block/chart-radar-grid-custom.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-fill": { name: "chart-radar-grid-fill", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-grid-fill.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-grid-fill.tsx")), source: "__registry__/new-york/block/chart-radar-grid-fill.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-none": { name: "chart-radar-grid-none", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-grid-none.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-grid-none.tsx")), source: "__registry__/new-york/block/chart-radar-grid-none.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-icons": { name: "chart-radar-icons", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-icons.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-icons.tsx")), source: "__registry__/new-york/block/chart-radar-icons.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-label-custom": { name: "chart-radar-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-label-custom.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-label-custom.tsx")), source: "__registry__/new-york/block/chart-radar-label-custom.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-legend": { name: "chart-radar-legend", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-legend.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-legend.tsx")), source: "__registry__/new-york/block/chart-radar-legend.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-lines-only": { name: "chart-radar-lines-only", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-lines-only.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-lines-only.tsx")), source: "__registry__/new-york/block/chart-radar-lines-only.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-multiple": { name: "chart-radar-multiple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-multiple.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-multiple.tsx")), source: "__registry__/new-york/block/chart-radar-multiple.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-radius": { name: "chart-radar-radius", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radar-radius.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radar-radius.tsx")), source: "__registry__/new-york/block/chart-radar-radius.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radial-grid": { name: "chart-radial-grid", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radial-grid.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radial-grid.tsx")), source: "__registry__/new-york/block/chart-radial-grid.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-label": { name: "chart-radial-label", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radial-label.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radial-label.tsx")), source: "__registry__/new-york/block/chart-radial-label.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-shape": { name: "chart-radial-shape", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radial-shape.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radial-shape.tsx")), source: "__registry__/new-york/block/chart-radial-shape.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-simple": { name: "chart-radial-simple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radial-simple.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radial-simple.tsx")), source: "__registry__/new-york/block/chart-radial-simple.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-stacked": { name: "chart-radial-stacked", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radial-stacked.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radial-stacked.tsx")), source: "__registry__/new-york/block/chart-radial-stacked.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-text": { name: "chart-radial-text", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-radial-text.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-radial-text.tsx")), source: "__registry__/new-york/block/chart-radial-text.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-tooltip-default": { name: "chart-tooltip-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-default.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-default.tsx")), source: "__registry__/new-york/block/chart-tooltip-default.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-indicator-line": { name: "chart-tooltip-indicator-line", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-indicator-line.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-indicator-line.tsx")), source: "__registry__/new-york/block/chart-tooltip-indicator-line.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-indicator-none": { name: "chart-tooltip-indicator-none", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-indicator-none.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-indicator-none.tsx")), source: "__registry__/new-york/block/chart-tooltip-indicator-none.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-label-none": { name: "chart-tooltip-label-none", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-label-none.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-label-none.tsx")), source: "__registry__/new-york/block/chart-tooltip-label-none.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-label-custom": { name: "chart-tooltip-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-label-custom.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-label-custom.tsx")), source: "__registry__/new-york/block/chart-tooltip-label-custom.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-label-formatter": { name: "chart-tooltip-label-formatter", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-label-formatter.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-label-formatter.tsx")), source: "__registry__/new-york/block/chart-tooltip-label-formatter.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-formatter": { name: "chart-tooltip-formatter", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-formatter.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-formatter.tsx")), source: "__registry__/new-york/block/chart-tooltip-formatter.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-icons": { name: "chart-tooltip-icons", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-icons.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-icons.tsx")), source: "__registry__/new-york/block/chart-tooltip-icons.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-advanced": { name: "chart-tooltip-advanced", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/new-york/block/chart-tooltip-advanced.tsx"], component: React.lazy(() => import("@/registry/new-york/block/chart-tooltip-advanced.tsx")), source: "__registry__/new-york/block/chart-tooltip-advanced.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "utils": { name: "utils", type: "registry:lib", registryDependencies: undefined, files: ["registry/new-york/lib/utils.ts"], component: React.lazy(() => import("@/registry/new-york/lib/utils.ts")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "use-mobile": { name: "use-mobile", type: "registry:hook", registryDependencies: undefined, files: ["registry/new-york/hooks/use-mobile.tsx"], component: React.lazy(() => import("@/registry/new-york/hooks/use-mobile.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "use-toast": { name: "use-toast", type: "registry:hook", registryDependencies: undefined, files: ["registry/new-york/hooks/use-toast.ts"], component: React.lazy(() => import("@/registry/new-york/hooks/use-toast.ts")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, }, "default": { "accordion": { name: "accordion", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/accordion.tsx"], component: React.lazy(() => import("@/registry/default/ui/accordion.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert": { name: "alert", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/alert.tsx"], component: React.lazy(() => import("@/registry/default/ui/alert.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert-dialog": { name: "alert-dialog", type: "registry:ui", registryDependencies: ["button"], files: ["registry/default/ui/alert-dialog.tsx"], component: React.lazy(() => import("@/registry/default/ui/alert-dialog.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "aspect-ratio": { name: "aspect-ratio", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/aspect-ratio.tsx"], component: React.lazy(() => import("@/registry/default/ui/aspect-ratio.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "avatar": { name: "avatar", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/avatar.tsx"], component: React.lazy(() => import("@/registry/default/ui/avatar.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge": { name: "badge", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/badge.tsx"], component: React.lazy(() => import("@/registry/default/ui/badge.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb": { name: "breadcrumb", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/breadcrumb.tsx"], component: React.lazy(() => import("@/registry/default/ui/breadcrumb.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button": { name: "button", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/button.tsx"], component: React.lazy(() => import("@/registry/default/ui/button.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "calendar": { name: "calendar", type: "registry:ui", registryDependencies: ["button"], files: ["registry/default/ui/calendar.tsx"], component: React.lazy(() => import("@/registry/default/ui/calendar.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "card": { name: "card", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/card.tsx"], component: React.lazy(() => import("@/registry/default/ui/card.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel": { name: "carousel", type: "registry:ui", registryDependencies: ["button"], files: ["registry/default/ui/carousel.tsx"], component: React.lazy(() => import("@/registry/default/ui/carousel.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart": { name: "chart", type: "registry:ui", registryDependencies: ["card"], files: ["registry/default/ui/chart.tsx"], component: React.lazy(() => import("@/registry/default/ui/chart.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox": { name: "checkbox", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/checkbox.tsx"], component: React.lazy(() => import("@/registry/default/ui/checkbox.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "collapsible": { name: "collapsible", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/collapsible.tsx"], component: React.lazy(() => import("@/registry/default/ui/collapsible.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "command": { name: "command", type: "registry:ui", registryDependencies: ["dialog"], files: ["registry/default/ui/command.tsx"], component: React.lazy(() => import("@/registry/default/ui/command.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "context-menu": { name: "context-menu", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/context-menu.tsx"], component: React.lazy(() => import("@/registry/default/ui/context-menu.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dialog": { name: "dialog", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/dialog.tsx"], component: React.lazy(() => import("@/registry/default/ui/dialog.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "drawer": { name: "drawer", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/drawer.tsx"], component: React.lazy(() => import("@/registry/default/ui/drawer.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dropdown-menu": { name: "dropdown-menu", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/dropdown-menu.tsx"], component: React.lazy(() => import("@/registry/default/ui/dropdown-menu.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "form": { name: "form", type: "registry:ui", registryDependencies: ["button","label"], files: ["registry/default/ui/form.tsx"], component: React.lazy(() => import("@/registry/default/ui/form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "hover-card": { name: "hover-card", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/hover-card.tsx"], component: React.lazy(() => import("@/registry/default/ui/hover-card.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input": { name: "input", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/input.tsx"], component: React.lazy(() => import("@/registry/default/ui/input.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp": { name: "input-otp", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/input-otp.tsx"], component: React.lazy(() => import("@/registry/default/ui/input-otp.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "label": { name: "label", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/label.tsx"], component: React.lazy(() => import("@/registry/default/ui/label.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "menubar": { name: "menubar", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/menubar.tsx"], component: React.lazy(() => import("@/registry/default/ui/menubar.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "navigation-menu": { name: "navigation-menu", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/navigation-menu.tsx"], component: React.lazy(() => import("@/registry/default/ui/navigation-menu.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "pagination": { name: "pagination", type: "registry:ui", registryDependencies: ["button"], files: ["registry/default/ui/pagination.tsx"], component: React.lazy(() => import("@/registry/default/ui/pagination.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "popover": { name: "popover", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/popover.tsx"], component: React.lazy(() => import("@/registry/default/ui/popover.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "progress": { name: "progress", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/progress.tsx"], component: React.lazy(() => import("@/registry/default/ui/progress.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "radio-group": { name: "radio-group", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/radio-group.tsx"], component: React.lazy(() => import("@/registry/default/ui/radio-group.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable": { name: "resizable", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/resizable.tsx"], component: React.lazy(() => import("@/registry/default/ui/resizable.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "scroll-area": { name: "scroll-area", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/scroll-area.tsx"], component: React.lazy(() => import("@/registry/default/ui/scroll-area.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "select": { name: "select", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/select.tsx"], component: React.lazy(() => import("@/registry/default/ui/select.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "separator": { name: "separator", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/separator.tsx"], component: React.lazy(() => import("@/registry/default/ui/separator.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sheet": { name: "sheet", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/sheet.tsx"], component: React.lazy(() => import("@/registry/default/ui/sheet.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "skeleton": { name: "skeleton", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/skeleton.tsx"], component: React.lazy(() => import("@/registry/default/ui/skeleton.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "slider": { name: "slider", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/slider.tsx"], component: React.lazy(() => import("@/registry/default/ui/slider.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sonner": { name: "sonner", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/sonner.tsx"], component: React.lazy(() => import("@/registry/default/ui/sonner.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "switch": { name: "switch", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/switch.tsx"], component: React.lazy(() => import("@/registry/default/ui/switch.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "table": { name: "table", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/table.tsx"], component: React.lazy(() => import("@/registry/default/ui/table.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "tabs": { name: "tabs", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/tabs.tsx"], component: React.lazy(() => import("@/registry/default/ui/tabs.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea": { name: "textarea", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/textarea.tsx"], component: React.lazy(() => import("@/registry/default/ui/textarea.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast": { name: "toast", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/toast.tsx","registry/default/hooks/use-toast.ts","registry/default/ui/toaster.tsx"], component: React.lazy(() => import("@/registry/default/ui/toast.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle": { name: "toggle", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/toggle.tsx"], component: React.lazy(() => import("@/registry/default/ui/toggle.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group": { name: "toggle-group", type: "registry:ui", registryDependencies: ["toggle"], files: ["registry/default/ui/toggle-group.tsx"], component: React.lazy(() => import("@/registry/default/ui/toggle-group.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "tooltip": { name: "tooltip", type: "registry:ui", registryDependencies: undefined, files: ["registry/default/ui/tooltip.tsx"], component: React.lazy(() => import("@/registry/default/ui/tooltip.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "accordion-demo": { name: "accordion-demo", type: "registry:example", registryDependencies: ["accordion"], files: ["registry/default/example/accordion-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/accordion-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert-demo": { name: "alert-demo", type: "registry:example", registryDependencies: ["alert"], files: ["registry/default/example/alert-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/alert-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert-destructive": { name: "alert-destructive", type: "registry:example", registryDependencies: ["alert"], files: ["registry/default/example/alert-destructive.tsx"], component: React.lazy(() => import("@/registry/default/example/alert-destructive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "alert-dialog-demo": { name: "alert-dialog-demo", type: "registry:example", registryDependencies: ["alert-dialog","button"], files: ["registry/default/example/alert-dialog-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/alert-dialog-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "aspect-ratio-demo": { name: "aspect-ratio-demo", type: "registry:example", registryDependencies: ["aspect-ratio"], files: ["registry/default/example/aspect-ratio-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/aspect-ratio-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "avatar-demo": { name: "avatar-demo", type: "registry:example", registryDependencies: ["avatar"], files: ["registry/default/example/avatar-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/avatar-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge-demo": { name: "badge-demo", type: "registry:example", registryDependencies: ["badge"], files: ["registry/default/example/badge-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/badge-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge-destructive": { name: "badge-destructive", type: "registry:example", registryDependencies: ["badge"], files: ["registry/default/example/badge-destructive.tsx"], component: React.lazy(() => import("@/registry/default/example/badge-destructive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge-outline": { name: "badge-outline", type: "registry:example", registryDependencies: ["badge"], files: ["registry/default/example/badge-outline.tsx"], component: React.lazy(() => import("@/registry/default/example/badge-outline.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "badge-secondary": { name: "badge-secondary", type: "registry:example", registryDependencies: ["badge"], files: ["registry/default/example/badge-secondary.tsx"], component: React.lazy(() => import("@/registry/default/example/badge-secondary.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-demo": { name: "breadcrumb-demo", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/default/example/breadcrumb-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/breadcrumb-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-separator": { name: "breadcrumb-separator", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/default/example/breadcrumb-separator.tsx"], component: React.lazy(() => import("@/registry/default/example/breadcrumb-separator.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-dropdown": { name: "breadcrumb-dropdown", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/default/example/breadcrumb-dropdown.tsx"], component: React.lazy(() => import("@/registry/default/example/breadcrumb-dropdown.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-ellipsis": { name: "breadcrumb-ellipsis", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/default/example/breadcrumb-ellipsis.tsx"], component: React.lazy(() => import("@/registry/default/example/breadcrumb-ellipsis.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-link": { name: "breadcrumb-link", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/default/example/breadcrumb-link.tsx"], component: React.lazy(() => import("@/registry/default/example/breadcrumb-link.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "breadcrumb-responsive": { name: "breadcrumb-responsive", type: "registry:example", registryDependencies: ["breadcrumb"], files: ["registry/default/example/breadcrumb-responsive.tsx"], component: React.lazy(() => import("@/registry/default/example/breadcrumb-responsive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-demo": { name: "button-demo", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/button-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-secondary": { name: "button-secondary", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-secondary.tsx"], component: React.lazy(() => import("@/registry/default/example/button-secondary.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-destructive": { name: "button-destructive", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-destructive.tsx"], component: React.lazy(() => import("@/registry/default/example/button-destructive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-outline": { name: "button-outline", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-outline.tsx"], component: React.lazy(() => import("@/registry/default/example/button-outline.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-ghost": { name: "button-ghost", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-ghost.tsx"], component: React.lazy(() => import("@/registry/default/example/button-ghost.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-link": { name: "button-link", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-link.tsx"], component: React.lazy(() => import("@/registry/default/example/button-link.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-with-icon": { name: "button-with-icon", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-with-icon.tsx"], component: React.lazy(() => import("@/registry/default/example/button-with-icon.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-loading": { name: "button-loading", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-loading.tsx"], component: React.lazy(() => import("@/registry/default/example/button-loading.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-icon": { name: "button-icon", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-icon.tsx"], component: React.lazy(() => import("@/registry/default/example/button-icon.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "button-as-child": { name: "button-as-child", type: "registry:example", registryDependencies: ["button"], files: ["registry/default/example/button-as-child.tsx"], component: React.lazy(() => import("@/registry/default/example/button-as-child.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "calendar-demo": { name: "calendar-demo", type: "registry:example", registryDependencies: ["calendar"], files: ["registry/default/example/calendar-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/calendar-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "calendar-form": { name: "calendar-form", type: "registry:example", registryDependencies: ["calendar","form","popover"], files: ["registry/default/example/calendar-form.tsx"], component: React.lazy(() => import("@/registry/default/example/calendar-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "card-demo": { name: "card-demo", type: "registry:example", registryDependencies: ["card","button","switch"], files: ["registry/default/example/card-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/card-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "card-with-form": { name: "card-with-form", type: "registry:example", registryDependencies: ["button","card","input","label","select"], files: ["registry/default/example/card-with-form.tsx"], component: React.lazy(() => import("@/registry/default/example/card-with-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-demo": { name: "carousel-demo", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/default/example/carousel-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/carousel-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-size": { name: "carousel-size", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/default/example/carousel-size.tsx"], component: React.lazy(() => import("@/registry/default/example/carousel-size.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-spacing": { name: "carousel-spacing", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/default/example/carousel-spacing.tsx"], component: React.lazy(() => import("@/registry/default/example/carousel-spacing.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-orientation": { name: "carousel-orientation", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/default/example/carousel-orientation.tsx"], component: React.lazy(() => import("@/registry/default/example/carousel-orientation.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-api": { name: "carousel-api", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/default/example/carousel-api.tsx"], component: React.lazy(() => import("@/registry/default/example/carousel-api.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "carousel-plugin": { name: "carousel-plugin", type: "registry:example", registryDependencies: ["carousel"], files: ["registry/default/example/carousel-plugin.tsx"], component: React.lazy(() => import("@/registry/default/example/carousel-plugin.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-demo": { name: "checkbox-demo", type: "registry:example", registryDependencies: ["checkbox"], files: ["registry/default/example/checkbox-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/checkbox-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-disabled": { name: "checkbox-disabled", type: "registry:example", registryDependencies: ["checkbox"], files: ["registry/default/example/checkbox-disabled.tsx"], component: React.lazy(() => import("@/registry/default/example/checkbox-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-form-multiple": { name: "checkbox-form-multiple", type: "registry:example", registryDependencies: ["checkbox","form"], files: ["registry/default/example/checkbox-form-multiple.tsx"], component: React.lazy(() => import("@/registry/default/example/checkbox-form-multiple.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-form-single": { name: "checkbox-form-single", type: "registry:example", registryDependencies: ["checkbox","form"], files: ["registry/default/example/checkbox-form-single.tsx"], component: React.lazy(() => import("@/registry/default/example/checkbox-form-single.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "checkbox-with-text": { name: "checkbox-with-text", type: "registry:example", registryDependencies: ["checkbox"], files: ["registry/default/example/checkbox-with-text.tsx"], component: React.lazy(() => import("@/registry/default/example/checkbox-with-text.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "collapsible-demo": { name: "collapsible-demo", type: "registry:example", registryDependencies: ["collapsible"], files: ["registry/default/example/collapsible-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/collapsible-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-demo": { name: "combobox-demo", type: "registry:example", registryDependencies: ["command"], files: ["registry/default/example/combobox-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/combobox-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-dropdown-menu": { name: "combobox-dropdown-menu", type: "registry:example", registryDependencies: ["command","dropdown-menu","button"], files: ["registry/default/example/combobox-dropdown-menu.tsx"], component: React.lazy(() => import("@/registry/default/example/combobox-dropdown-menu.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-form": { name: "combobox-form", type: "registry:example", registryDependencies: ["command","form"], files: ["registry/default/example/combobox-form.tsx"], component: React.lazy(() => import("@/registry/default/example/combobox-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-popover": { name: "combobox-popover", type: "registry:example", registryDependencies: ["combobox","popover"], files: ["registry/default/example/combobox-popover.tsx"], component: React.lazy(() => import("@/registry/default/example/combobox-popover.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "combobox-responsive": { name: "combobox-responsive", type: "registry:example", registryDependencies: ["combobox","popover","drawer"], files: ["registry/default/example/combobox-responsive.tsx"], component: React.lazy(() => import("@/registry/default/example/combobox-responsive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "command-demo": { name: "command-demo", type: "registry:example", registryDependencies: ["command"], files: ["registry/default/example/command-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/command-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "command-dialog": { name: "command-dialog", type: "registry:example", registryDependencies: ["command","dialog"], files: ["registry/default/example/command-dialog.tsx"], component: React.lazy(() => import("@/registry/default/example/command-dialog.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "context-menu-demo": { name: "context-menu-demo", type: "registry:example", registryDependencies: ["context-menu"], files: ["registry/default/example/context-menu-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/context-menu-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "data-table-demo": { name: "data-table-demo", type: "registry:example", registryDependencies: ["data-table"], files: ["registry/default/example/data-table-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/data-table-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "date-picker-demo": { name: "date-picker-demo", type: "registry:example", registryDependencies: ["button","calendar","popover"], files: ["registry/default/example/date-picker-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/date-picker-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "date-picker-form": { name: "date-picker-form", type: "registry:example", registryDependencies: ["button","calendar","form","popover"], files: ["registry/default/example/date-picker-form.tsx"], component: React.lazy(() => import("@/registry/default/example/date-picker-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "date-picker-with-presets": { name: "date-picker-with-presets", type: "registry:example", registryDependencies: ["button","calendar","popover","select"], files: ["registry/default/example/date-picker-with-presets.tsx"], component: React.lazy(() => import("@/registry/default/example/date-picker-with-presets.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "date-picker-with-range": { name: "date-picker-with-range", type: "registry:example", registryDependencies: ["button","calendar","popover"], files: ["registry/default/example/date-picker-with-range.tsx"], component: React.lazy(() => import("@/registry/default/example/date-picker-with-range.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dialog-demo": { name: "dialog-demo", type: "registry:example", registryDependencies: ["dialog"], files: ["registry/default/example/dialog-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/dialog-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dialog-close-button": { name: "dialog-close-button", type: "registry:example", registryDependencies: ["dialog","button"], files: ["registry/default/example/dialog-close-button.tsx"], component: React.lazy(() => import("@/registry/default/example/dialog-close-button.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "drawer-demo": { name: "drawer-demo", type: "registry:example", registryDependencies: ["drawer"], files: ["registry/default/example/drawer-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/drawer-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "drawer-dialog": { name: "drawer-dialog", type: "registry:example", registryDependencies: ["drawer","dialog"], files: ["registry/default/example/drawer-dialog.tsx"], component: React.lazy(() => import("@/registry/default/example/drawer-dialog.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dropdown-menu-demo": { name: "dropdown-menu-demo", type: "registry:example", registryDependencies: ["dropdown-menu"], files: ["registry/default/example/dropdown-menu-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/dropdown-menu-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dropdown-menu-checkboxes": { name: "dropdown-menu-checkboxes", type: "registry:example", registryDependencies: ["dropdown-menu","checkbox"], files: ["registry/default/example/dropdown-menu-checkboxes.tsx"], component: React.lazy(() => import("@/registry/default/example/dropdown-menu-checkboxes.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "dropdown-menu-radio-group": { name: "dropdown-menu-radio-group", type: "registry:example", registryDependencies: ["dropdown-menu","radio-group"], files: ["registry/default/example/dropdown-menu-radio-group.tsx"], component: React.lazy(() => import("@/registry/default/example/dropdown-menu-radio-group.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "hover-card-demo": { name: "hover-card-demo", type: "registry:example", registryDependencies: ["hover-card"], files: ["registry/default/example/hover-card-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/hover-card-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-demo": { name: "input-demo", type: "registry:example", registryDependencies: ["input"], files: ["registry/default/example/input-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/input-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-disabled": { name: "input-disabled", type: "registry:example", registryDependencies: ["input"], files: ["registry/default/example/input-disabled.tsx"], component: React.lazy(() => import("@/registry/default/example/input-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-file": { name: "input-file", type: "registry:example", registryDependencies: ["input"], files: ["registry/default/example/input-file.tsx"], component: React.lazy(() => import("@/registry/default/example/input-file.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-form": { name: "input-form", type: "registry:example", registryDependencies: ["input","button","form"], files: ["registry/default/example/input-form.tsx"], component: React.lazy(() => import("@/registry/default/example/input-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-with-button": { name: "input-with-button", type: "registry:example", registryDependencies: ["input","button"], files: ["registry/default/example/input-with-button.tsx"], component: React.lazy(() => import("@/registry/default/example/input-with-button.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-with-label": { name: "input-with-label", type: "registry:example", registryDependencies: ["input","button","label"], files: ["registry/default/example/input-with-label.tsx"], component: React.lazy(() => import("@/registry/default/example/input-with-label.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-with-text": { name: "input-with-text", type: "registry:example", registryDependencies: ["input","button","label"], files: ["registry/default/example/input-with-text.tsx"], component: React.lazy(() => import("@/registry/default/example/input-with-text.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-demo": { name: "input-otp-demo", type: "registry:example", registryDependencies: ["input-otp"], files: ["registry/default/example/input-otp-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/input-otp-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-pattern": { name: "input-otp-pattern", type: "registry:example", registryDependencies: ["input-otp"], files: ["registry/default/example/input-otp-pattern.tsx"], component: React.lazy(() => import("@/registry/default/example/input-otp-pattern.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-separator": { name: "input-otp-separator", type: "registry:example", registryDependencies: ["input-otp"], files: ["registry/default/example/input-otp-separator.tsx"], component: React.lazy(() => import("@/registry/default/example/input-otp-separator.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-controlled": { name: "input-otp-controlled", type: "registry:example", registryDependencies: ["input-otp"], files: ["registry/default/example/input-otp-controlled.tsx"], component: React.lazy(() => import("@/registry/default/example/input-otp-controlled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "input-otp-form": { name: "input-otp-form", type: "registry:example", registryDependencies: ["input-otp","form"], files: ["registry/default/example/input-otp-form.tsx"], component: React.lazy(() => import("@/registry/default/example/input-otp-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "label-demo": { name: "label-demo", type: "registry:example", registryDependencies: ["label"], files: ["registry/default/example/label-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/label-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "menubar-demo": { name: "menubar-demo", type: "registry:example", registryDependencies: ["menubar"], files: ["registry/default/example/menubar-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/menubar-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "navigation-menu-demo": { name: "navigation-menu-demo", type: "registry:example", registryDependencies: ["navigation-menu"], files: ["registry/default/example/navigation-menu-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/navigation-menu-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "pagination-demo": { name: "pagination-demo", type: "registry:example", registryDependencies: ["pagination"], files: ["registry/default/example/pagination-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/pagination-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "popover-demo": { name: "popover-demo", type: "registry:example", registryDependencies: ["popover"], files: ["registry/default/example/popover-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/popover-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "progress-demo": { name: "progress-demo", type: "registry:example", registryDependencies: ["progress"], files: ["registry/default/example/progress-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/progress-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "radio-group-demo": { name: "radio-group-demo", type: "registry:example", registryDependencies: ["radio-group"], files: ["registry/default/example/radio-group-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/radio-group-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "radio-group-form": { name: "radio-group-form", type: "registry:example", registryDependencies: ["radio-group","form"], files: ["registry/default/example/radio-group-form.tsx"], component: React.lazy(() => import("@/registry/default/example/radio-group-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable-demo": { name: "resizable-demo", type: "registry:example", registryDependencies: ["resizable"], files: ["registry/default/example/resizable-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/resizable-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable-demo-with-handle": { name: "resizable-demo-with-handle", type: "registry:example", registryDependencies: ["resizable"], files: ["registry/default/example/resizable-demo-with-handle.tsx"], component: React.lazy(() => import("@/registry/default/example/resizable-demo-with-handle.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable-vertical": { name: "resizable-vertical", type: "registry:example", registryDependencies: ["resizable"], files: ["registry/default/example/resizable-vertical.tsx"], component: React.lazy(() => import("@/registry/default/example/resizable-vertical.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "resizable-handle": { name: "resizable-handle", type: "registry:example", registryDependencies: ["resizable"], files: ["registry/default/example/resizable-handle.tsx"], component: React.lazy(() => import("@/registry/default/example/resizable-handle.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "scroll-area-demo": { name: "scroll-area-demo", type: "registry:example", registryDependencies: ["scroll-area"], files: ["registry/default/example/scroll-area-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/scroll-area-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "scroll-area-horizontal-demo": { name: "scroll-area-horizontal-demo", type: "registry:example", registryDependencies: ["scroll-area"], files: ["registry/default/example/scroll-area-horizontal-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/scroll-area-horizontal-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "select-demo": { name: "select-demo", type: "registry:example", registryDependencies: ["select"], files: ["registry/default/example/select-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/select-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "select-scrollable": { name: "select-scrollable", type: "registry:example", registryDependencies: ["select"], files: ["registry/default/example/select-scrollable.tsx"], component: React.lazy(() => import("@/registry/default/example/select-scrollable.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "select-form": { name: "select-form", type: "registry:example", registryDependencies: ["select"], files: ["registry/default/example/select-form.tsx"], component: React.lazy(() => import("@/registry/default/example/select-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "separator-demo": { name: "separator-demo", type: "registry:example", registryDependencies: ["separator"], files: ["registry/default/example/separator-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/separator-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sheet-demo": { name: "sheet-demo", type: "registry:example", registryDependencies: ["sheet"], files: ["registry/default/example/sheet-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/sheet-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sheet-side": { name: "sheet-side", type: "registry:example", registryDependencies: ["sheet"], files: ["registry/default/example/sheet-side.tsx"], component: React.lazy(() => import("@/registry/default/example/sheet-side.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "skeleton-demo": { name: "skeleton-demo", type: "registry:example", registryDependencies: ["skeleton"], files: ["registry/default/example/skeleton-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/skeleton-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "skeleton-card": { name: "skeleton-card", type: "registry:example", registryDependencies: ["skeleton"], files: ["registry/default/example/skeleton-card.tsx"], component: React.lazy(() => import("@/registry/default/example/skeleton-card.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "slider-demo": { name: "slider-demo", type: "registry:example", registryDependencies: ["slider"], files: ["registry/default/example/slider-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/slider-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sonner-demo": { name: "sonner-demo", type: "registry:example", registryDependencies: ["sonner"], files: ["registry/default/example/sonner-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/sonner-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "switch-demo": { name: "switch-demo", type: "registry:example", registryDependencies: ["switch"], files: ["registry/default/example/switch-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/switch-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "switch-form": { name: "switch-form", type: "registry:example", registryDependencies: ["switch","form"], files: ["registry/default/example/switch-form.tsx"], component: React.lazy(() => import("@/registry/default/example/switch-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "table-demo": { name: "table-demo", type: "registry:example", registryDependencies: ["table"], files: ["registry/default/example/table-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/table-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "tabs-demo": { name: "tabs-demo", type: "registry:example", registryDependencies: ["tabs"], files: ["registry/default/example/tabs-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/tabs-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-demo": { name: "textarea-demo", type: "registry:example", registryDependencies: ["textarea"], files: ["registry/default/example/textarea-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/textarea-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-disabled": { name: "textarea-disabled", type: "registry:example", registryDependencies: ["textarea"], files: ["registry/default/example/textarea-disabled.tsx"], component: React.lazy(() => import("@/registry/default/example/textarea-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-form": { name: "textarea-form", type: "registry:example", registryDependencies: ["textarea","form"], files: ["registry/default/example/textarea-form.tsx"], component: React.lazy(() => import("@/registry/default/example/textarea-form.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-with-button": { name: "textarea-with-button", type: "registry:example", registryDependencies: ["textarea","button"], files: ["registry/default/example/textarea-with-button.tsx"], component: React.lazy(() => import("@/registry/default/example/textarea-with-button.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-with-label": { name: "textarea-with-label", type: "registry:example", registryDependencies: ["textarea","label"], files: ["registry/default/example/textarea-with-label.tsx"], component: React.lazy(() => import("@/registry/default/example/textarea-with-label.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "textarea-with-text": { name: "textarea-with-text", type: "registry:example", registryDependencies: ["textarea","label"], files: ["registry/default/example/textarea-with-text.tsx"], component: React.lazy(() => import("@/registry/default/example/textarea-with-text.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-demo": { name: "toast-demo", type: "registry:example", registryDependencies: ["toast"], files: ["registry/default/example/toast-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/toast-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-destructive": { name: "toast-destructive", type: "registry:example", registryDependencies: ["toast"], files: ["registry/default/example/toast-destructive.tsx"], component: React.lazy(() => import("@/registry/default/example/toast-destructive.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-simple": { name: "toast-simple", type: "registry:example", registryDependencies: ["toast"], files: ["registry/default/example/toast-simple.tsx"], component: React.lazy(() => import("@/registry/default/example/toast-simple.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-with-action": { name: "toast-with-action", type: "registry:example", registryDependencies: ["toast"], files: ["registry/default/example/toast-with-action.tsx"], component: React.lazy(() => import("@/registry/default/example/toast-with-action.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toast-with-title": { name: "toast-with-title", type: "registry:example", registryDependencies: ["toast"], files: ["registry/default/example/toast-with-title.tsx"], component: React.lazy(() => import("@/registry/default/example/toast-with-title.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-demo": { name: "toggle-group-demo", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/default/example/toggle-group-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-group-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-disabled": { name: "toggle-group-disabled", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/default/example/toggle-group-disabled.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-group-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-lg": { name: "toggle-group-lg", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/default/example/toggle-group-lg.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-group-lg.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-outline": { name: "toggle-group-outline", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/default/example/toggle-group-outline.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-group-outline.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-sm": { name: "toggle-group-sm", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/default/example/toggle-group-sm.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-group-sm.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-group-single": { name: "toggle-group-single", type: "registry:example", registryDependencies: ["toggle-group"], files: ["registry/default/example/toggle-group-single.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-group-single.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-demo": { name: "toggle-demo", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/default/example/toggle-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-disabled": { name: "toggle-disabled", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/default/example/toggle-disabled.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-disabled.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-lg": { name: "toggle-lg", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/default/example/toggle-lg.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-lg.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-outline": { name: "toggle-outline", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/default/example/toggle-outline.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-outline.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-sm": { name: "toggle-sm", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/default/example/toggle-sm.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-sm.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "toggle-with-text": { name: "toggle-with-text", type: "registry:example", registryDependencies: ["toggle"], files: ["registry/default/example/toggle-with-text.tsx"], component: React.lazy(() => import("@/registry/default/example/toggle-with-text.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "tooltip-demo": { name: "tooltip-demo", type: "registry:example", registryDependencies: ["tooltip"], files: ["registry/default/example/tooltip-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/tooltip-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-blockquote": { name: "typography-blockquote", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-blockquote.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-blockquote.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-demo": { name: "typography-demo", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-h1": { name: "typography-h1", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-h1.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-h1.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-h2": { name: "typography-h2", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-h2.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-h2.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-h3": { name: "typography-h3", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-h3.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-h3.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-h4": { name: "typography-h4", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-h4.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-h4.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-inline-code": { name: "typography-inline-code", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-inline-code.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-inline-code.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-large": { name: "typography-large", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-large.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-large.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-lead": { name: "typography-lead", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-lead.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-lead.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-list": { name: "typography-list", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-list.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-list.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-muted": { name: "typography-muted", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-muted.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-muted.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-p": { name: "typography-p", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-p.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-p.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-small": { name: "typography-small", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-small.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-small.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "typography-table": { name: "typography-table", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/typography-table.tsx"], component: React.lazy(() => import("@/registry/default/example/typography-table.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "mode-toggle": { name: "mode-toggle", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/mode-toggle.tsx"], component: React.lazy(() => import("@/registry/default/example/mode-toggle.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo": { name: "chart-bar-demo", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/chart-bar-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/chart-bar-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo-grid": { name: "chart-bar-demo-grid", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/chart-bar-demo-grid.tsx"], component: React.lazy(() => import("@/registry/default/example/chart-bar-demo-grid.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo-axis": { name: "chart-bar-demo-axis", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/chart-bar-demo-axis.tsx"], component: React.lazy(() => import("@/registry/default/example/chart-bar-demo-axis.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo-tooltip": { name: "chart-bar-demo-tooltip", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/chart-bar-demo-tooltip.tsx"], component: React.lazy(() => import("@/registry/default/example/chart-bar-demo-tooltip.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-bar-demo-legend": { name: "chart-bar-demo-legend", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/chart-bar-demo-legend.tsx"], component: React.lazy(() => import("@/registry/default/example/chart-bar-demo-legend.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "chart-tooltip-demo": { name: "chart-tooltip-demo", type: "registry:example", registryDependencies: undefined, files: ["registry/default/example/chart-tooltip-demo.tsx"], component: React.lazy(() => import("@/registry/default/example/chart-tooltip-demo.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "sidebar-01": { name: "sidebar-01", type: "registry:block", registryDependencies: ["avatar","button","collapsible","dropdown-menu","drawer","separator","input","popover","sheet","progress","card","use-mobile"], files: ["registry/default/block/sidebar-01/page.tsx","registry/default/block/sidebar-01/components/app-sidebar.tsx","registry/default/block/sidebar-01/components/nav-main.tsx","registry/default/block/sidebar-01/components/nav-projects.tsx","registry/default/block/sidebar-01/components/nav-secondary.tsx","registry/default/block/sidebar-01/components/nav-user.tsx","registry/default/block/sidebar-01/components/storage-card.tsx","registry/default/block/sidebar-01/components/team-switcher.tsx","registry/default/block/sidebar-01/hooks/use-sidebar.tsx","registry/default/block/sidebar-01/ui/sidebar.tsx"], component: React.lazy(() => import("@/registry/default/block/sidebar-01/page.tsx")), source: "__registry__/default/block/sidebar-01/page.tsx", category: "Application", subcategory: "Dashboard", chunks: [] }, "login-01": { name: "login-01", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/default/block/login-01/page.tsx","registry/default/block/login-01/components/login-form.tsx"], component: React.lazy(() => import("@/registry/default/block/login-01/page.tsx")), source: "__registry__/default/block/login-01/page.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "charts-01": { name: "charts-01", type: "registry:block", registryDependencies: ["chart"], files: ["registry/default/block/charts-01.tsx"], component: React.lazy(() => import("@/registry/default/block/charts-01.tsx")), source: "__registry__/default/block/charts-01.tsx", category: "Application", subcategory: "Charts", chunks: [{ name: "charts-01-chunk-0", description: "A bar chart showing the number of steps you have walked in the past 7 days.", component: React.lazy(() => import("@/registry/default/block/charts-01-chunk-0")), file: "registry/default/block/charts-01-chunk-0.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-1", description: "A line chart showing the resting heart rate for the past 7 days.", component: React.lazy(() => import("@/registry/default/block/charts-01-chunk-1")), file: "registry/default/block/charts-01-chunk-1.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-2", description: "Two horizontal bar charts showing total steps taken during the current year and last year.", component: React.lazy(() => import("@/registry/default/block/charts-01-chunk-2")), file: "registry/default/block/charts-01-chunk-2.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-3", description: "A bar chart showing the walking and running distance for the past 7 days.", component: React.lazy(() => import("@/registry/default/block/charts-01-chunk-3")), file: "registry/default/block/charts-01-chunk-3.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-4", description: "A bar chart showing move, exercise, and stand progress.", component: React.lazy(() => import("@/registry/default/block/charts-01-chunk-4")), file: "registry/default/block/charts-01-chunk-4.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-5", description: "A radial bar chart showing the percentage of time spent moving, exercising, and standing.", component: React.lazy(() => import("@/registry/default/block/charts-01-chunk-5")), file: "registry/default/block/charts-01-chunk-5.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-6", description: "A bar chart showing active energy in the past 7 days.", component: React.lazy(() => import("@/registry/default/block/charts-01-chunk-6")), file: "registry/default/block/charts-01-chunk-6.tsx", container: { className: "undefined" } },{ name: "charts-01-chunk-7", description: "An area chart showing the time spent in bed for the past 7 days.", component: React.lazy(() => import("@/registry/default/block/charts-01-chunk-7")), file: "registry/default/block/charts-01-chunk-7.tsx", container: { className: "undefined" } }] }, "dashboard-05": { name: "dashboard-05", type: "registry:block", registryDependencies: ["badge","breadcrumb","button","card","dropdown-menu","input","pagination","progress","separator","sheet","table","tabs","tooltip"], files: ["registry/default/block/dashboard-05.tsx"], component: React.lazy(() => import("@/registry/default/block/dashboard-05.tsx")), source: "__registry__/default/block/dashboard-05.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-05-chunk-0", description: "A card for an orders dashboard with a description and a button to create a new order.", component: React.lazy(() => import("@/registry/default/block/dashboard-05-chunk-0")), file: "registry/default/block/dashboard-05-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-05-chunk-1", description: "A stats card showing this week's total sales in USD, the percentage difference from last week, and a progress bar.", component: React.lazy(() => import("@/registry/default/block/dashboard-05-chunk-1")), file: "registry/default/block/dashboard-05-chunk-1.tsx", container: { className: "undefined" } },{ name: "dashboard-05-chunk-2", description: "A stats card showing this month's total sales in USD, the percentage difference from last month, and a progress bar.", component: React.lazy(() => import("@/registry/default/block/dashboard-05-chunk-2")), file: "registry/default/block/dashboard-05-chunk-2.tsx", container: { className: "undefined" } },{ name: "dashboard-05-chunk-3", description: "A table of recent orders showing the following columns: Customer, Type, Status, Date, and Amount.", component: React.lazy(() => import("@/registry/default/block/dashboard-05-chunk-3")), file: "registry/default/block/dashboard-05-chunk-3.tsx", container: { className: "undefined" } },{ name: "dashboard-05-chunk-4", description: "An order details card with order details, shipping information, customer information and payment information.", component: React.lazy(() => import("@/registry/default/block/dashboard-05-chunk-4")), file: "registry/default/block/dashboard-05-chunk-4.tsx", container: { className: "undefined" } }] }, "dashboard-06": { name: "dashboard-06", type: "registry:block", registryDependencies: ["badge","breadcrumb","button","card","dropdown-menu","input","sheet","table","tabs","tooltip"], files: ["registry/default/block/dashboard-06.tsx"], component: React.lazy(() => import("@/registry/default/block/dashboard-06.tsx")), source: "__registry__/default/block/dashboard-06.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-06-chunk-0", description: "A list of products in a table with actions. Each row has an image, name, status, price, total sales, created at and actions.", component: React.lazy(() => import("@/registry/default/block/dashboard-06-chunk-0")), file: "registry/default/block/dashboard-06-chunk-0.tsx", container: { className: "undefined" } }] }, "dashboard-07": { name: "dashboard-07", type: "registry:block", registryDependencies: ["badge","breadcrumb","button","card","dropdown-menu","input","pagination","progress","separator","sheet","table","tabs","tooltip"], files: ["registry/default/block/dashboard-07.tsx"], component: React.lazy(() => import("@/registry/default/block/dashboard-07.tsx")), source: "__registry__/default/block/dashboard-07.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-07-chunk-0", description: "A card with a form to edit the product details", component: React.lazy(() => import("@/registry/default/block/dashboard-07-chunk-0")), file: "registry/default/block/dashboard-07-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-1", description: "A card with a form to edit the product stock and variants", component: React.lazy(() => import("@/registry/default/block/dashboard-07-chunk-1")), file: "registry/default/block/dashboard-07-chunk-1.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-2", description: "A card with a form to edit the product category and subcategory", component: React.lazy(() => import("@/registry/default/block/dashboard-07-chunk-2")), file: "registry/default/block/dashboard-07-chunk-2.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-3", description: "A card with a form to edit the product status", component: React.lazy(() => import("@/registry/default/block/dashboard-07-chunk-3")), file: "registry/default/block/dashboard-07-chunk-3.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-4", description: "A card with a form to upload product images", component: React.lazy(() => import("@/registry/default/block/dashboard-07-chunk-4")), file: "registry/default/block/dashboard-07-chunk-4.tsx", container: { className: "undefined" } },{ name: "dashboard-07-chunk-5", description: "A card with a call to action to archive the product", component: React.lazy(() => import("@/registry/default/block/dashboard-07-chunk-5")), file: "registry/default/block/dashboard-07-chunk-5.tsx", container: { className: "undefined" } }] }, "dashboard-04": { name: "dashboard-04", type: "registry:block", registryDependencies: ["button","card","dropdown-menu","input"], files: ["registry/default/block/dashboard-04.tsx"], component: React.lazy(() => import("@/registry/default/block/dashboard-04.tsx")), source: "__registry__/default/block/dashboard-04.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-04-chunk-0", description: "A sidebar navigation with links to general, security, integrations, support, organizations, and advanced settings.", component: React.lazy(() => import("@/registry/default/block/dashboard-04-chunk-0")), file: "registry/default/block/dashboard-04-chunk-0.tsx", container: { className: "chunk-container after:right-0" } },{ name: "dashboard-04-chunk-1", description: "A form to update the store name.", component: React.lazy(() => import("@/registry/default/block/dashboard-04-chunk-1")), file: "registry/default/block/dashboard-04-chunk-1.tsx", container: { className: "undefined" } },{ name: "dashboard-04-chunk-2", description: "A form to update the plugins directory with a checkbox to allow administrators to change the directory.", component: React.lazy(() => import("@/registry/default/block/dashboard-04-chunk-2")), file: "registry/default/block/dashboard-04-chunk-2.tsx", container: { className: "undefined" } }] }, "dashboard-03": { name: "dashboard-03", type: "registry:block", registryDependencies: ["badge","button","drawer","input","label","select","textarea","tooltip"], files: ["registry/default/block/dashboard-03.tsx"], component: React.lazy(() => import("@/registry/default/block/dashboard-03.tsx")), source: "__registry__/default/block/dashboard-03.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-03-chunk-0", description: "A settings form a configuring an AI model and messages.", component: React.lazy(() => import("@/registry/default/block/dashboard-03-chunk-0")), file: "registry/default/block/dashboard-03-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-03-chunk-1", description: "A form for sending a message to an AI chatbot. The form has a textarea and buttons to upload files and record audio.", component: React.lazy(() => import("@/registry/default/block/dashboard-03-chunk-1")), file: "registry/default/block/dashboard-03-chunk-1.tsx", container: { className: "undefined" } }] }, "dashboard-02": { name: "dashboard-02", type: "registry:block", registryDependencies: ["badge","button","card","dropdown-menu","input"], files: ["registry/default/block/dashboard-02.tsx"], component: React.lazy(() => import("@/registry/default/block/dashboard-02.tsx")), source: "__registry__/default/block/dashboard-02.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-02-chunk-0", description: "A card with a call to action", component: React.lazy(() => import("@/registry/default/block/dashboard-02-chunk-0")), file: "registry/default/block/dashboard-02-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-02-chunk-1", description: "An empty state showing no products with a heading, description and a call to action to add a product.", component: React.lazy(() => import("@/registry/default/block/dashboard-02-chunk-1")), file: "registry/default/block/dashboard-02-chunk-1.tsx", container: { className: "undefined" } }] }, "dashboard-01": { name: "dashboard-01", type: "registry:block", registryDependencies: ["button","dropdown-menu","input","sheet"], files: ["registry/default/block/dashboard-01.tsx"], component: React.lazy(() => import("@/registry/default/block/dashboard-01.tsx")), source: "__registry__/default/block/dashboard-01.tsx", category: "Application", subcategory: "Dashboard", chunks: [{ name: "dashboard-01-chunk-0", description: "A card showing the total revenue in USD and the percentage difference from last month.", component: React.lazy(() => import("@/registry/default/block/dashboard-01-chunk-0")), file: "registry/default/block/dashboard-01-chunk-0.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-1", description: "A card showing the total subscriptions and the percentage difference from last month.", component: React.lazy(() => import("@/registry/default/block/dashboard-01-chunk-1")), file: "registry/default/block/dashboard-01-chunk-1.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-2", description: "A card showing the total sales and the percentage difference from last month.", component: React.lazy(() => import("@/registry/default/block/dashboard-01-chunk-2")), file: "registry/default/block/dashboard-01-chunk-2.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-3", description: "A card showing the total active users and the percentage difference from last hour.", component: React.lazy(() => import("@/registry/default/block/dashboard-01-chunk-3")), file: "registry/default/block/dashboard-01-chunk-3.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-4", description: "A card showing a table of recent transactions with a link to view all transactions.", component: React.lazy(() => import("@/registry/default/block/dashboard-01-chunk-4")), file: "registry/default/block/dashboard-01-chunk-4.tsx", container: { className: "undefined" } },{ name: "dashboard-01-chunk-5", description: "A card showing a list of recent sales with customer names and email addresses.", component: React.lazy(() => import("@/registry/default/block/dashboard-01-chunk-5")), file: "registry/default/block/dashboard-01-chunk-5.tsx", container: { className: "undefined" } }] }, "authentication-01": { name: "authentication-01", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/default/block/authentication-01.tsx"], component: React.lazy(() => import("@/registry/default/block/authentication-01.tsx")), source: "__registry__/default/block/authentication-01.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "authentication-02": { name: "authentication-02", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/default/block/authentication-02.tsx"], component: React.lazy(() => import("@/registry/default/block/authentication-02.tsx")), source: "__registry__/default/block/authentication-02.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "authentication-03": { name: "authentication-03", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/default/block/authentication-03.tsx"], component: React.lazy(() => import("@/registry/default/block/authentication-03.tsx")), source: "__registry__/default/block/authentication-03.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "authentication-04": { name: "authentication-04", type: "registry:block", registryDependencies: ["button","card","input","label"], files: ["registry/default/block/authentication-04.tsx"], component: React.lazy(() => import("@/registry/default/block/authentication-04.tsx")), source: "__registry__/default/block/authentication-04.tsx", category: "Authentication", subcategory: "Login", chunks: [] }, "chart-area-axes": { name: "chart-area-axes", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-axes.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-axes.tsx")), source: "__registry__/default/block/chart-area-axes.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-default": { name: "chart-area-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-default.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-default.tsx")), source: "__registry__/default/block/chart-area-default.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-gradient": { name: "chart-area-gradient", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-gradient.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-gradient.tsx")), source: "__registry__/default/block/chart-area-gradient.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-icons": { name: "chart-area-icons", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-icons.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-icons.tsx")), source: "__registry__/default/block/chart-area-icons.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-interactive": { name: "chart-area-interactive", type: "registry:block", registryDependencies: ["card","chart","select"], files: ["registry/default/block/chart-area-interactive.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-interactive.tsx")), source: "__registry__/default/block/chart-area-interactive.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-legend": { name: "chart-area-legend", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-legend.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-legend.tsx")), source: "__registry__/default/block/chart-area-legend.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-linear": { name: "chart-area-linear", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-linear.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-linear.tsx")), source: "__registry__/default/block/chart-area-linear.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-stacked-expand": { name: "chart-area-stacked-expand", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-stacked-expand.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-stacked-expand.tsx")), source: "__registry__/default/block/chart-area-stacked-expand.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-stacked": { name: "chart-area-stacked", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-stacked.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-stacked.tsx")), source: "__registry__/default/block/chart-area-stacked.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-area-step": { name: "chart-area-step", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-area-step.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-area-step.tsx")), source: "__registry__/default/block/chart-area-step.tsx", category: "Charts", subcategory: "Area", chunks: [] }, "chart-bar-active": { name: "chart-bar-active", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-active.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-active.tsx")), source: "__registry__/default/block/chart-bar-active.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-default": { name: "chart-bar-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-default.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-default.tsx")), source: "__registry__/default/block/chart-bar-default.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-horizontal": { name: "chart-bar-horizontal", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-horizontal.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-horizontal.tsx")), source: "__registry__/default/block/chart-bar-horizontal.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-interactive": { name: "chart-bar-interactive", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-interactive.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-interactive.tsx")), source: "__registry__/default/block/chart-bar-interactive.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-label-custom": { name: "chart-bar-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-label-custom.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-label-custom.tsx")), source: "__registry__/default/block/chart-bar-label-custom.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-label": { name: "chart-bar-label", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-label.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-label.tsx")), source: "__registry__/default/block/chart-bar-label.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-mixed": { name: "chart-bar-mixed", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-mixed.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-mixed.tsx")), source: "__registry__/default/block/chart-bar-mixed.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-multiple": { name: "chart-bar-multiple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-multiple.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-multiple.tsx")), source: "__registry__/default/block/chart-bar-multiple.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-negative": { name: "chart-bar-negative", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-negative.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-negative.tsx")), source: "__registry__/default/block/chart-bar-negative.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-bar-stacked": { name: "chart-bar-stacked", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-bar-stacked.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-bar-stacked.tsx")), source: "__registry__/default/block/chart-bar-stacked.tsx", category: "Charts", subcategory: "Bar", chunks: [] }, "chart-line-default": { name: "chart-line-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-default.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-default.tsx")), source: "__registry__/default/block/chart-line-default.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-dots-colors": { name: "chart-line-dots-colors", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-dots-colors.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-dots-colors.tsx")), source: "__registry__/default/block/chart-line-dots-colors.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-dots-custom": { name: "chart-line-dots-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-dots-custom.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-dots-custom.tsx")), source: "__registry__/default/block/chart-line-dots-custom.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-dots": { name: "chart-line-dots", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-dots.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-dots.tsx")), source: "__registry__/default/block/chart-line-dots.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-interactive": { name: "chart-line-interactive", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-interactive.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-interactive.tsx")), source: "__registry__/default/block/chart-line-interactive.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-label-custom": { name: "chart-line-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-label-custom.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-label-custom.tsx")), source: "__registry__/default/block/chart-line-label-custom.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-label": { name: "chart-line-label", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-label.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-label.tsx")), source: "__registry__/default/block/chart-line-label.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-linear": { name: "chart-line-linear", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-linear.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-linear.tsx")), source: "__registry__/default/block/chart-line-linear.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-multiple": { name: "chart-line-multiple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-multiple.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-multiple.tsx")), source: "__registry__/default/block/chart-line-multiple.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-line-step": { name: "chart-line-step", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-line-step.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-line-step.tsx")), source: "__registry__/default/block/chart-line-step.tsx", category: "Charts", subcategory: "Line", chunks: [] }, "chart-pie-donut-active": { name: "chart-pie-donut-active", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-donut-active.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-donut-active.tsx")), source: "__registry__/default/block/chart-pie-donut-active.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-donut-text": { name: "chart-pie-donut-text", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-donut-text.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-donut-text.tsx")), source: "__registry__/default/block/chart-pie-donut-text.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-donut": { name: "chart-pie-donut", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-donut.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-donut.tsx")), source: "__registry__/default/block/chart-pie-donut.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-interactive": { name: "chart-pie-interactive", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-interactive.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-interactive.tsx")), source: "__registry__/default/block/chart-pie-interactive.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-label-custom": { name: "chart-pie-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-label-custom.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-label-custom.tsx")), source: "__registry__/default/block/chart-pie-label-custom.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-label-list": { name: "chart-pie-label-list", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-label-list.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-label-list.tsx")), source: "__registry__/default/block/chart-pie-label-list.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-label": { name: "chart-pie-label", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-label.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-label.tsx")), source: "__registry__/default/block/chart-pie-label.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-legend": { name: "chart-pie-legend", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-legend.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-legend.tsx")), source: "__registry__/default/block/chart-pie-legend.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-separator-none": { name: "chart-pie-separator-none", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-separator-none.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-separator-none.tsx")), source: "__registry__/default/block/chart-pie-separator-none.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-simple": { name: "chart-pie-simple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-simple.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-simple.tsx")), source: "__registry__/default/block/chart-pie-simple.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-pie-stacked": { name: "chart-pie-stacked", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-pie-stacked.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-pie-stacked.tsx")), source: "__registry__/default/block/chart-pie-stacked.tsx", category: "Charts", subcategory: "Pie", chunks: [] }, "chart-radar-default": { name: "chart-radar-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-default.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-default.tsx")), source: "__registry__/default/block/chart-radar-default.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-dots": { name: "chart-radar-dots", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-dots.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-dots.tsx")), source: "__registry__/default/block/chart-radar-dots.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-circle-fill": { name: "chart-radar-grid-circle-fill", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-grid-circle-fill.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-grid-circle-fill.tsx")), source: "__registry__/default/block/chart-radar-grid-circle-fill.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-circle-no-lines": { name: "chart-radar-grid-circle-no-lines", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-grid-circle-no-lines.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-grid-circle-no-lines.tsx")), source: "__registry__/default/block/chart-radar-grid-circle-no-lines.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-circle": { name: "chart-radar-grid-circle", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-grid-circle.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-grid-circle.tsx")), source: "__registry__/default/block/chart-radar-grid-circle.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-custom": { name: "chart-radar-grid-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-grid-custom.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-grid-custom.tsx")), source: "__registry__/default/block/chart-radar-grid-custom.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-fill": { name: "chart-radar-grid-fill", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-grid-fill.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-grid-fill.tsx")), source: "__registry__/default/block/chart-radar-grid-fill.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-grid-none": { name: "chart-radar-grid-none", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-grid-none.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-grid-none.tsx")), source: "__registry__/default/block/chart-radar-grid-none.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-icons": { name: "chart-radar-icons", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-icons.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-icons.tsx")), source: "__registry__/default/block/chart-radar-icons.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-label-custom": { name: "chart-radar-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-label-custom.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-label-custom.tsx")), source: "__registry__/default/block/chart-radar-label-custom.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-legend": { name: "chart-radar-legend", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-legend.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-legend.tsx")), source: "__registry__/default/block/chart-radar-legend.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-lines-only": { name: "chart-radar-lines-only", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-lines-only.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-lines-only.tsx")), source: "__registry__/default/block/chart-radar-lines-only.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-multiple": { name: "chart-radar-multiple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-multiple.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-multiple.tsx")), source: "__registry__/default/block/chart-radar-multiple.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radar-radius": { name: "chart-radar-radius", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radar-radius.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radar-radius.tsx")), source: "__registry__/default/block/chart-radar-radius.tsx", category: "Charts", subcategory: "Radar", chunks: [] }, "chart-radial-grid": { name: "chart-radial-grid", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radial-grid.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radial-grid.tsx")), source: "__registry__/default/block/chart-radial-grid.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-label": { name: "chart-radial-label", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radial-label.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radial-label.tsx")), source: "__registry__/default/block/chart-radial-label.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-shape": { name: "chart-radial-shape", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radial-shape.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radial-shape.tsx")), source: "__registry__/default/block/chart-radial-shape.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-simple": { name: "chart-radial-simple", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radial-simple.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radial-simple.tsx")), source: "__registry__/default/block/chart-radial-simple.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-stacked": { name: "chart-radial-stacked", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radial-stacked.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radial-stacked.tsx")), source: "__registry__/default/block/chart-radial-stacked.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-radial-text": { name: "chart-radial-text", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-radial-text.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-radial-text.tsx")), source: "__registry__/default/block/chart-radial-text.tsx", category: "Charts", subcategory: "Radial", chunks: [] }, "chart-tooltip-default": { name: "chart-tooltip-default", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-default.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-default.tsx")), source: "__registry__/default/block/chart-tooltip-default.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-indicator-line": { name: "chart-tooltip-indicator-line", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-indicator-line.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-indicator-line.tsx")), source: "__registry__/default/block/chart-tooltip-indicator-line.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-indicator-none": { name: "chart-tooltip-indicator-none", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-indicator-none.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-indicator-none.tsx")), source: "__registry__/default/block/chart-tooltip-indicator-none.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-label-none": { name: "chart-tooltip-label-none", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-label-none.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-label-none.tsx")), source: "__registry__/default/block/chart-tooltip-label-none.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-label-custom": { name: "chart-tooltip-label-custom", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-label-custom.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-label-custom.tsx")), source: "__registry__/default/block/chart-tooltip-label-custom.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-label-formatter": { name: "chart-tooltip-label-formatter", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-label-formatter.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-label-formatter.tsx")), source: "__registry__/default/block/chart-tooltip-label-formatter.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-formatter": { name: "chart-tooltip-formatter", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-formatter.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-formatter.tsx")), source: "__registry__/default/block/chart-tooltip-formatter.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-icons": { name: "chart-tooltip-icons", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-icons.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-icons.tsx")), source: "__registry__/default/block/chart-tooltip-icons.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "chart-tooltip-advanced": { name: "chart-tooltip-advanced", type: "registry:block", registryDependencies: ["card","chart"], files: ["registry/default/block/chart-tooltip-advanced.tsx"], component: React.lazy(() => import("@/registry/default/block/chart-tooltip-advanced.tsx")), source: "__registry__/default/block/chart-tooltip-advanced.tsx", category: "Charts", subcategory: "Tooltip", chunks: [] }, "utils": { name: "utils", type: "registry:lib", registryDependencies: undefined, files: ["registry/default/lib/utils.ts"], component: React.lazy(() => import("@/registry/default/lib/utils.ts")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "use-mobile": { name: "use-mobile", type: "registry:hook", registryDependencies: undefined, files: ["registry/default/hooks/use-mobile.tsx"], component: React.lazy(() => import("@/registry/default/hooks/use-mobile.tsx")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, "use-toast": { name: "use-toast", type: "registry:hook", registryDependencies: undefined, files: ["registry/default/hooks/use-toast.ts"], component: React.lazy(() => import("@/registry/default/hooks/use-toast.ts")), source: "", category: "undefined", subcategory: "undefined", chunks: [] }, }, }
shadcn-ui/ui/apps/www/__registry__/index.tsx
{ "file_path": "shadcn-ui/ui/apps/www/__registry__/index.tsx", "repo_id": "shadcn-ui/ui", "token_count": 110148 }
106
import { docsConfig } from "@/config/docs" import { DocsSidebarNav } from "@/components/sidebar-nav" import { ScrollArea } from "@/registry/new-york/ui/scroll-area" interface DocsLayoutProps { children: React.ReactNode } export default function DocsLayout({ children }: DocsLayoutProps) { return ( <div className="border-b"> <div className="container flex-1 items-start md:grid md:grid-cols-[220px_minmax(0,1fr)] md:gap-6 lg:grid-cols-[240px_minmax(0,1fr)] lg:gap-10"> <aside className="fixed top-14 z-30 -ml-2 hidden h-[calc(100vh-3.5rem)] w-full shrink-0 md:sticky md:block"> <ScrollArea className="h-full py-6 pr-6 lg:py-8"> <DocsSidebarNav config={docsConfig} /> </ScrollArea> </aside> {children} </div> </div> ) }
shadcn-ui/ui/apps/www/app/(app)/docs/layout.tsx
{ "file_path": "shadcn-ui/ui/apps/www/app/(app)/docs/layout.tsx", "repo_id": "shadcn-ui/ui", "token_count": 350 }
107
import { Avatar, AvatarFallback, AvatarImage, } from "@/registry/new-york/ui/avatar" export function RecentSales() { return ( <div className="space-y-8"> <div className="flex items-center"> <Avatar className="h-9 w-9"> <AvatarImage src="/avatars/01.png" alt="Avatar" /> <AvatarFallback>OM</AvatarFallback> </Avatar> <div className="ml-4 space-y-1"> <p className="text-sm font-medium leading-none">Olivia Martin</p> <p className="text-sm text-muted-foreground"> [email protected] </p> </div> <div className="ml-auto font-medium">+$1,999.00</div> </div> <div className="flex items-center"> <Avatar className="flex h-9 w-9 items-center justify-center space-y-0 border"> <AvatarImage src="/avatars/02.png" alt="Avatar" /> <AvatarFallback>JL</AvatarFallback> </Avatar> <div className="ml-4 space-y-1"> <p className="text-sm font-medium leading-none">Jackson Lee</p> <p className="text-sm text-muted-foreground">[email protected]</p> </div> <div className="ml-auto font-medium">+$39.00</div> </div> <div className="flex items-center"> <Avatar className="h-9 w-9"> <AvatarImage src="/avatars/03.png" alt="Avatar" /> <AvatarFallback>IN</AvatarFallback> </Avatar> <div className="ml-4 space-y-1"> <p className="text-sm font-medium leading-none">Isabella Nguyen</p> <p className="text-sm text-muted-foreground"> [email protected] </p> </div> <div className="ml-auto font-medium">+$299.00</div> </div> <div className="flex items-center"> <Avatar className="h-9 w-9"> <AvatarImage src="/avatars/04.png" alt="Avatar" /> <AvatarFallback>WK</AvatarFallback> </Avatar> <div className="ml-4 space-y-1"> <p className="text-sm font-medium leading-none">William Kim</p> <p className="text-sm text-muted-foreground">[email protected]</p> </div> <div className="ml-auto font-medium">+$99.00</div> </div> <div className="flex items-center"> <Avatar className="h-9 w-9"> <AvatarImage src="/avatars/05.png" alt="Avatar" /> <AvatarFallback>SD</AvatarFallback> </Avatar> <div className="ml-4 space-y-1"> <p className="text-sm font-medium leading-none">Sofia Davis</p> <p className="text-sm text-muted-foreground">[email protected]</p> </div> <div className="ml-auto font-medium">+$39.00</div> </div> </div> ) }
shadcn-ui/ui/apps/www/app/(app)/examples/dashboard/components/recent-sales.tsx
{ "file_path": "shadcn-ui/ui/apps/www/app/(app)/examples/dashboard/components/recent-sales.tsx", "repo_id": "shadcn-ui/ui", "token_count": 1334 }
108
"use client" import Link from "next/link" import { zodResolver } from "@hookform/resolvers/zod" import { useFieldArray, useForm } from "react-hook-form" import { z } from "zod" import { cn } from "@/lib/utils" import { toast } from "@/registry/new-york/hooks/use-toast" import { Button } from "@/registry/new-york/ui/button" import { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, } from "@/registry/new-york/ui/form" import { Input } from "@/registry/new-york/ui/input" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/registry/new-york/ui/select" import { Textarea } from "@/registry/new-york/ui/textarea" const profileFormSchema = z.object({ username: z .string() .min(2, { message: "Username must be at least 2 characters.", }) .max(30, { message: "Username must not be longer than 30 characters.", }), email: z .string({ required_error: "Please select an email to display.", }) .email(), bio: z.string().max(160).min(4), urls: z .array( z.object({ value: z.string().url({ message: "Please enter a valid URL." }), }) ) .optional(), }) type ProfileFormValues = z.infer<typeof profileFormSchema> // This can come from your database or API. const defaultValues: Partial<ProfileFormValues> = { bio: "I own a computer.", urls: [ { value: "https://shadcn.com" }, { value: "http://twitter.com/shadcn" }, ], } export function ProfileForm() { const form = useForm<ProfileFormValues>({ resolver: zodResolver(profileFormSchema), defaultValues, mode: "onChange", }) const { fields, append } = useFieldArray({ name: "urls", control: form.control, }) function onSubmit(data: ProfileFormValues) { toast({ title: "You submitted the following values:", description: ( <pre className="mt-2 w-[340px] rounded-md bg-slate-950 p-4"> <code className="text-white">{JSON.stringify(data, null, 2)}</code> </pre> ), }) } return ( <Form {...form}> <form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8"> <FormField control={form.control} name="username" render={({ field }) => ( <FormItem> <FormLabel>Username</FormLabel> <FormControl> <Input placeholder="shadcn" {...field} /> </FormControl> <FormDescription> This is your public display name. It can be your real name or a pseudonym. You can only change this once every 30 days. </FormDescription> <FormMessage /> </FormItem> )} /> <FormField control={form.control} name="email" render={({ field }) => ( <FormItem> <FormLabel>Email</FormLabel> <Select onValueChange={field.onChange} defaultValue={field.value}> <FormControl> <SelectTrigger> <SelectValue placeholder="Select a verified email to display" /> </SelectTrigger> </FormControl> <SelectContent> <SelectItem value="[email protected]">[email protected]</SelectItem> <SelectItem value="[email protected]">[email protected]</SelectItem> <SelectItem value="[email protected]">[email protected]</SelectItem> </SelectContent> </Select> <FormDescription> You can manage verified email addresses in your{" "} <Link href="/examples/forms">email settings</Link>. </FormDescription> <FormMessage /> </FormItem> )} /> <FormField control={form.control} name="bio" render={({ field }) => ( <FormItem> <FormLabel>Bio</FormLabel> <FormControl> <Textarea placeholder="Tell us a little bit about yourself" className="resize-none" {...field} /> </FormControl> <FormDescription> You can <span>@mention</span> other users and organizations to link to them. </FormDescription> <FormMessage /> </FormItem> )} /> <div> {fields.map((field, index) => ( <FormField control={form.control} key={field.id} name={`urls.${index}.value`} render={({ field }) => ( <FormItem> <FormLabel className={cn(index !== 0 && "sr-only")}> URLs </FormLabel> <FormDescription className={cn(index !== 0 && "sr-only")}> Add links to your website, blog, or social media profiles. </FormDescription> <FormControl> <Input {...field} /> </FormControl> <FormMessage /> </FormItem> )} /> ))} <Button type="button" variant="outline" size="sm" className="mt-2" onClick={() => append({ value: "" })} > Add URL </Button> </div> <Button type="submit">Update profile</Button> </form> </Form> ) }
shadcn-ui/ui/apps/www/app/(app)/examples/forms/profile-form.tsx
{ "file_path": "shadcn-ui/ui/apps/www/app/(app)/examples/forms/profile-form.tsx", "repo_id": "shadcn-ui/ui", "token_count": 2802 }
109
import { Metadata } from "next" import Image from "next/image" import { PlusCircledIcon } from "@radix-ui/react-icons" import { Button } from "@/registry/new-york/ui/button" import { ScrollArea, ScrollBar } from "@/registry/new-york/ui/scroll-area" import { Separator } from "@/registry/new-york/ui/separator" import { Tabs, TabsContent, TabsList, TabsTrigger, } from "@/registry/new-york/ui/tabs" import { AlbumArtwork } from "./components/album-artwork" import { Menu } from "./components/menu" import { PodcastEmptyPlaceholder } from "./components/podcast-empty-placeholder" import { Sidebar } from "./components/sidebar" import { listenNowAlbums, madeForYouAlbums } from "./data/albums" import { playlists } from "./data/playlists" export const metadata: Metadata = { title: "Music App", description: "Example music app using the components.", } export default function MusicPage() { return ( <> <div className="md:hidden"> <Image src="/examples/music-light.png" width={1280} height={1114} alt="Music" className="block dark:hidden" /> <Image src="/examples/music-dark.png" width={1280} height={1114} alt="Music" className="hidden dark:block" /> </div> <div className="hidden md:block"> <Menu /> <div className="border-t"> <div className="bg-background"> <div className="grid lg:grid-cols-5"> <Sidebar playlists={playlists} className="hidden lg:block" /> <div className="col-span-3 lg:col-span-4 lg:border-l"> <div className="h-full px-4 py-6 lg:px-8"> <Tabs defaultValue="music" className="h-full space-y-6"> <div className="space-between flex items-center"> <TabsList> <TabsTrigger value="music" className="relative"> Music </TabsTrigger> <TabsTrigger value="podcasts">Podcasts</TabsTrigger> <TabsTrigger value="live" disabled> Live </TabsTrigger> </TabsList> <div className="ml-auto mr-4"> <Button> <PlusCircledIcon className="mr-2 h-4 w-4" /> Add music </Button> </div> </div> <TabsContent value="music" className="border-none p-0 outline-none" > <div className="flex items-center justify-between"> <div className="space-y-1"> <h2 className="text-2xl font-semibold tracking-tight"> Listen Now </h2> <p className="text-sm text-muted-foreground"> Top picks for you. Updated daily. </p> </div> </div> <Separator className="my-4" /> <div className="relative"> <ScrollArea> <div className="flex space-x-4 pb-4"> {listenNowAlbums.map((album) => ( <AlbumArtwork key={album.name} album={album} className="w-[250px]" aspectRatio="portrait" width={250} height={330} /> ))} </div> <ScrollBar orientation="horizontal" /> </ScrollArea> </div> <div className="mt-6 space-y-1"> <h2 className="text-2xl font-semibold tracking-tight"> Made for You </h2> <p className="text-sm text-muted-foreground"> Your personal playlists. Updated daily. </p> </div> <Separator className="my-4" /> <div className="relative"> <ScrollArea> <div className="flex space-x-4 pb-4"> {madeForYouAlbums.map((album) => ( <AlbumArtwork key={album.name} album={album} className="w-[150px]" aspectRatio="square" width={150} height={150} /> ))} </div> <ScrollBar orientation="horizontal" /> </ScrollArea> </div> </TabsContent> <TabsContent value="podcasts" className="h-full flex-col border-none p-0 data-[state=active]:flex" > <div className="flex items-center justify-between"> <div className="space-y-1"> <h2 className="text-2xl font-semibold tracking-tight"> New Episodes </h2> <p className="text-sm text-muted-foreground"> Your favorite podcasts. Updated daily. </p> </div> </div> <Separator className="my-4" /> <PodcastEmptyPlaceholder /> </TabsContent> </Tabs> </div> </div> </div> </div> </div> </div> </> ) }
shadcn-ui/ui/apps/www/app/(app)/examples/music/page.tsx
{ "file_path": "shadcn-ui/ui/apps/www/app/(app)/examples/music/page.tsx", "repo_id": "shadcn-ui/ui", "token_count": 3910 }
110
import { ChevronLeftIcon, ChevronRightIcon, DoubleArrowLeftIcon, DoubleArrowRightIcon, } from "@radix-ui/react-icons" import { Table } from "@tanstack/react-table" import { Button } from "@/registry/new-york/ui/button" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/registry/new-york/ui/select" interface DataTablePaginationProps<TData> { table: Table<TData> } export function DataTablePagination<TData>({ table, }: DataTablePaginationProps<TData>) { return ( <div className="flex items-center justify-between px-2"> <div className="flex-1 text-sm text-muted-foreground"> {table.getFilteredSelectedRowModel().rows.length} of{" "} {table.getFilteredRowModel().rows.length} row(s) selected. </div> <div className="flex items-center space-x-6 lg:space-x-8"> <div className="flex items-center space-x-2"> <p className="text-sm font-medium">Rows per page</p> <Select value={`${table.getState().pagination.pageSize}`} onValueChange={(value) => { table.setPageSize(Number(value)) }} > <SelectTrigger className="h-8 w-[70px]"> <SelectValue placeholder={table.getState().pagination.pageSize} /> </SelectTrigger> <SelectContent side="top"> {[10, 20, 30, 40, 50].map((pageSize) => ( <SelectItem key={pageSize} value={`${pageSize}`}> {pageSize} </SelectItem> ))} </SelectContent> </Select> </div> <div className="flex w-[100px] items-center justify-center text-sm font-medium"> Page {table.getState().pagination.pageIndex + 1} of{" "} {table.getPageCount()} </div> <div className="flex items-center space-x-2"> <Button variant="outline" className="hidden h-8 w-8 p-0 lg:flex" onClick={() => table.setPageIndex(0)} disabled={!table.getCanPreviousPage()} > <span className="sr-only">Go to first page</span> <DoubleArrowLeftIcon className="h-4 w-4" /> </Button> <Button variant="outline" className="h-8 w-8 p-0" onClick={() => table.previousPage()} disabled={!table.getCanPreviousPage()} > <span className="sr-only">Go to previous page</span> <ChevronLeftIcon className="h-4 w-4" /> </Button> <Button variant="outline" className="h-8 w-8 p-0" onClick={() => table.nextPage()} disabled={!table.getCanNextPage()} > <span className="sr-only">Go to next page</span> <ChevronRightIcon className="h-4 w-4" /> </Button> <Button variant="outline" className="hidden h-8 w-8 p-0 lg:flex" onClick={() => table.setPageIndex(table.getPageCount() - 1)} disabled={!table.getCanNextPage()} > <span className="sr-only">Go to last page</span> <DoubleArrowRightIcon className="h-4 w-4" /> </Button> </div> </div> </div> ) }
shadcn-ui/ui/apps/www/app/(app)/examples/tasks/components/data-table-pagination.tsx
{ "file_path": "shadcn-ui/ui/apps/www/app/(app)/examples/tasks/components/data-table-pagination.tsx", "repo_id": "shadcn-ui/ui", "token_count": 1637 }
111
import { Metadata } from "next" import "public/registry/themes.css" import { Announcement } from "@/components/announcement" import { PageActions, PageHeader, PageHeaderDescription, PageHeaderHeading, } from "@/components/page-header" import { ThemeCustomizer } from "@/components/theme-customizer" import { ThemeWrapper } from "@/components/theme-wrapper" import { ThemesTabs } from "@/app/(app)/themes/tabs" export const metadata: Metadata = { title: "Themes", description: "Hand-picked themes that you can copy and paste into your apps.", } export default function ThemesPage() { return ( <div className="container"> <ThemeWrapper defaultTheme="zinc" className="relative flex w-full flex-col items-start md:flex-row" > <PageHeader className="w-full"> <Announcement /> <PageHeaderHeading className="hidden md:block"> Add colors. Make it yours. </PageHeaderHeading> <PageHeaderHeading className="md:hidden"> Make it yours </PageHeaderHeading> <PageHeaderDescription> Hand-picked themes that you can copy and paste into your apps. </PageHeaderDescription> <PageActions> <ThemeCustomizer /> </PageActions> </PageHeader> </ThemeWrapper> <ThemesTabs /> </div> ) }
shadcn-ui/ui/apps/www/app/(app)/themes/page.tsx
{ "file_path": "shadcn-ui/ui/apps/www/app/(app)/themes/page.tsx", "repo_id": "shadcn-ui/ui", "token_count": 552 }
112
import { getBlock } from "@/lib/blocks" import { cn } from "@/lib/utils" import { ChartToolbar } from "@/components/chart-toolbar" export async function ChartDisplay({ name, children, className, }: { name: string } & React.ComponentProps<"div">) { const chart = await getBlock(name) // Cannot (and don't need to) pass to the client. delete chart?.component delete chart?.chunks if (!chart) { return null } return ( <div className={cn( "themes-wrapper group relative flex flex-col overflow-hidden rounded-xl border shadow transition-all duration-200 ease-in-out hover:z-30", className )} > <ChartToolbar chart={chart} className="relative z-20 flex justify-end border-b bg-card px-3 py-2.5 text-card-foreground" > {children} </ChartToolbar> <div className="relative z-10 [&>div]:rounded-none [&>div]:border-none [&>div]:shadow-none"> {children} </div> </div> ) }
shadcn-ui/ui/apps/www/components/chart-display.tsx
{ "file_path": "shadcn-ui/ui/apps/www/components/chart-display.tsx", "repo_id": "shadcn-ui/ui", "token_count": 393 }
113
"use client" import * as React from "react" import { Index } from "@/__registry__" import { cn } from "@/lib/utils" import { useConfig } from "@/hooks/use-config" import { Icons } from "@/components/icons" interface ThemeComponentProps extends React.HTMLAttributes<HTMLDivElement> { name: string extractClassname?: boolean extractedClassNames?: string align?: "center" | "start" | "end" } export function ThemeComponent({ name, ...props }: ThemeComponentProps) { const [config] = useConfig() const Preview = React.useMemo(() => { const Component = Index[config.style][name]?.component if (!Component) { return ( <p className="text-sm text-muted-foreground"> Component{" "} <code className="relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm"> {name} </code>{" "} not found in registry. </p> ) } return <Component /> }, [name, config.style]) return ( <div className={cn("relative")} {...props}> <React.Suspense fallback={ <div className="flex items-center text-sm text-muted-foreground"> <Icons.spinner className="mr-2 h-4 w-4 animate-spin" /> Loading... </div> } > {Preview} </React.Suspense> </div> ) }
shadcn-ui/ui/apps/www/components/theme-component.tsx
{ "file_path": "shadcn-ui/ui/apps/www/components/theme-component.tsx", "repo_id": "shadcn-ui/ui", "token_count": 568 }
114
"use server" import { codeToHtml } from "shiki" export async function highlightCode(code: string) { const html = codeToHtml(code, { lang: "typescript", theme: "github-dark-default", transformers: [ { code(node) { node.properties["data-line-numbers"] = "" }, }, ], }) return html }
shadcn-ui/ui/apps/www/lib/highlight-code.ts
{ "file_path": "shadcn-ui/ui/apps/www/lib/highlight-code.ts", "repo_id": "shadcn-ui/ui", "token_count": 150 }
115
module.exports = require("../../postcss.config.cjs")
shadcn-ui/ui/apps/www/postcss.config.cjs
{ "file_path": "shadcn-ui/ui/apps/www/postcss.config.cjs", "repo_id": "shadcn-ui/ui", "token_count": 18 }
116
.theme-zinc { --background: 0 0% 100%; --foreground: 240 10% 3.9%; --muted: 240 4.8% 95.9%; --muted-foreground: 240 3.8% 46.1%; --popover: 0 0% 100%; --popover-foreground: 240 10% 3.9%; --card: 0 0% 100%; --card-foreground: 240 10% 3.9%; --border: 240 5.9% 90%; --input: 240 5.9% 90%; --primary: 240 5.9% 10%; --primary-foreground: 0 0% 98%; --secondary: 240 4.8% 95.9%; --secondary-foreground: 240 5.9% 10%; --accent: 240 4.8% 95.9%; --accent-foreground: 240 5.9% 10%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 0 0% 98%; --ring: 240 5.9% 10%; --radius: 0.5rem; } .dark .theme-zinc { --background: 240 10% 3.9%; --foreground: 0 0% 98%; --muted: 240 3.7% 15.9%; --muted-foreground: 240 5% 64.9%; --popover: 240 10% 3.9%; --popover-foreground: 0 0% 98%; --card: 240 10% 3.9%; --card-foreground: 0 0% 98%; --border: 240 3.7% 15.9%; --input: 240 3.7% 15.9%; --primary: 0 0% 98%; --primary-foreground: 240 5.9% 10%; --secondary: 240 3.7% 15.9%; --secondary-foreground: 0 0% 98%; --accent: 240 3.7% 15.9%; --accent-foreground: 0 0% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 0 0% 98%; --ring: 240 4.9% 83.9%; } .theme-slate { --background: 0 0% 100%; --foreground: 222.2 84% 4.9%; --muted: 210 40% 96.1%; --muted-foreground: 215.4 16.3% 46.9%; --popover: 0 0% 100%; --popover-foreground: 222.2 84% 4.9%; --card: 0 0% 100%; --card-foreground: 222.2 84% 4.9%; --border: 214.3 31.8% 91.4%; --input: 214.3 31.8% 91.4%; --primary: 222.2 47.4% 11.2%; --primary-foreground: 210 40% 98%; --secondary: 210 40% 96.1%; --secondary-foreground: 222.2 47.4% 11.2%; --accent: 210 40% 96.1%; --accent-foreground: 222.2 47.4% 11.2%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 210 40% 98%; --ring: 222.2 84% 4.9%; --radius: 0.5rem; } .dark .theme-slate { --background: 222.2 84% 4.9%; --foreground: 210 40% 98%; --muted: 217.2 32.6% 17.5%; --muted-foreground: 215 20.2% 65.1%; --popover: 222.2 84% 4.9%; --popover-foreground: 210 40% 98%; --card: 222.2 84% 4.9%; --card-foreground: 210 40% 98%; --border: 217.2 32.6% 17.5%; --input: 217.2 32.6% 17.5%; --primary: 210 40% 98%; --primary-foreground: 222.2 47.4% 11.2%; --secondary: 217.2 32.6% 17.5%; --secondary-foreground: 210 40% 98%; --accent: 217.2 32.6% 17.5%; --accent-foreground: 210 40% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 210 40% 98%; --ring: 212.7 26.8% 83.9; } .theme-stone { --background: 0 0% 100%; --foreground: 20 14.3% 4.1%; --muted: 60 4.8% 95.9%; --muted-foreground: 25 5.3% 44.7%; --popover: 0 0% 100%; --popover-foreground: 20 14.3% 4.1%; --card: 0 0% 100%; --card-foreground: 20 14.3% 4.1%; --border: 20 5.9% 90%; --input: 20 5.9% 90%; --primary: 24 9.8% 10%; --primary-foreground: 60 9.1% 97.8%; --secondary: 60 4.8% 95.9%; --secondary-foreground: 24 9.8% 10%; --accent: 60 4.8% 95.9%; --accent-foreground: 24 9.8% 10%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 60 9.1% 97.8%; --ring: 20 14.3% 4.1%; --radius: 0.95rem; } .dark .theme-stone { --background: 20 14.3% 4.1%; --foreground: 60 9.1% 97.8%; --muted: 12 6.5% 15.1%; --muted-foreground: 24 5.4% 63.9%; --popover: 20 14.3% 4.1%; --popover-foreground: 60 9.1% 97.8%; --card: 20 14.3% 4.1%; --card-foreground: 60 9.1% 97.8%; --border: 12 6.5% 15.1%; --input: 12 6.5% 15.1%; --primary: 60 9.1% 97.8%; --primary-foreground: 24 9.8% 10%; --secondary: 12 6.5% 15.1%; --secondary-foreground: 60 9.1% 97.8%; --accent: 12 6.5% 15.1%; --accent-foreground: 60 9.1% 97.8%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 60 9.1% 97.8%; --ring: 24 5.7% 82.9%; } .theme-gray { --background: 0 0% 100%; --foreground: 224 71.4% 4.1%; --muted: 220 14.3% 95.9%; --muted-foreground: 220 8.9% 46.1%; --popover: 0 0% 100%; --popover-foreground: 224 71.4% 4.1%; --card: 0 0% 100%; --card-foreground: 224 71.4% 4.1%; --border: 220 13% 91%; --input: 220 13% 91%; --primary: 220.9 39.3% 11%; --primary-foreground: 210 20% 98%; --secondary: 220 14.3% 95.9%; --secondary-foreground: 220.9 39.3% 11%; --accent: 220 14.3% 95.9%; --accent-foreground: 220.9 39.3% 11%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 210 20% 98%; --ring: 224 71.4% 4.1%; --radius: 0.35rem; } .dark .theme-gray { --background: 224 71.4% 4.1%; --foreground: 210 20% 98%; --muted: 215 27.9% 16.9%; --muted-foreground: 217.9 10.6% 64.9%; --popover: 224 71.4% 4.1%; --popover-foreground: 210 20% 98%; --card: 224 71.4% 4.1%; --card-foreground: 210 20% 98%; --border: 215 27.9% 16.9%; --input: 215 27.9% 16.9%; --primary: 210 20% 98%; --primary-foreground: 220.9 39.3% 11%; --secondary: 215 27.9% 16.9%; --secondary-foreground: 210 20% 98%; --accent: 215 27.9% 16.9%; --accent-foreground: 210 20% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 210 20% 98%; --ring: 216 12.2% 83.9%; } .theme-neutral { --background: 0 0% 100%; --foreground: 0 0% 3.9%; --muted: 0 0% 96.1%; --muted-foreground: 0 0% 45.1%; --popover: 0 0% 100%; --popover-foreground: 0 0% 3.9%; --card: 0 0% 100%; --card-foreground: 0 0% 3.9%; --border: 0 0% 89.8%; --input: 0 0% 89.8%; --primary: 0 0% 9%; --primary-foreground: 0 0% 98%; --secondary: 0 0% 96.1%; --secondary-foreground: 0 0% 9%; --accent: 0 0% 96.1%; --accent-foreground: 0 0% 9%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 0 0% 98%; --ring: 0 0% 3.9%; --radius: ; } .dark .theme-neutral { --background: 0 0% 3.9%; --foreground: 0 0% 98%; --muted: 0 0% 14.9%; --muted-foreground: 0 0% 63.9%; --popover: 0 0% 3.9%; --popover-foreground: 0 0% 98%; --card: 0 0% 3.9%; --card-foreground: 0 0% 98%; --border: 0 0% 14.9%; --input: 0 0% 14.9%; --primary: 0 0% 98%; --primary-foreground: 0 0% 9%; --secondary: 0 0% 14.9%; --secondary-foreground: 0 0% 98%; --accent: 0 0% 14.9%; --accent-foreground: 0 0% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 0 0% 98%; --ring: 0 0% 83.1%; } .theme-red { --background: 0 0% 100%; --foreground: 0 0% 3.9%; --muted: 0 0% 96.1%; --muted-foreground: 0 0% 45.1%; --popover: 0 0% 100%; --popover-foreground: 0 0% 3.9%; --card: 0 0% 100%; --card-foreground: 0 0% 3.9%; --border: 0 0% 89.8%; --input: 0 0% 89.8%; --primary: 0 72.2% 50.6%; --primary-foreground: 0 85.7% 97.3%; --secondary: 0 0% 96.1%; --secondary-foreground: 0 0% 9%; --accent: 0 0% 96.1%; --accent-foreground: 0 0% 9%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 0 0% 98%; --ring: 0 72.2% 50.6%; --radius: 0.4rem; } .dark .theme-red { --background: 0 0% 3.9%; --foreground: 0 0% 98%; --muted: 0 0% 14.9%; --muted-foreground: 0 0% 63.9%; --popover: 0 0% 3.9%; --popover-foreground: 0 0% 98%; --card: 0 0% 3.9%; --card-foreground: 0 0% 98%; --border: 0 0% 14.9%; --input: 0 0% 14.9%; --primary: 0 72.2% 50.6%; --primary-foreground: 0 85.7% 97.3%; --secondary: 0 0% 14.9%; --secondary-foreground: 0 0% 98%; --accent: 0 0% 14.9%; --accent-foreground: 0 0% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 0 0% 98%; --ring: 0 72.2% 50.6%; } .theme-rose { --background: 0 0% 100%; --foreground: 240 10% 3.9%; --muted: 240 4.8% 95.9%; --muted-foreground: 240 3.8% 46.1%; --popover: 0 0% 100%; --popover-foreground: 240 10% 3.9%; --card: 0 0% 100%; --card-foreground: 240 10% 3.9%; --border: 240 5.9% 90%; --input: 240 5.9% 90%; --primary: 346.8 77.2% 49.8%; --primary-foreground: 355.7 100% 97.3%; --secondary: 240 4.8% 95.9%; --secondary-foreground: 240 5.9% 10%; --accent: 240 4.8% 95.9%; --accent-foreground: 240 5.9% 10%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 0 0% 98%; --ring: 346.8 77.2% 49.8%; --radius: 0.5rem; } .dark .theme-rose { --background: 20 14.3% 4.1%; --foreground: 0 0% 95%; --muted: 0 0% 15%; --muted-foreground: 240 5% 64.9%; --popover: 0 0% 9%; --popover-foreground: 0 0% 95%; --card: 24 9.8% 10%; --card-foreground: 0 0% 95%; --border: 240 3.7% 15.9%; --input: 240 3.7% 15.9%; --primary: 346.8 77.2% 49.8%; --primary-foreground: 355.7 100% 97.3%; --secondary: 240 3.7% 15.9%; --secondary-foreground: 0 0% 98%; --accent: 12 6.5% 15.1%; --accent-foreground: 0 0% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 0 85.7% 97.3%; --ring: 346.8 77.2% 49.8%; } .theme-orange { --background: 0 0% 100%; --foreground: 20 14.3% 4.1%; --muted: 60 4.8% 95.9%; --muted-foreground: 25 5.3% 44.7%; --popover: 0 0% 100%; --popover-foreground: 20 14.3% 4.1%; --card: 0 0% 100%; --card-foreground: 20 14.3% 4.1%; --border: 20 5.9% 90%; --input: 20 5.9% 90%; --primary: 24.6 95% 53.1%; --primary-foreground: 60 9.1% 97.8%; --secondary: 60 4.8% 95.9%; --secondary-foreground: 24 9.8% 10%; --accent: 60 4.8% 95.9%; --accent-foreground: 24 9.8% 10%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 60 9.1% 97.8%; --ring: 24.6 95% 53.1%; --radius: 0.95rem; } .dark .theme-orange { --background: 20 14.3% 4.1%; --foreground: 60 9.1% 97.8%; --muted: 12 6.5% 15.1%; --muted-foreground: 24 5.4% 63.9%; --popover: 20 14.3% 4.1%; --popover-foreground: 60 9.1% 97.8%; --card: 20 14.3% 4.1%; --card-foreground: 60 9.1% 97.8%; --border: 12 6.5% 15.1%; --input: 12 6.5% 15.1%; --primary: 20.5 90.2% 48.2%; --primary-foreground: 60 9.1% 97.8%; --secondary: 12 6.5% 15.1%; --secondary-foreground: 60 9.1% 97.8%; --accent: 12 6.5% 15.1%; --accent-foreground: 60 9.1% 97.8%; --destructive: 0 72.2% 50.6%; --destructive-foreground: 60 9.1% 97.8%; --ring: 20.5 90.2% 48.2%; } .theme-green { --background: 0 0% 100%; --foreground: 240 10% 3.9%; --muted: 240 4.8% 95.9%; --muted-foreground: 240 3.8% 46.1%; --popover: 0 0% 100%; --popover-foreground: 240 10% 3.9%; --card: 0 0% 100%; --card-foreground: 240 10% 3.9%; --border: 240 5.9% 90%; --input: 240 5.9% 90%; --primary: 142.1 76.2% 36.3%; --primary-foreground: 355.7 100% 97.3%; --secondary: 240 4.8% 95.9%; --secondary-foreground: 240 5.9% 10%; --accent: 240 4.8% 95.9%; --accent-foreground: 240 5.9% 10%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 0 0% 98%; --ring: 142.1 76.2% 36.3%; --radius: ; } .dark .theme-green { --background: 20 14.3% 4.1%; --foreground: 0 0% 95%; --muted: 0 0% 15%; --muted-foreground: 240 5% 64.9%; --popover: 0 0% 9%; --popover-foreground: 0 0% 95%; --card: 24 9.8% 10%; --card-foreground: 0 0% 95%; --border: 240 3.7% 15.9%; --input: 240 3.7% 15.9%; --primary: 142.1 70.6% 45.3%; --primary-foreground: 144.9 80.4% 10%; --secondary: 240 3.7% 15.9%; --secondary-foreground: 0 0% 98%; --accent: 12 6.5% 15.1%; --accent-foreground: 0 0% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 0 85.7% 97.3%; --ring: 142.4 71.8% 29.2%; } .theme-blue { --background: 0 0% 100%; --foreground: 222.2 84% 4.9%; --muted: 210 40% 96.1%; --muted-foreground: 215.4 16.3% 46.9%; --popover: 0 0% 100%; --popover-foreground: 222.2 84% 4.9%; --card: 0 0% 100%; --card-foreground: 222.2 84% 4.9%; --border: 214.3 31.8% 91.4%; --input: 214.3 31.8% 91.4%; --primary: 221.2 83.2% 53.3%; --primary-foreground: 210 40% 98%; --secondary: 210 40% 96.1%; --secondary-foreground: 222.2 47.4% 11.2%; --accent: 210 40% 96.1%; --accent-foreground: 222.2 47.4% 11.2%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 210 40% 98%; --ring: 221.2 83.2% 53.3%; --radius: ; } .dark .theme-blue { --background: 222.2 84% 4.9%; --foreground: 210 40% 98%; --muted: 217.2 32.6% 17.5%; --muted-foreground: 215 20.2% 65.1%; --popover: 222.2 84% 4.9%; --popover-foreground: 210 40% 98%; --card: 222.2 84% 4.9%; --card-foreground: 210 40% 98%; --border: 217.2 32.6% 17.5%; --input: 217.2 32.6% 17.5%; --primary: 217.2 91.2% 59.8%; --primary-foreground: 222.2 47.4% 11.2%; --secondary: 217.2 32.6% 17.5%; --secondary-foreground: 210 40% 98%; --accent: 217.2 32.6% 17.5%; --accent-foreground: 210 40% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 210 40% 98%; --ring: 224.3 76.3% 48%; } .theme-yellow { --background: 0 0% 100%; --foreground: 20 14.3% 4.1%; --muted: 60 4.8% 95.9%; --muted-foreground: 25 5.3% 44.7%; --popover: 0 0% 100%; --popover-foreground: 20 14.3% 4.1%; --card: 0 0% 100%; --card-foreground: 20 14.3% 4.1%; --border: 20 5.9% 90%; --input: 20 5.9% 90%; --primary: 47.9 95.8% 53.1%; --primary-foreground: 26 83.3% 14.1%; --secondary: 60 4.8% 95.9%; --secondary-foreground: 24 9.8% 10%; --accent: 60 4.8% 95.9%; --accent-foreground: 24 9.8% 10%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 60 9.1% 97.8%; --ring: 20 14.3% 4.1%; --radius: 0.95rem; } .dark .theme-yellow { --background: 20 14.3% 4.1%; --foreground: 60 9.1% 97.8%; --muted: 12 6.5% 15.1%; --muted-foreground: 24 5.4% 63.9%; --popover: 20 14.3% 4.1%; --popover-foreground: 60 9.1% 97.8%; --card: 20 14.3% 4.1%; --card-foreground: 60 9.1% 97.8%; --border: 12 6.5% 15.1%; --input: 12 6.5% 15.1%; --primary: 47.9 95.8% 53.1%; --primary-foreground: 26 83.3% 14.1%; --secondary: 12 6.5% 15.1%; --secondary-foreground: 60 9.1% 97.8%; --accent: 12 6.5% 15.1%; --accent-foreground: 60 9.1% 97.8%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 60 9.1% 97.8%; --ring: 35.5 91.7% 32.9%; } .theme-violet { --background: 0 0% 100%; --foreground: 224 71.4% 4.1%; --muted: 220 14.3% 95.9%; --muted-foreground: 220 8.9% 46.1%; --popover: 0 0% 100%; --popover-foreground: 224 71.4% 4.1%; --card: 0 0% 100%; --card-foreground: 224 71.4% 4.1%; --border: 220 13% 91%; --input: 220 13% 91%; --primary: 262.1 83.3% 57.8%; --primary-foreground: 210 20% 98%; --secondary: 220 14.3% 95.9%; --secondary-foreground: 220.9 39.3% 11%; --accent: 220 14.3% 95.9%; --accent-foreground: 220.9 39.3% 11%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 210 20% 98%; --ring: 262.1 83.3% 57.8%; --radius: ; } .dark .theme-violet { --background: 224 71.4% 4.1%; --foreground: 210 20% 98%; --muted: 215 27.9% 16.9%; --muted-foreground: 217.9 10.6% 64.9%; --popover: 224 71.4% 4.1%; --popover-foreground: 210 20% 98%; --card: 224 71.4% 4.1%; --card-foreground: 210 20% 98%; --border: 215 27.9% 16.9%; --input: 215 27.9% 16.9%; --primary: 263.4 70% 50.4%; --primary-foreground: 210 20% 98%; --secondary: 215 27.9% 16.9%; --secondary-foreground: 210 20% 98%; --accent: 215 27.9% 16.9%; --accent-foreground: 210 20% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 210 20% 98%; --ring: 263.4 70% 50.4%; }
shadcn-ui/ui/apps/www/public/registry/themes.css
{ "file_path": "shadcn-ui/ui/apps/www/public/registry/themes.css", "repo_id": "shadcn-ui/ui", "token_count": 6873 }
117
"use client" import { TrendingDown, TrendingUp } from "lucide-react" import { Area, AreaChart, CartesianGrid, XAxis } from "recharts" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/registry/default/ui/card" import { ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartTooltip, ChartTooltipContent, } from "@/registry/default/ui/chart" export const description = "An area chart with icons" const chartData = [ { month: "January", desktop: 186, mobile: 80 }, { month: "February", desktop: 305, mobile: 200 }, { month: "March", desktop: 237, mobile: 120 }, { month: "April", desktop: 73, mobile: 190 }, { month: "May", desktop: 209, mobile: 130 }, { month: "June", desktop: 214, mobile: 140 }, ] const chartConfig = { desktop: { label: "Desktop", color: "hsl(var(--chart-1))", icon: TrendingDown, }, mobile: { label: "Mobile", color: "hsl(var(--chart-2))", icon: TrendingUp, }, } satisfies ChartConfig export default function Component() { return ( <Card> <CardHeader> <CardTitle>Area Chart - Icons</CardTitle> <CardDescription> Showing total visitors for the last 6 months </CardDescription> </CardHeader> <CardContent> <ChartContainer config={chartConfig}> <AreaChart accessibilityLayer data={chartData} margin={{ left: 12, right: 12, }} > <CartesianGrid vertical={false} /> <XAxis dataKey="month" tickLine={false} axisLine={false} tickMargin={8} tickFormatter={(value) => value.slice(0, 3)} /> <ChartTooltip cursor={false} content={<ChartTooltipContent indicator="line" />} /> <Area dataKey="mobile" type="natural" fill="var(--color-mobile)" fillOpacity={0.4} stroke="var(--color-mobile)" stackId="a" /> <Area dataKey="desktop" type="natural" fill="var(--color-desktop)" fillOpacity={0.4} stroke="var(--color-desktop)" stackId="a" /> <ChartLegend content={<ChartLegendContent />} /> </AreaChart> </ChartContainer> </CardContent> <CardFooter> <div className="flex w-full items-start gap-2 text-sm"> <div className="grid gap-2"> <div className="flex items-center gap-2 font-medium leading-none"> Trending up by 5.2% this month <TrendingUp className="h-4 w-4" /> </div> <div className="flex items-center gap-2 leading-none text-muted-foreground"> January - June 2024 </div> </div> </div> </CardFooter> </Card> ) }
shadcn-ui/ui/apps/www/registry/default/block/chart-area-icons.tsx
{ "file_path": "shadcn-ui/ui/apps/www/registry/default/block/chart-area-icons.tsx", "repo_id": "shadcn-ui/ui", "token_count": 1466 }
118
"use client" import { TrendingUp } from "lucide-react" import { LabelList, Pie, PieChart } from "recharts" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/registry/default/ui/card" import { ChartConfig, ChartContainer, ChartTooltip, ChartTooltipContent, } from "@/registry/default/ui/chart" export const description = "A pie chart with a label list" const chartData = [ { browser: "chrome", visitors: 275, fill: "var(--color-chrome)" }, { browser: "safari", visitors: 200, fill: "var(--color-safari)" }, { browser: "firefox", visitors: 187, fill: "var(--color-firefox)" }, { browser: "edge", visitors: 173, fill: "var(--color-edge)" }, { browser: "other", visitors: 90, fill: "var(--color-other)" }, ] const chartConfig = { visitors: { label: "Visitors", }, chrome: { label: "Chrome", color: "hsl(var(--chart-1))", }, safari: { label: "Safari", color: "hsl(var(--chart-2))", }, firefox: { label: "Firefox", color: "hsl(var(--chart-3))", }, edge: { label: "Edge", color: "hsl(var(--chart-4))", }, other: { label: "Other", color: "hsl(var(--chart-5))", }, } satisfies ChartConfig export default function Component() { return ( <Card className="flex flex-col"> <CardHeader className="items-center pb-0"> <CardTitle>Pie Chart - Label List</CardTitle> <CardDescription>January - June 2024</CardDescription> </CardHeader> <CardContent className="flex-1 pb-0"> <ChartContainer config={chartConfig} className="mx-auto aspect-square max-h-[250px]" > <PieChart> <ChartTooltip content={<ChartTooltipContent nameKey="visitors" hideLabel />} /> <Pie data={chartData} dataKey="visitors"> <LabelList dataKey="browser" className="fill-background" stroke="none" fontSize={12} formatter={(value: keyof typeof chartConfig) => chartConfig[value]?.label } /> </Pie> </PieChart> </ChartContainer> </CardContent> <CardFooter className="flex-col gap-2 text-sm"> <div className="flex items-center gap-2 font-medium leading-none"> Trending up by 5.2% this month <TrendingUp className="h-4 w-4" /> </div> <div className="leading-none text-muted-foreground"> Showing total visitors for the last 6 months </div> </CardFooter> </Card> ) }
shadcn-ui/ui/apps/www/registry/default/block/chart-pie-label-list.tsx
{ "file_path": "shadcn-ui/ui/apps/www/registry/default/block/chart-pie-label-list.tsx", "repo_id": "shadcn-ui/ui", "token_count": 1171 }
119
"use client" import Link from "next/link" import { ArrowUpRight } from "lucide-react" import { Badge } from "@/registry/default/ui/badge" import { Button } from "@/registry/default/ui/button" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/registry/default/ui/card" import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@/registry/default/ui/table" export default function Component() { return ( <Card className="xl:col-span-2" x-chunk="dashboard-01-chunk-4"> <CardHeader className="flex flex-row items-center"> <div className="grid gap-2"> <CardTitle>Transactions</CardTitle> <CardDescription> Recent transactions from your store. </CardDescription> </div> <Button asChild size="sm" className="ml-auto gap-1"> <Link href="#"> View All <ArrowUpRight className="h-4 w-4" /> </Link> </Button> </CardHeader> <CardContent> <Table> <TableHeader> <TableRow> <TableHead>Customer</TableHead> <TableHead className="hidden xl:table-column">Type</TableHead> <TableHead className="hidden xl:table-column">Status</TableHead> <TableHead className="hidden xl:table-column">Date</TableHead> <TableHead className="text-right">Amount</TableHead> </TableRow> </TableHeader> <TableBody> <TableRow> <TableCell> <div className="font-medium">Liam Johnson</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden xl:table-column">Sale</TableCell> <TableCell className="hidden xl:table-column"> <Badge className="text-xs" variant="outline"> Approved </Badge> </TableCell> <TableCell className="hidden md:table-cell lg:hidden xl:table-column"> 2023-06-23 </TableCell> <TableCell className="text-right">$250.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Olivia Smith</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden xl:table-column">Refund</TableCell> <TableCell className="hidden xl:table-column"> <Badge className="text-xs" variant="outline"> Declined </Badge> </TableCell> <TableCell className="hidden md:table-cell lg:hidden xl:table-column"> 2023-06-24 </TableCell> <TableCell className="text-right">$150.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Noah Williams</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden xl:table-column"> Subscription </TableCell> <TableCell className="hidden xl:table-column"> <Badge className="text-xs" variant="outline"> Approved </Badge> </TableCell> <TableCell className="hidden md:table-cell lg:hidden xl:table-column"> 2023-06-25 </TableCell> <TableCell className="text-right">$350.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Emma Brown</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden xl:table-column">Sale</TableCell> <TableCell className="hidden xl:table-column"> <Badge className="text-xs" variant="outline"> Approved </Badge> </TableCell> <TableCell className="hidden md:table-cell lg:hidden xl:table-column"> 2023-06-26 </TableCell> <TableCell className="text-right">$450.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Liam Johnson</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden xl:table-column">Sale</TableCell> <TableCell className="hidden xl:table-column"> <Badge className="text-xs" variant="outline"> Approved </Badge> </TableCell> <TableCell className="hidden md:table-cell lg:hidden xl:table-column"> 2023-06-27 </TableCell> <TableCell className="text-right">$550.00</TableCell> </TableRow> </TableBody> </Table> </CardContent> </Card> ) }
shadcn-ui/ui/apps/www/registry/default/block/dashboard-01-chunk-4.tsx
{ "file_path": "shadcn-ui/ui/apps/www/registry/default/block/dashboard-01-chunk-4.tsx", "repo_id": "shadcn-ui/ui", "token_count": 2945 }
120
"use client" import { Badge } from "@/registry/default/ui/badge" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/registry/default/ui/card" import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@/registry/default/ui/table" export default function Component() { return ( <Card x-chunk="dashboard-05-chunk-3"> <CardHeader className="px-7"> <CardTitle>Orders</CardTitle> <CardDescription>Recent orders from your store.</CardDescription> </CardHeader> <CardContent> <Table> <TableHeader> <TableRow> <TableHead>Customer</TableHead> <TableHead className="hidden sm:table-cell">Type</TableHead> <TableHead className="hidden sm:table-cell">Status</TableHead> <TableHead className="hidden md:table-cell">Date</TableHead> <TableHead className="text-right">Amount</TableHead> </TableRow> </TableHeader> <TableBody> <TableRow className="bg-accent"> <TableCell> <div className="font-medium">Liam Johnson</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden sm:table-cell">Sale</TableCell> <TableCell className="hidden sm:table-cell"> <Badge className="text-xs" variant="secondary"> Fulfilled </Badge> </TableCell> <TableCell className="hidden md:table-cell">2023-06-23</TableCell> <TableCell className="text-right">$250.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Olivia Smith</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden sm:table-cell">Refund</TableCell> <TableCell className="hidden sm:table-cell"> <Badge className="text-xs" variant="outline"> Declined </Badge> </TableCell> <TableCell className="hidden md:table-cell">2023-06-24</TableCell> <TableCell className="text-right">$150.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Noah Williams</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden sm:table-cell"> Subscription </TableCell> <TableCell className="hidden sm:table-cell"> <Badge className="text-xs" variant="secondary"> Fulfilled </Badge> </TableCell> <TableCell className="hidden md:table-cell">2023-06-25</TableCell> <TableCell className="text-right">$350.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Emma Brown</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden sm:table-cell">Sale</TableCell> <TableCell className="hidden sm:table-cell"> <Badge className="text-xs" variant="secondary"> Fulfilled </Badge> </TableCell> <TableCell className="hidden md:table-cell">2023-06-26</TableCell> <TableCell className="text-right">$450.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Liam Johnson</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden sm:table-cell">Sale</TableCell> <TableCell className="hidden sm:table-cell"> <Badge className="text-xs" variant="secondary"> Fulfilled </Badge> </TableCell> <TableCell className="hidden md:table-cell">2023-06-23</TableCell> <TableCell className="text-right">$250.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Liam Johnson</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden sm:table-cell">Sale</TableCell> <TableCell className="hidden sm:table-cell"> <Badge className="text-xs" variant="secondary"> Fulfilled </Badge> </TableCell> <TableCell className="hidden md:table-cell">2023-06-23</TableCell> <TableCell className="text-right">$250.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Olivia Smith</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden sm:table-cell">Refund</TableCell> <TableCell className="hidden sm:table-cell"> <Badge className="text-xs" variant="outline"> Declined </Badge> </TableCell> <TableCell className="hidden md:table-cell">2023-06-24</TableCell> <TableCell className="text-right">$150.00</TableCell> </TableRow> <TableRow> <TableCell> <div className="font-medium">Emma Brown</div> <div className="hidden text-sm text-muted-foreground md:inline"> [email protected] </div> </TableCell> <TableCell className="hidden sm:table-cell">Sale</TableCell> <TableCell className="hidden sm:table-cell"> <Badge className="text-xs" variant="secondary"> Fulfilled </Badge> </TableCell> <TableCell className="hidden md:table-cell">2023-06-26</TableCell> <TableCell className="text-right">$450.00</TableCell> </TableRow> </TableBody> </Table> </CardContent> </Card> ) }
shadcn-ui/ui/apps/www/registry/default/block/dashboard-05-chunk-3.tsx
{ "file_path": "shadcn-ui/ui/apps/www/registry/default/block/dashboard-05-chunk-3.tsx", "repo_id": "shadcn-ui/ui", "token_count": 3708 }
121
import Link from "next/link" import { MoreHorizontal, PlusSquare, type LucideIcon } from "lucide-react" import { cn } from "@/registry/default/lib/utils" import { Button } from "@/registry/default/ui/button" import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, } from "@/registry/default/ui/dropdown-menu" export function NavProjects({ projects, className, }: { projects: { name: string url: string icon: LucideIcon }[] } & React.ComponentProps<"ul">) { return ( <ul className={cn("grid gap-0.5", className)}> {projects.map((item) => ( <li key={item.name} className="has-[[data-state=open]]:bg-accent has-[[data-state=open]]:text-accent-foreground group relative rounded-md hover:bg-accent hover:text-accent-foreground" > <Link href={item.url} className="flex h-7 items-center gap-2.5 overflow-hidden rounded-md px-1.5 text-xs outline-none ring-ring transition-all hover:bg-accent hover:text-accent-foreground focus-visible:ring-2" > <item.icon className="h-4 w-4 shrink-0 translate-x-0.5 text-muted-foreground" /> <div className="line-clamp-1 grow overflow-hidden pr-6 font-medium"> {item.name} </div> </Link> <DropdownMenu> <DropdownMenuTrigger asChild> <Button variant="ghost" className="peer absolute right-1 top-0.5 h-6 w-6 shrink-0 rounded-md bg-accent p-0 text-accent-foreground opacity-0 ring-ring transition-all focus-visible:ring-2 group-focus-within:opacity-100 group-hover:opacity-100 data-[state=open]:bg-accent data-[state=open]:opacity-100" > <MoreHorizontal className="h-4 w-4 text-muted-foreground" /> <span className="sr-only">Toggle</span> </Button> </DropdownMenuTrigger> <DropdownMenuContent side="right" align="start" sideOffset={20}> <DropdownMenuItem>Share</DropdownMenuItem> <DropdownMenuItem>Rename</DropdownMenuItem> <DropdownMenuSeparator /> <DropdownMenuItem>Archive</DropdownMenuItem> </DropdownMenuContent> </DropdownMenu> </li> ))} <li> <button className="flex h-7 w-full items-center gap-2.5 overflow-hidden rounded-md px-1.5 text-left text-xs ring-ring transition-all hover:bg-muted focus-visible:outline-none focus-visible:ring-2"> <PlusSquare className="h-4 w-4 shrink-0 translate-x-0.5 text-muted-foreground" /> <div className="line-clamp-1 overflow-hidden font-medium text-muted-foreground"> Add Project </div> </button> </li> </ul> ) }
shadcn-ui/ui/apps/www/registry/default/block/sidebar-01/components/nav-projects.tsx
{ "file_path": "shadcn-ui/ui/apps/www/registry/default/block/sidebar-01/components/nav-projects.tsx", "repo_id": "shadcn-ui/ui", "token_count": 1277 }
122
import { Badge } from "@/registry/default/ui/badge" export default function BadgeOutline() { return <Badge variant="outline">Outline</Badge> }
shadcn-ui/ui/apps/www/registry/default/example/badge-outline.tsx
{ "file_path": "shadcn-ui/ui/apps/www/registry/default/example/badge-outline.tsx", "repo_id": "shadcn-ui/ui", "token_count": 47 }
123
import { Button } from "@/registry/default/ui/button" export default function ButtonSecondary() { return <Button variant="secondary">Secondary</Button> }
shadcn-ui/ui/apps/www/registry/default/example/button-secondary.tsx
{ "file_path": "shadcn-ui/ui/apps/www/registry/default/example/button-secondary.tsx", "repo_id": "shadcn-ui/ui", "token_count": 43 }
124
"use client" import * as React from "react" import { Button } from "@/registry/default/ui/button" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/registry/default/ui/card" import { Input } from "@/registry/default/ui/input" import { Label } from "@/registry/default/ui/label" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/registry/default/ui/select" import { Textarea } from "@/registry/default/ui/textarea" export function CardsReportIssue() { const id = React.useId() return ( <Card> <CardHeader> <CardTitle>Report an issue</CardTitle> <CardDescription> What area are you having problems with? </CardDescription> </CardHeader> <CardContent className="grid gap-6"> <div className="grid gap-4 sm:grid-cols-2"> <div className="grid gap-2"> <Label htmlFor={`area-${id}`}>Area</Label> <Select defaultValue="billing"> <SelectTrigger id={`area-${id}`} aria-label="Area"> <SelectValue placeholder="Select" /> </SelectTrigger> <SelectContent> <SelectItem value="team">Team</SelectItem> <SelectItem value="billing">Billing</SelectItem> <SelectItem value="account">Account</SelectItem> <SelectItem value="deployments">Deployments</SelectItem> <SelectItem value="support">Support</SelectItem> </SelectContent> </Select> </div> <div className="grid gap-2"> <Label htmlFor={`security-level-${id}`}>Security Level</Label> <Select defaultValue="2"> <SelectTrigger id={`security-level-${id}`} className="line-clamp-1 w-full truncate" aria-label="Security Level" > <SelectValue placeholder="Select level" /> </SelectTrigger> <SelectContent> <SelectItem value="1">Severity 1 (Highest)</SelectItem> <SelectItem value="2">Severity 2</SelectItem> <SelectItem value="3">Severity 3</SelectItem> <SelectItem value="4">Severity 4 (Lowest)</SelectItem> </SelectContent> </Select> </div> </div> <div className="grid gap-2"> <Label htmlFor={`subject-${id}`}>Subject</Label> <Input id={`subject-${id}`} placeholder="I need help with..." /> </div> <div className="grid gap-2"> <Label htmlFor={`description-${id}`}>Description</Label> <Textarea id={`description-${id}`} placeholder="Please include all information relevant to your issue." /> </div> </CardContent> <CardFooter className="justify-between space-x-2"> <Button variant="ghost">Cancel</Button> <Button>Submit</Button> </CardFooter> </Card> ) }
shadcn-ui/ui/apps/www/registry/default/example/cards/report-issue.tsx
{ "file_path": "shadcn-ui/ui/apps/www/registry/default/example/cards/report-issue.tsx", "repo_id": "shadcn-ui/ui", "token_count": 1421 }
125