text
stringlengths
21
253k
id
stringlengths
25
123
metadata
dict
__index_level_0__
int64
0
181
import { z } from "zod" export const blockChunkSchema = z.object({ name: z.string(), description: z.string(), component: z.any(), file: z.string(), code: z.string().optional(), container: z .object({ className: z.string().nullish(), }) .optional(), }) export const registryItemTypeSchema ...
shadcn-ui/ui/apps/www/registry/schema.ts
{ "file_path": "shadcn-ui/ui/apps/www/registry/schema.ts", "repo_id": "shadcn-ui/ui", "token_count": 839 }
118
import { existsSync, promises as fs } from "fs" import path from "path" import { Config, getConfig } from "@/src/utils/get-config" import { handleError } from "@/src/utils/handle-error" import { logger } from "@/src/utils/logger" import { fetchTree, getItemTargetPath, getRegistryBaseColor, getRegistryIndex, } f...
shadcn-ui/ui/packages/cli/src/commands/diff.ts
{ "file_path": "shadcn-ui/ui/packages/cli/src/commands/diff.ts", "repo_id": "shadcn-ui/ui", "token_count": 2171 }
119
import { Transformer } from "@/src/utils/transformers" export const transformImport: Transformer = async ({ sourceFile, config }) => { const importDeclarations = sourceFile.getImportDeclarations() for (const importDeclaration of importDeclarations) { const moduleSpecifier = importDeclaration.getModuleSpecifie...
shadcn-ui/ui/packages/cli/src/utils/transformers/transform-import.ts
{ "file_path": "shadcn-ui/ui/packages/cli/src/utils/transformers/transform-import.ts", "repo_id": "shadcn-ui/ui", "token_count": 497 }
120
import Image from 'next/image' import { Inter } from 'next/font/google' const inter = Inter({ subsets: ['latin'] }) export default function Home() { return ( <main className={`flex min-h-screen flex-col items-center justify-between p-24 ${inter.className}`} > <div className="z-10 max-w-5xl w-ful...
shadcn-ui/ui/packages/cli/test/fixtures/next-pages/pages/index.tsx
{ "file_path": "shadcn-ui/ui/packages/cli/test/fixtures/next-pages/pages/index.tsx", "repo_id": "shadcn-ui/ui", "token_count": 2808 }
121
import { expect, test } from "vitest" import { transform } from "../../src/utils/transformers" test("transform rsc", async () => { expect( await transform({ filename: "test.ts", raw: `import * as React from "react" import { Foo } from "bar" `, config: { tsx: true, rsc: true...
shadcn-ui/ui/packages/cli/test/utils/transform-rsc.test.ts
{ "file_path": "shadcn-ui/ui/packages/cli/test/utils/transform-rsc.test.ts", "repo_id": "shadcn-ui/ui", "token_count": 524 }
122
import path from "path" import { initOptionsSchema } from "@/src/commands/init" import { getPackageManager } from "@/src/utils/get-package-manager" import { highlighter } from "@/src/utils/highlighter" import { logger } from "@/src/utils/logger" import { spinner } from "@/src/utils/spinner" import { execa } from "execa...
shadcn-ui/ui/packages/shadcn/src/utils/create-project.ts
{ "file_path": "shadcn-ui/ui/packages/shadcn/src/utils/create-project.ts", "repo_id": "shadcn-ui/ui", "token_count": 1185 }
123
import '@/styles/globals.css' import type { AppProps } from 'next/app' export default function App({ Component, pageProps }: AppProps) { return <Component {...pageProps} /> }
shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/next-pages-src/src/pages/_app.tsx
{ "file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/next-pages-src/src/pages/_app.tsx", "repo_id": "shadcn-ui/ui", "token_count": 60 }
124
import type { ActionFunctionArgs, LoaderFunctionArgs, MetaFunction, } from "@remix-run/node"; import { json, redirect } from "@remix-run/node"; import { Form, Link, useActionData, useSearchParams } from "@remix-run/react"; import { useEffect, useRef } from "react"; import { createUser, getUserByEmail } from "~/m...
shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix-indie-stack/app/routes/join.tsx
{ "file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix-indie-stack/app/routes/join.tsx", "repo_id": "shadcn-ui/ui", "token_count": 2489 }
125
import { faker } from "@faker-js/faker"; declare global { // eslint-disable-next-line @typescript-eslint/no-namespace namespace Cypress { interface Chainable { /** * Logs in with a random user. Yields the user and adds an alias to the user * * @returns {typeof login} * @member...
shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix-indie-stack/cypress/support/commands.ts
{ "file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix-indie-stack/cypress/support/commands.ts", "repo_id": "shadcn-ui/ui", "token_count": 1107 }
126
import { useState } from 'react' import reactLogo from './assets/react.svg' import viteLogo from '/vite.svg' import './App.css' function App() { const [count, setCount] = useState(0) return ( <> <div> <a href="https://vitejs.dev" target="_blank"> <img src={viteLogo} className="logo" al...
shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/vite/src/App.tsx
{ "file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/vite/src/App.tsx", "repo_id": "shadcn-ui/ui", "token_count": 434 }
127
import { describe, expect, test } from "vitest" import { registryResolveItemsTree } from "../../../src/utils/registry" describe("registryResolveItemTree", () => { test("should resolve items tree", async () => { expect( await registryResolveItemsTree(["button"], { style: "new-york", tailwin...
shadcn-ui/ui/packages/shadcn/test/utils/schema/registry-resolve-items-tree.test.ts
{ "file_path": "shadcn-ui/ui/packages/shadcn/test/utils/schema/registry-resolve-items-tree.test.ts", "repo_id": "shadcn-ui/ui", "token_count": 386 }
128
module.exports = { plugins: { tailwindcss: {}, autoprefixer: {}, }, }
shadcn-ui/ui/postcss.config.cjs
{ "file_path": "shadcn-ui/ui/postcss.config.cjs", "repo_id": "shadcn-ui/ui", "token_count": 38 }
129
import Link from "next/link" import { siteConfig } from "@/config/site" import { buttonVariants } from "@/components/ui/button" import { Icons } from "@/components/icons" import { MainNav } from "@/components/main-nav" import { ThemeToggle } from "@/components/theme-toggle" export function SiteHeader() { return ( ...
shadcn-ui/ui/templates/next-template/components/site-header.tsx
{ "file_path": "shadcn-ui/ui/templates/next-template/components/site-header.tsx", "repo_id": "shadcn-ui/ui", "token_count": 909 }
130
MIT License Copyright (c) 2024 Easy UI Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribut...
DarkInventor/easy-ui/LICENSE
{ "file_path": "DarkInventor/easy-ui/LICENSE", "repo_id": "DarkInventor/easy-ui", "token_count": 273 }
0
import React from "react" function IntroductionPage() { return ( <div className="flex flex-wrap justify-center gap-4 pb-10 ml-0 lg:ml-10"> <div className="w-full p-4 space-y-4 mt-5"> <h2 className="text-2xl font-bold">Introduction</h2> <p className="text-lg text-balance text-lg text-muted-for...
DarkInventor/easy-ui/app/(docs)/introduction/page.tsx
{ "file_path": "DarkInventor/easy-ui/app/(docs)/introduction/page.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 1006 }
1
// import { Button } from "@/components/ui/button" // export default function ShareButtons({ post }) { // const shareUrl = `https://easyui.pro/${post._raw.flattenedPath}` // return ( // <div className="mt-8"> // <h3>Share this post</h3> // <Button onClick={() => window.open(`https://tw...
DarkInventor/easy-ui/app/posts/[slug]/ShareButtons.tsx
{ "file_path": "DarkInventor/easy-ui/app/posts/[slug]/ShareButtons.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 567 }
2
"use client" import React, { useEffect, useState } from "react" interface GlitchTextProps { text: string textSize: string className?: string fontWeight?: React.CSSProperties["fontWeight"] } export default function GlitchText({ text, textSize, className = "", fontWeight = "normal", }: GlitchTextProps)...
DarkInventor/easy-ui/components/easyui/glitch-text.tsx
{ "file_path": "DarkInventor/easy-ui/components/easyui/glitch-text.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 1267 }
3
import { cn } from "@/lib/utils"; interface MarqueeProps { className?: string; reverse?: boolean; pauseOnHover?: boolean; children?: React.ReactNode; vertical?: boolean; repeat?: number; [key: string]: any; } export default function Marquee({ className, reverse, pauseOnHover = false, children, ...
DarkInventor/easy-ui/components/magicui/marquee.tsx
{ "file_path": "DarkInventor/easy-ui/components/magicui/marquee.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 576 }
4
import { cva, type VariantProps } from "class-variance-authority"; import * as React from "react"; import { cn } from "@/lib/utils"; const badgeVariants = cva( "inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring...
DarkInventor/easy-ui/components/ui/badge.tsx
{ "file_path": "DarkInventor/easy-ui/components/ui/badge.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 473 }
5
// import { defineDocumentType, makeSource } from 'contentlayer/source-files' // const Post = defineDocumentType(() => ({ // name: 'Post', // filePathPattern: `**/*.mdx`, // contentType: 'mdx', // fields: { // title: { // type: 'string', // description: 'The title of the post', // require...
DarkInventor/easy-ui/contentlayer.config.ts
{ "file_path": "DarkInventor/easy-ui/contentlayer.config.ts", "repo_id": "DarkInventor/easy-ui", "token_count": 535 }
6
"use client"; import { cn } from "@/lib/utils"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import type { TabsProps } from "@radix-ui/react-tabs"; import { SaasStarterkitHighlight } from "@/app/(app)/_components/saas-startkit-highlight"; import React from "react"; const highlights...
alifarooq9/rapidlaunch/apps/www/src/app/(app)/_components/highlight-tabs.tsx
{ "file_path": "alifarooq9/rapidlaunch/apps/www/src/app/(app)/_components/highlight-tabs.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 1833 }
7
"use client"; import { Button } from "@/components/ui/button"; import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import { Form, FormControl, FormDescription, FormField...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/feedback/_components/create-feedback-form.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/feedback/_components/create-feedback-form.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 5206 }
8
/* eslint-disable @typescript-eslint/no-unsafe-call */ /* eslint-disable @typescript-eslint/no-unsafe-member-access */ "use client"; import { type ColumnDef } from "@tanstack/react-table"; import { type membersToOrganizations } from "@/server/db/schema"; import { Badge } from "@/components/ui/badge"; import { ColumnDr...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/members/_components/columns.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/members/_components/columns.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 978 }
9
import { AppPageShell } from "@/app/(app)/_components/page-shell"; import { orgSettingsPageConfig } from "@/app/(app)/(user)/org/settings/_constants/page-config"; import { OrgNameForm } from "@/app/(app)/(user)/org/settings/_components/org-name-form"; import { DeleteYourOrgForm } from "@/app/(app)/(user)/org/settings/_...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/settings/page.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/settings/page.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 435 }
10
import { AppHeader } from "@/app/(app)/_components/app-header"; import { Sidebar, SidebarLoading } from "@/app/(app)/_components/sidebar"; import { Suspense } from "react"; type AppLayoutProps = { children: React.ReactNode; sideNavRemoveIds?: string[]; sideNavIncludedIds?: string[]; showOrgSwitcher?: b...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/_components/layout-shell.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/_components/layout-shell.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 897 }
11
/** * This file contains the page configuration for the users page. * This is used to generate the page title and description. */ export const adminDashConfig = { title: "Admin Dashboard", description: "View insights and analytics to monitor your app's performance and user behavior.", } as const;
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/dashboard/_constants/page-config.ts
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/dashboard/_constants/page-config.ts", "repo_id": "alifarooq9/rapidlaunch", "token_count": 84 }
12
import { AppPageLoading } from "@/app/(app)/_components/page-loading"; import { organizationsPageConfig } from "@/app/(app)/admin/organizations/_constants/page-config"; import { Skeleton } from "@/components/ui/skeleton"; export default function OrganizationsPageLoading() { return ( <AppPageLoading ...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/organizations/loading.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/organizations/loading.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 190 }
13
type BackgroundProps = { children: React.ReactNode; }; export function Background({ children }: BackgroundProps) { return ( <> <svg className="absolute inset-0 -z-10 h-full w-full stroke-muted-foreground/25 [mask-image:radial-gradient(100%_130%_at_top,white,transparent)]" ...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(web)/_components/background.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(web)/_components/background.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 725 }
14
import Features from "@/app/(web)/_components/features"; import { WebPageHeader, WebPageWrapper, } from "@/app/(web)/_components/general-components"; import { Promotion } from "@/app/(web)/_components/promotion"; import { Testimonials } from "@/app/(web)/_components/testimonials"; import { buttonVariants } from...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(web)/page.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(web)/page.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 1804 }
15
import { AuthForm } from "@/app/auth/_components/auth-form"; import { signupPageConfig } from "@/app/auth/signup/_constants/page-config"; import { type Metadata } from "next"; export const metadata: Metadata = { title: signupPageConfig.title, description: signupPageConfig.description, }; export default functi...
alifarooq9/rapidlaunch/starterkits/saas/src/app/auth/signup/page.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/auth/signup/page.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 120 }
16
import { WaitlistForm } from "@/app/waitlist/_components/waitlist-form"; import { waitlistPageConfig } from "@/app/waitlist/_constants/page-config"; import { Icons } from "@/components/ui/icons"; import { siteConfig } from "@/config/site"; import { type Metadata } from "next"; export const metadata: Metadata = { t...
alifarooq9/rapidlaunch/starterkits/saas/src/app/waitlist/page.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/waitlist/page.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 532 }
17
"use client"; import { Drawer as DrawerPrimitive } from "vaul"; import { cn } from "@/lib/utils"; import { forwardRef } from "react"; const Drawer = ({ shouldScaleBackground = true, ...props }: React.ComponentProps<typeof DrawerPrimitive.Root>) => ( <DrawerPrimitive.Root shouldScaleBackground={sh...
alifarooq9/rapidlaunch/starterkits/saas/src/components/ui/drawer.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/components/ui/drawer.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 1331 }
18
import * as React from "react"; export function useDebounce<T>(value: T, delay?: number): T { const [debouncedValue, setDebouncedValue] = React.useState<T>(value); React.useEffect(() => { const timer = setTimeout(() => setDebouncedValue(value), delay ?? 500); return () => { clearT...
alifarooq9/rapidlaunch/starterkits/saas/src/hooks/use-debounce.ts
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/hooks/use-debounce.ts", "repo_id": "alifarooq9/rapidlaunch", "token_count": 152 }
19
import { DrizzleAdapter } from "@auth/drizzle-adapter"; import { getServerSession, type DefaultSession, type NextAuthOptions, } from "next-auth"; import { type Adapter } from "next-auth/adapters"; import { db } from "@/server/db"; import { createTable, users } from "@/server/db/schema"; import { siteUrls }...
alifarooq9/rapidlaunch/starterkits/saas/src/server/auth.ts
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/server/auth.ts", "repo_id": "alifarooq9/rapidlaunch", "token_count": 2299 }
20
{ "extends": ["next/babel","next/core-web-vitals"] }
horizon-ui/shadcn-nextjs-boilerplate/.eslintrc
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/.eslintrc", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 24 }
21
import { getUser } from '@/utils/supabase/queries'; import { redirect } from 'next/navigation'; import { createClient } from '@/utils/supabase/server'; export default async function Dashboard() { const supabase = createClient(); const [user] = await Promise.all([getUser(supabase)]); if (!user) { return redi...
horizon-ui/shadcn-nextjs-boilerplate/app/page.tsx
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/app/page.tsx", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 128 }
22
'use client'; import { Button } from '../ui/button'; import Footer from '@/components/footer/FooterAuthDefault'; import { useTheme } from 'next-themes'; import { PropsWithChildren } from 'react'; import { FaChevronLeft } from 'react-icons/fa6'; import { HiBolt } from 'react-icons/hi2'; import { IoMoon, IoSunny } from ...
horizon-ui/shadcn-nextjs-boilerplate/components/auth/index.tsx
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/components/auth/index.tsx", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 1480 }
23
'use client'; import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'; import { Button } from '@/components/ui/button'; import { DropdownMenu, DropdownMenuContent, DropdownMenuTrigger } from '@/components/ui/dropdown-menu'; import { OpenContext, UserContext } from '@/contexts/layout'; import...
horizon-ui/shadcn-nextjs-boilerplate/components/navbar/NavbarLinksAdmin.tsx
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/components/navbar/NavbarLinksAdmin.tsx", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 2068 }
24
export type Json = | string | number | boolean | null | { [key: string]: Json | undefined } | Json[]; export interface Database { public: { Tables: { customers: { Row: { id: string; stripe_customer_id: string | null; }; Insert: { id: string;...
horizon-ui/shadcn-nextjs-boilerplate/types/types_db.ts
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/types/types_db.ts", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 7979 }
25
import { createServerClient } from "@supabase/ssr"; import { type NextRequest, NextResponse } from "next/server"; export const updateSession = async (request: NextRequest) => { // This `try/catch` block is only here for the interactive tutorial. // Feel free to remove once you have Supabase connected. try { ...
horizon-ui/shadcn-nextjs-boilerplate/utils/supabase/middleware.ts
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/utils/supabase/middleware.ts", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 736 }
26
/// <reference types="next" /> /// <reference types="next/image-types/global" /> // NOTE: This file should not be edited // see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
ixartz/SaaS-Boilerplate/next-env.d.ts
{ "file_path": "ixartz/SaaS-Boilerplate/next-env.d.ts", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 65 }
27
import { SignUp } from '@clerk/nextjs'; import { getTranslations } from 'next-intl/server'; import { getI18nPath } from '@/utils/Helpers'; export async function generateMetadata(props: { params: { locale: string } }) { const t = await getTranslations({ locale: props.params.locale, namespace: 'SignUp', });...
ixartz/SaaS-Boilerplate/src/app/[locale]/(auth)/(center)/sign-up/[[...sign-up]]/page.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/app/[locale]/(auth)/(center)/sign-up/[[...sign-up]]/page.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 199 }
28
'use client'; import { useLocale } from 'next-intl'; import { Button } from '@/components/ui/button'; import { DropdownMenu, DropdownMenuContent, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu'; import { usePathname, useRouter } from '@/libs/i18nNav...
ixartz/SaaS-Boilerplate/src/components/LocaleSwitcher.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/components/LocaleSwitcher.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 780 }
29
import { useTranslations } from 'next-intl'; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from '@/components/ui/tooltip'; export const ProtectFallback = (props: { trigger: React.ReactNode }) => { const t = useTranslations('ProtectFallback'); return ( <TooltipProvider delayDura...
ixartz/SaaS-Boilerplate/src/features/auth/ProtectFallback.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/features/auth/ProtectFallback.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 225 }
30
export const StickyBanner = (props: { children: React.ReactNode }) => ( <div className="sticky top-0 z-50 bg-primary p-4 text-center text-lg font-semibold text-primary-foreground [&_a:hover]:text-indigo-500 [&_a]:text-fuchsia-500"> {props.children} </div> );
ixartz/SaaS-Boilerplate/src/features/landing/StickyBanner.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/features/landing/StickyBanner.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 104 }
31
import { useTranslations } from 'next-intl'; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from '@/components/ui/accordion'; import { Section } from '@/features/landing/Section'; export const FAQ = () => { const t = useTranslations('FAQ'); return ( <Section> <Accordio...
ixartz/SaaS-Boilerplate/src/templates/FAQ.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/templates/FAQ.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 681 }
32
import { expect, test } from '@playwright/test'; test.describe('I18n', () => { test.describe('Language Switching', () => { test('should switch language from English to French using dropdown and verify text on the homepage', async ({ page }) => { await page.goto('/'); await expect(page.getByText('The...
ixartz/SaaS-Boilerplate/tests/e2e/I18n.e2e.ts
{ "file_path": "ixartz/SaaS-Boilerplate/tests/e2e/I18n.e2e.ts", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 330 }
33
import { eventHandler, setResponseHeader, defaultContentType } from 'h3'; import { renderToString, renderToStaticMarkup } from 'react-dom/server'; import { createElement } from 'react'; import Diff from '../../../lib/SvgPreview/Diff.tsx'; import iconNodes from '../../../data/iconNodes'; import createLucideIcon from 'lu...
lucide-icons/lucide/docs/.vitepress/api/gh-icon/diff/[...data].get.ts
{ "file_path": "lucide-icons/lucide/docs/.vitepress/api/gh-icon/diff/[...data].get.ts", "repo_id": "lucide-icons/lucide", "token_count": 458 }
34
import React from 'react'; import Backdrop from './Backdrop.tsx'; import { darkModeCss, Grid } from './index.tsx'; const SvgPreview = React.forwardRef< SVGSVGElement, { oldSrc: string; newSrc: string; } & React.SVGProps<SVGSVGElement> >(({ oldSrc, newSrc, children, ...props }, ref) => { return ( <s...
lucide-icons/lucide/docs/.vitepress/lib/SvgPreview/Diff.tsx
{ "file_path": "lucide-icons/lucide/docs/.vitepress/lib/SvgPreview/Diff.tsx", "repo_id": "lucide-icons/lucide", "token_count": 797 }
35
export type IconNode = [elementName: string, attrs: Record<string, string>][]; export type IconNodeWithKeys = [elementName: string, attrs: Record<string, string>, key: string][]; export interface IconMetaData { tags: string[]; categories: string[]; contributors: string[]; aliases?: string[]; } export type Ext...
lucide-icons/lucide/docs/.vitepress/theme/types.ts
{ "file_path": "lucide-icons/lucide/docs/.vitepress/theme/types.ts", "repo_id": "lucide-icons/lucide", "token_count": 358 }
36
import App from './App.js?raw' import styles from '../../../basics/examples/styles.css?raw' import IconCss from './icon.css?raw' const files = { 'icon.css': { code: IconCss, readOnly: false, active: true, }, 'App.js': { code: App, }, 'styles.css': { code:styles, hidden: true }, } e...
lucide-icons/lucide/docs/guide/advanced/examples/global-styling-css-example/files.ts
{ "file_path": "lucide-icons/lucide/docs/guide/advanced/examples/global-styling-css-example/files.ts", "repo_id": "lucide-icons/lucide", "token_count": 142 }
37
import App from './App.js?raw' import styles from '../styles.css?raw' const files = { 'App.js': { code: App, active: true, }, 'styles.css': { code:styles, hidden: true }, } export default files
lucide-icons/lucide/docs/guide/basics/examples/size-icon-example/files.ts
{ "file_path": "lucide-icons/lucide/docs/guide/basics/examples/size-icon-example/files.ts", "repo_id": "lucide-icons/lucide", "token_count": 90 }
38
import { getAllCategoryFiles } from '../.vitepress/lib/categories'; import iconMetaData from '../.vitepress/data/iconMetaData'; export default { async load() { return { categories: getAllCategoryFiles(), iconCategories: Object.fromEntries( Object.entries(iconMetaData).map(([name, { categories...
lucide-icons/lucide/docs/icons/categories.data.ts
{ "file_path": "lucide-icons/lucide/docs/icons/categories.data.ts", "repo_id": "lucide-icons/lucide", "token_count": 137 }
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="m3 8 4-4 4 4" /> <path d="M7 4v16" /> <path d="M20 8h-5" /> <path d="M15 10V6.5a2.5 2.5 0 0 1 5 0V10" ...
lucide-icons/lucide/icons/arrow-up-a-z.svg
{ "file_path": "lucide-icons/lucide/icons/arrow-up-a-z.svg", "repo_id": "lucide-icons/lucide", "token_count": 182 }
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="M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4" /> <path d="M8 8v1" /> <path d="M12 8v1" /> <path d="M16 8v1"...
lucide-icons/lucide/icons/boom-box.svg
{ "file_path": "lucide-icons/lucide/icons/boom-box.svg", "repo_id": "lucide-icons/lucide", "token_count": 224 }
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" > <rect x="8" y="8" width="8" height="8" rx="2" /> <path d="M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2" /> ...
lucide-icons/lucide/icons/bring-to-front.svg
{ "file_path": "lucide-icons/lucide/icons/bring-to-front.svg", "repo_id": "lucide-icons/lucide", "token_count": 202 }
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="M8 6v6" /> <path d="M15 6v6" /> <path d="M2 12h19.6" /> <path d="M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1....
lucide-icons/lucide/icons/bus.svg
{ "file_path": "lucide-icons/lucide/icons/bus.svg", "repo_id": "lucide-icons/lucide", "token_count": 268 }
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="m3 15 4-8 4 8" /> <path d="M4 13h6" /> <path d="M15 11h4.5a2 2 0 0 1 0 4H15V7h4a2 2 0 0 1 0 4" /> </svg>...
lucide-icons/lucide/icons/case-upper.svg
{ "file_path": "lucide-icons/lucide/icons/case-upper.svg", "repo_id": "lucide-icons/lucide", "token_count": 157 }
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="M12 16v5" /> <path d="M16 14v7" /> <path d="M20 10v11" /> <path d="m22 3-8.646 8.646a.5.5 0 0 1-.708 0...
lucide-icons/lucide/icons/chart-no-axes-combined.svg
{ "file_path": "lucide-icons/lucide/icons/chart-no-axes-combined.svg", "repo_id": "lucide-icons/lucide", "token_count": 206 }
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" > <rect x="2" y="6" width="20" height="8" rx="1" /> <path d="M17 14v7" /> <path d="M7 14v7" /> <path d="M17 3v3" ...
lucide-icons/lucide/icons/construction.svg
{ "file_path": "lucide-icons/lucide/icons/construction.svg", "repo_id": "lucide-icons/lucide", "token_count": 216 }
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" > <line x1="12" x2="18" y1="15" y2="15" /> <rect width="14" height="14" x="8" y="8" rx="2" ry="2" /> <path d="M4 16...
lucide-icons/lucide/icons/copy-minus.svg
{ "file_path": "lucide-icons/lucide/icons/copy-minus.svg", "repo_id": "lucide-icons/lucide", "token_count": 199 }
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" > <circle cx="12" cy="4" r="2" /> <path d="M10.2 3.2C5.5 4 2 8.1 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v...
lucide-icons/lucide/icons/dessert.svg
{ "file_path": "lucide-icons/lucide/icons/dessert.svg", "repo_id": "lucide-icons/lucide", "token_count": 229 }
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="M14 9c0 .6-.4 1-1 1H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9c.6 0 1 .4 1 1Z" /> <path d="M18 6h4" /> <path d="M...
lucide-icons/lucide/icons/drill.svg
{ "file_path": "lucide-icons/lucide/icons/drill.svg", "repo_id": "lucide-icons/lucide", "token_count": 309 }
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="M10 12.5 8 15l2 2.5" /> <path d="m14 12.5 2 2.5-2 2.5" /> <path d="M14 2v4a2 2 0 0 0 2 2h4" /> <path d...
lucide-icons/lucide/icons/file-code.svg
{ "file_path": "lucide-icons/lucide/icons/file-code.svg", "repo_id": "lucide-icons/lucide", "token_count": 202 }
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="14" cy="16" r="2" /> <circle cx="6" cy="18" r="2" /> <path d="M4 12.4V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2...
lucide-icons/lucide/icons/file-music.svg
{ "file_path": "lucide-icons/lucide/icons/file-music.svg", "repo_id": "lucide-icons/lucide", "token_count": 195 }
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" > <path d="M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" /> <path d="M14 2v4a2 2 0 0 0 2 2h4" /> <path d="M2 13v...
lucide-icons/lucide/icons/file-type-2.svg
{ "file_path": "lucide-icons/lucide/icons/file-type-2.svg", "repo_id": "lucide-icons/lucide", "token_count": 200 }
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="M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" /> <path d="M14 13.12c0 2.38 0 6.38-1 8.88" /> <path d="M17.2...
lucide-icons/lucide/icons/fingerprint.svg
{ "file_path": "lucide-icons/lucide/icons/fingerprint.svg", "repo_id": "lucide-icons/lucide", "token_count": 329 }
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="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" /> <line x1="4" x2="4" y1="22" y2="15" /> </svg...
lucide-icons/lucide/icons/flag.svg
{ "file_path": "lucide-icons/lucide/icons/flag.svg", "repo_id": "lucide-icons/lucide", "token_count": 168 }
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="M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 ...
lucide-icons/lucide/icons/footprints.svg
{ "file_path": "lucide-icons/lucide/icons/footprints.svg", "repo_id": "lucide-icons/lucide", "token_count": 292 }
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="m15 12-8.373 8.373a1 1 0 1 1-3-3L12 9" /> <path d="m18 15 4-4" /> <path d="m21.5 11.5-1.914-1.914A2 2 0 ...
lucide-icons/lucide/icons/hammer.svg
{ "file_path": "lucide-icons/lucide/icons/hammer.svg", "repo_id": "lucide-icons/lucide", "token_count": 247 }
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" > <path d="M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 ...
lucide-icons/lucide/icons/headset.svg
{ "file_path": "lucide-icons/lucide/icons/headset.svg", "repo_id": "lucide-icons/lucide", "token_count": 217 }
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="m11 16-5 5" /> <path d="M11 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6.5" /> <path d="M15.765...
lucide-icons/lucide/icons/image-play.svg
{ "file_path": "lucide-icons/lucide/icons/image-play.svg", "repo_id": "lucide-icons/lucide", "token_count": 230 }
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="M 20 4 A2 2 0 0 1 22 6" /> <path d="M 22 6 L 22 16.41" /> <path d="M 7 16 L 16 16" /> <path d="M 9.69 ...
lucide-icons/lucide/icons/keyboard-off.svg
{ "file_path": "lucide-icons/lucide/icons/keyboard-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 258 }
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="M8 20V8c0-2.2 1.8-4 4-4 1.5 0 2.8.8 3.5 2" /> <path d="M6 12h4" /> <path d="M14 12h2v8" /> <path d="M6...
lucide-icons/lucide/icons/ligature.svg
{ "file_path": "lucide-icons/lucide/icons/ligature.svg", "repo_id": "lucide-icons/lucide", "token_count": 185 }
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="M21 6H3" /> <path d="M7 12H3" /> <path d="M7 18H3" /> <path d="M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-...
lucide-icons/lucide/icons/list-restart.svg
{ "file_path": "lucide-icons/lucide/icons/list-restart.svg", "repo_id": "lucide-icons/lucide", "token_count": 204 }
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="M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z" /> <polyline points="15,9 18...
lucide-icons/lucide/icons/mailbox.svg
{ "file_path": "lucide-icons/lucide/icons/mailbox.svg", "repo_id": "lucide-icons/lucide", "token_count": 228 }
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="m8 6 4-4 4 4" /> <path d="M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22" /> <path d="m20 22-5-5" /> </svg>
lucide-icons/lucide/icons/merge.svg
{ "file_path": "lucide-icons/lucide/icons/merge.svg", "repo_id": "lucide-icons/lucide", "token_count": 154 }
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="M18 12h2" /> <path d="M18 16h2" /> <path d="M18 20h2" /> <path d="M18 4h2" /> <path d="M18 8h2" /> ...
lucide-icons/lucide/icons/microchip.svg
{ "file_path": "lucide-icons/lucide/icons/microchip.svg", "repo_id": "lucide-icons/lucide", "token_count": 319 }
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="M9 18V5l12-2v13" /> <path d="m9 9 12-2" /> <circle cx="6" cy="18" r="3" /> <circle cx="18" cy="16" r="...
lucide-icons/lucide/icons/music-4.svg
{ "file_path": "lucide-icons/lucide/icons/music-4.svg", "repo_id": "lucide-icons/lucide", "token_count": 158 }
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="M12 4V2" /> <path d="M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-....
lucide-icons/lucide/icons/nut.svg
{ "file_path": "lucide-icons/lucide/icons/nut.svg", "repo_id": "lucide-icons/lucide", "token_count": 374 }
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="M8 4.5v5H3m-1-6 6 6m13 0v-3c0-1.16-.84-2-2-2h-7m-9 9v2c0 1.05.95 2 2 2h3" /> <rect width="10" height="7" x...
lucide-icons/lucide/icons/picture-in-picture.svg
{ "file_path": "lucide-icons/lucide/icons/picture-in-picture.svg", "repo_id": "lucide-icons/lucide", "token_count": 184 }
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="M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4" /> <path d="M10 22 9 8" /> ...
lucide-icons/lucide/icons/popcorn.svg
{ "file_path": "lucide-icons/lucide/icons/popcorn.svg", "repo_id": "lucide-icons/lucide", "token_count": 247 }
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" > <path d="M5 7 3 5" /> <path d="M9 6V3" /> <path d="m13 7 2-2" /> <circle cx="9" cy="13" r="3" /> <path d="M11...
lucide-icons/lucide/icons/projector.svg
{ "file_path": "lucide-icons/lucide/icons/projector.svg", "repo_id": "lucide-icons/lucide", "token_count": 223 }
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="M12 12h.01" /> <path d="M7.5 4.2c-.3-.5-.9-.7-1.3-.4C3.9 5.5 2.3 8.1 2 11c-.1.5.4 1 1 1h5c0-1.5.8-2.8 2-3....
lucide-icons/lucide/icons/radiation.svg
{ "file_path": "lucide-icons/lucide/icons/radiation.svg", "repo_id": "lucide-icons/lucide", "token_count": 408 }
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="M17 5c0-1.7-1.3-3-3-3s-3 1.3-3 3c0 .8.3 1.5.8 2H11c-3.9 0-7 3.1-7 7c0 2.2 1.8 4 4 4" /> <path d="M16.8 3.9...
lucide-icons/lucide/icons/rat.svg
{ "file_path": "lucide-icons/lucide/icons/rat.svg", "repo_id": "lucide-icons/lucide", "token_count": 354 }
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" > <circle cx="12" cy="17" r="1" /> <path d="M21 7v6h-6" /> <path d="M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" /> <...
lucide-icons/lucide/icons/redo-dot.svg
{ "file_path": "lucide-icons/lucide/icons/redo-dot.svg", "repo_id": "lucide-icons/lucide", "token_count": 158 }
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" > <circle cx="12" cy="12" r="3" /> <path d="M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h...
lucide-icons/lucide/icons/server-cog.svg
{ "file_path": "lucide-icons/lucide/icons/server-cog.svg", "repo_id": "lucide-icons/lucide", "token_count": 407 }
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="M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a...
lucide-icons/lucide/icons/shirt.svg
{ "file_path": "lucide-icons/lucide/icons/shirt.svg", "repo_id": "lucide-icons/lucide", "token_count": 216 }
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="M2 18h1.4c1.3 0 2.5-.6 3.3-1.7l6.1-8.6c.7-1.1 2-1.7 3.3-1.7H22" /> <path d="m18 2 4 4-4 4" /> <path d="M...
lucide-icons/lucide/icons/shuffle.svg
{ "file_path": "lucide-icons/lucide/icons/shuffle.svg", "repo_id": "lucide-icons/lucide", "token_count": 256 }
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="M10 9H4L2 7l2-2h6" /> <path d="M14 5h6l2 2-2 2h-6" /> <path d="M10 22V4a2 2 0 1 1 4 0v18" /> <path d="...
lucide-icons/lucide/icons/signpost-big.svg
{ "file_path": "lucide-icons/lucide/icons/signpost-big.svg", "repo_id": "lucide-icons/lucide", "token_count": 171 }
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="m8 14-6 6h9v-3" /> <path d="M18.37 3.63 8 14l3 3L21.37 6.63a2.12 2.12 0 1 0-3-3Z" /> </svg>
lucide-icons/lucide/icons/slice.svg
{ "file_path": "lucide-icons/lucide/icons/slice.svg", "repo_id": "lucide-icons/lucide", "token_count": 152 }
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="M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0" /> <circle cx="10" cy="13" r="8" /> <path d="M2 21h12c...
lucide-icons/lucide/icons/snail.svg
{ "file_path": "lucide-icons/lucide/icons/snail.svg", "repo_id": "lucide-icons/lucide", "token_count": 215 }
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" > <rect width="20" height="20" x="2" y="2" rx="2" /> <circle cx="8" cy="8" r="2" /> <path d="M9.414 9.414 12 12" />...
lucide-icons/lucide/icons/square-scissors.svg
{ "file_path": "lucide-icons/lucide/icons/square-scissors.svg", "repo_id": "lucide-icons/lucide", "token_count": 203 }
79
<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="M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43" /> <path d="M18.42 12.76 22 9.27l-6.91-1L12 ...
lucide-icons/lucide/icons/star-off.svg
{ "file_path": "lucide-icons/lucide/icons/star-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 197 }
80
<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.5 17h1.227a2 2 0 0 0 1.345-.52L18 12" /> <path d="m12 13.5 3.75.5" /> <path d="m4.5 8 10.58-5.06a1 1...
lucide-icons/lucide/icons/tickets-plane.svg
{ "file_path": "lucide-icons/lucide/icons/tickets-plane.svg", "repo_id": "lucide-icons/lucide", "token_count": 241 }
81
<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="11" rx="3" ry="2" /> <ellipse cx="12" cy="12.5" rx="10" ry="8.5" /> </svg>
lucide-icons/lucide/icons/torus.svg
{ "file_path": "lucide-icons/lucide/icons/torus.svg", "repo_id": "lucide-icons/lucide", "token_count": 145 }
82
<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="M8 3.1V7a4 4 0 0 0 8 0V3.1" /> <path d="m9 15-1-1" /> <path d="m15 15 1-1" /> <path d="M9 19c-2.8 0-5-...
lucide-icons/lucide/icons/train-front.svg
{ "file_path": "lucide-icons/lucide/icons/train-front.svg", "repo_id": "lucide-icons/lucide", "token_count": 228 }
83
<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 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z" /> <path d="M7 16v6" /> <path d="M13 19v...
lucide-icons/lucide/icons/trees.svg
{ "file_path": "lucide-icons/lucide/icons/trees.svg", "repo_id": "lucide-icons/lucide", "token_count": 240 }
84
<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 9H4.5a2.5 2.5 0 0 1 0-5H6" /> <path d="M18 9h1.5a2.5 2.5 0 0 0 0-5H18" /> <path d="M4 22h16" /> <pa...
lucide-icons/lucide/icons/trophy.svg
{ "file_path": "lucide-icons/lucide/icons/trophy.svg", "repo_id": "lucide-icons/lucide", "token_count": 272 }
85
<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="7" cy="12" r="3" /> <path d="M10 9v6" /> <circle cx="17" cy="12" r="3" /> <path d="M14 7v8" /> <p...
lucide-icons/lucide/icons/whole-word.svg
{ "file_path": "lucide-icons/lucide/icons/whole-word.svg", "repo_id": "lucide-icons/lucide", "token_count": 191 }
86