Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
21
253k
id
stringlengths
25
123
metadata
dict
__index_level_0__
int64
0
181
"use client" import React from "react" import { Badge } from "@/components/ui/badge" import { Button } from "@/components/ui/button" import { Card, CardDescription, CardTitle } from "@/components/ui/card" import { Icons } from "@/components/icons" import AdBanner from "@/components/ad-banner" function EzWaitlist() {...
DarkInventor/easy-ui/app/(docs)/ez-waitlist/page.tsx
{ "file_path": "DarkInventor/easy-ui/app/(docs)/ez-waitlist/page.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 2719 }
0
// @ts-ignore export default function PostBody({ children }) { return ( <div className="prose prose-lg prose-blue mx-auto whitespace-pre-line"> {children} </div> ) }
DarkInventor/easy-ui/app/posts/[slug]/PostBody.tsx
{ "file_path": "DarkInventor/easy-ui/app/posts/[slug]/PostBody.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 80 }
1
import { CSSProperties } from "react"; type Direction = | "top" | "bottom" | "left" | "right" | "top left" | "top right" | "bottom left" | "bottom right"; interface LinearGradientProps { /** * The color to transition from * @default #00000000 * @type string * */ from?: string; /** ...
DarkInventor/easy-ui/components/magicui/linear-gradient.tsx
{ "file_path": "DarkInventor/easy-ui/components/magicui/linear-gradient.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 544 }
2
import * as React from "react" import * as AccordionPrimitive from "@radix-ui/react-accordion" import { ChevronDown } from "lucide-react" import { cn } from "@/lib/utils" const Accordion = AccordionPrimitive.Root const AccordionItem = React.forwardRef< React.ElementRef<typeof AccordionPrimitive.Item>, React.Comp...
DarkInventor/easy-ui/components/ui/accordion.tsx
{ "file_path": "DarkInventor/easy-ui/components/ui/accordion.tsx", "repo_id": "DarkInventor/easy-ui", "token_count": 688 }
3
// Inspired by react-hot-toast library import * as React from "react" import type { ToastActionElement, ToastProps, } from "@/components/ui/toast" const TOAST_LIMIT = 1 const TOAST_REMOVE_DELAY = 1000000 type ToasterToast = ToastProps & { id: string title?: React.ReactNode description?: React.ReactNode a...
DarkInventor/easy-ui/components/ui/use-toast.ts
{ "file_path": "DarkInventor/easy-ui/components/ui/use-toast.ts", "repo_id": "DarkInventor/easy-ui", "token_count": 1763 }
4
import Balance from "react-wrap-balancer"; import { ExternalLinkIcon } from "lucide-react"; import Link from "next/link"; import { siteUrls } from "@/config/urls"; import { buttonVariants } from "@/components/ui/button"; import { Icons } from "@/components/icons"; import { HighlightTabs } from "@/app/(app)/_components/...
alifarooq9/rapidlaunch/apps/www/src/app/(app)/(marketing)/page.tsx
{ "file_path": "alifarooq9/rapidlaunch/apps/www/src/app/(app)/(marketing)/page.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 2427 }
5
import * as React from "react"; import { Slot } from "@radix-ui/react-slot"; import { cva } from "class-variance-authority"; import type { VariantProps } from "class-variance-authority"; import { cn } from "@/lib/utils"; const buttonVariants = cva( "inline-flex items-center justify-center whitespace-nowrap rounde...
alifarooq9/rapidlaunch/apps/www/src/components/ui/button.tsx
{ "file_path": "alifarooq9/rapidlaunch/apps/www/src/components/ui/button.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 1016 }
6
import { AppPageLoading } from "@/app/(app)/_components/page-loading"; import { dashboardPageConfig } from "@/app/(app)/(user)/dashboard/_constants/page-config"; import { Skeleton } from "@/components/ui/skeleton"; export default function DashboardLoading() { return ( <AppPageLoading title={das...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/dashboard/loading.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/dashboard/loading.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 191 }
7
import { siteUrls } from "@/config/urls"; import { getOrganizations } from "@/server/actions/organization/queries"; import { redirect } from "next/navigation"; import { Fragment, type ReactNode } from "react"; type OrgLayoutProps = { children: ReactNode; }; export default async function OrgLayout({ children }: Or...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/layout.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/layout.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 176 }
8
export const orgSettingsPageConfig = { title: "Organization Settings", description: "Manage your organization settings here, such as organization name, logo, and more!", } as const;
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/settings/_constants/page-config.ts
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/settings/_constants/page-config.ts", "repo_id": "alifarooq9/rapidlaunch", "token_count": 57 }
9
"use client"; import { DropdownMenuTrigger } from "@radix-ui/react-dropdown-menu"; import { MixerHorizontalIcon } from "@radix-ui/react-icons"; import { type Table } from "@tanstack/react-table"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuC...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/_components/data-table-view-options.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/_components/data-table-view-options.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 1252 }
10
"use client"; import { LineChart } from "@/components/charts"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { thousandToK } from "@/lib/utils"; type SubsChartProps = { data: { Date: string; SubsCount: number; }[];...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/dashboard/_components/subs-chart.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/dashboard/_components/subs-chart.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 827 }
11
"use client"; import { DataTable } from "@/app/(app)/_components/data-table"; import { type ColumnDef } from "@tanstack/react-table"; import React, { useMemo } from "react"; import { getColumns, type OrganizationsData } from "./columns"; import { useDataTable } from "@/hooks/use-data-table"; import type { DataTableSea...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/organizations/_components/orgs-table.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/organizations/_components/orgs-table.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 990 }
12
import { AppPageShell } from "@/app/(app)/_components/page-shell"; import { WaitlistTable } from "@/app/(app)/admin/waitlist/_components/waitlist-table"; import { waitlistPageConfig } from "@/app/(app)/admin/waitlist/_constants/page-config"; import { getAllWaitlistUsersQuery, getPaginatedWaitlistQuery, } from "...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/waitlist/page.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/waitlist/page.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 634 }
13
import { WebPageHeader, WebPageWrapper, } from "@/app/(web)/_components/general-components"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { siteConfig } from "@/config/site"; import { format } from "date-fns"; import Image from "ne...
alifarooq9/rapidlaunch/starterkits/saas/src/app/(web)/changelogs/page.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(web)/changelogs/page.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 1460 }
14
import { AuthForm } from "@/app/auth/_components/auth-form"; import { loginPageConfig } from "@/app/auth/login/_constants/page-config"; import { type Metadata } from "next"; export const metadata: Metadata = { title: loginPageConfig.title, description: loginPageConfig.description, }; export default function L...
alifarooq9/rapidlaunch/starterkits/saas/src/app/auth/login/page.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/auth/login/page.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 114 }
15
"use client"; import { zodResolver } from "@hookform/resolvers/zod"; import { useForm } from "react-hook-form"; import { type z } from "zod"; import { FormField, FormItem, FormMessage, FormControl, Form, } from "@/components/ui/form"; import { Input } from "@/components/ui/input"; import { Button }...
alifarooq9/rapidlaunch/starterkits/saas/src/app/waitlist/_components/waitlist-form.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/waitlist/_components/waitlist-form.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 2122 }
16
"use client"; import * as React from "react"; import { type DialogProps } from "@radix-ui/react-dialog"; import { MagnifyingGlassIcon } from "@radix-ui/react-icons"; import { Command as CommandPrimitive } from "cmdk"; import { cn } from "@/lib/utils"; import { Dialog, DialogContent } from "@/components/ui/dialog"; c...
alifarooq9/rapidlaunch/starterkits/saas/src/components/ui/command.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/components/ui/command.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 2220 }
17
import * as React from "react"; import { cn } from "@/lib/utils"; const Table = React.forwardRef< HTMLTableElement, React.HTMLAttributes<HTMLTableElement> >(({ className, ...props }, ref) => ( <div className="relative w-full overflow-auto"> <table ref={ref} className={cn("w...
alifarooq9/rapidlaunch/starterkits/saas/src/components/ui/table.tsx
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/components/ui/table.tsx", "repo_id": "alifarooq9/rapidlaunch", "token_count": 1350 }
18
"use client"; import { type TransitionFunction, useCallback, useEffect, useRef, useTransition, } from "react"; export function useAwaitableTransition(): [ boolean, (callback: TransitionFunction) => Promise<unknown>, ] { const [isPending, startTransition] = useTransition(); const re...
alifarooq9/rapidlaunch/starterkits/saas/src/hooks/use-awaitable-transition.ts
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/hooks/use-awaitable-transition.ts", "repo_id": "alifarooq9/rapidlaunch", "token_count": 491 }
19
"use server"; import { waitlistUsers, waitlistUsersSchema } from "@/server/db/schema"; import { type z } from "zod"; import { db } from "@/server/db"; import { eq } from "drizzle-orm"; type AddUserToWaitlistMutationProps = z.infer<typeof waitlistUsersSchema>; export async function addUserToWaitlistMutation({ name...
alifarooq9/rapidlaunch/starterkits/saas/src/server/actions/waitlist/mutations.ts
{ "file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/server/actions/waitlist/mutations.ts", "repo_id": "alifarooq9/rapidlaunch", "token_count": 724 }
20
import { redirect } from 'next/navigation'; import { getDefaultSignInView } from '@/utils/auth-helpers/settings'; import { cookies } from 'next/headers'; export default function SignIn() { const preferredSignInView = cookies().get('preferredSignInView')?.value || null; const defaultView = getDefaultSignInView(...
horizon-ui/shadcn-nextjs-boilerplate/app/dashboard/signin/page.tsx
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/app/dashboard/signin/page.tsx", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 121 }
21
'use client'; import { Button } from '@/components/ui/button'; import { updatePassword } from '@/utils/auth-helpers/server'; import { handleRequest } from '@/utils/auth-helpers/client'; import { useRouter } from 'next/navigation'; import React, { useState } from 'react'; import { Input } from '../ui/input'; interface...
horizon-ui/shadcn-nextjs-boilerplate/components/auth-ui/UpdatePassword.tsx
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/components/auth-ui/UpdatePassword.tsx", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 2002 }
22
'use client'; import NextLink, { LinkProps as NextLinkProps } from 'next/link'; import { CSSProperties, PropsWithChildren, useMemo } from 'react'; export type NavLinkProps = NextLinkProps & PropsWithChildren & { styles?: CSSProperties; borderRadius?: string; }; function NavLink({ className, children, sty...
horizon-ui/shadcn-nextjs-boilerplate/components/link/NavLink.tsx
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/components/link/NavLink.tsx", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 244 }
23
export type Json = | string | number | boolean | null | { [key: string]: Json | undefined } | Json[] export interface Database { public: { Tables: { paddle_subscriptions: { Row: { passthrough: string | null status: string | null subscription_cancel_url: st...
horizon-ui/shadcn-nextjs-boilerplate/types/supabase.ts
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/types/supabase.ts", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 633 }
24
import { toDateTime } from '@/utils/helpers'; import { stripe } from '@/utils/stripe/config'; import { createClient } from '@supabase/supabase-js'; import Stripe from 'stripe'; import type { Database, Tables, TablesInsert } from '@/types/types_db'; type Product = Tables<'products'>; type Price = Tables<'prices'>; // ...
horizon-ui/shadcn-nextjs-boilerplate/utils/supabase/admin.ts
{ "file_path": "horizon-ui/shadcn-nextjs-boilerplate/utils/supabase/admin.ts", "repo_id": "horizon-ui/shadcn-nextjs-boilerplate", "token_count": 3382 }
25
import { auth } from '@clerk/nextjs/server'; import { redirect } from 'next/navigation'; export default function CenteredLayout(props: { children: React.ReactNode }) { const { userId } = auth(); if (userId) { redirect('/dashboard'); } return ( <div className="flex min-h-screen items-center justify-ce...
ixartz/SaaS-Boilerplate/src/app/[locale]/(auth)/(center)/layout.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/app/[locale]/(auth)/(center)/layout.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 131 }
26
import { cn } from '@/utils/Helpers'; export const Background = (props: { children: React.ReactNode; className?: string; }) => ( <div className={cn('w-full bg-secondary', props.className)}> {props.children} </div> );
ixartz/SaaS-Boilerplate/src/components/Background.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/components/Background.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 87 }
27
'use client'; import * as TooltipPrimitive from '@radix-ui/react-tooltip'; import * as React from 'react'; import { cn } from '@/utils/Helpers'; const TooltipProvider = TooltipPrimitive.Provider; const Tooltip = TooltipPrimitive.Root; const TooltipTrigger = TooltipPrimitive.Trigger; const TooltipContent = React.f...
ixartz/SaaS-Boilerplate/src/components/ui/tooltip.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/components/ui/tooltip.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 416 }
28
export const LogoCloud = (props: { text: string; children: React.ReactNode }) => ( <> <div className="text-center text-xl font-medium text-muted-foreground"> {props.text} </div> <div className="mt-6 grid grid-cols-2 place-items-center gap-x-3 gap-y-6 md:grid-cols-4 [&_a:hover]:opacity-100 [&_a]:opa...
ixartz/SaaS-Boilerplate/src/features/landing/LogoCloud.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/features/landing/LogoCloud.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 161 }
29
import { GitHubLogoIcon } from '@radix-ui/react-icons'; import { useTranslations } from 'next-intl'; import { buttonVariants } from '@/components/ui/buttonVariants'; import { CTABanner } from '@/features/landing/CTABanner'; import { Section } from '@/features/landing/Section'; export const CTA = () => { const t = u...
ixartz/SaaS-Boilerplate/src/templates/CTA.tsx
{ "file_path": "ixartz/SaaS-Boilerplate/src/templates/CTA.tsx", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 357 }
30
import { type ClassValue, clsx } from 'clsx'; import { twMerge } from 'tailwind-merge'; import { AppConfig } from './AppConfig'; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } export const MILLISECONDS_IN_ONE_DAY = 86_400_000; export const getBaseUrl = () => { if (process.env.NEXT...
ixartz/SaaS-Boilerplate/src/utils/Helpers.ts
{ "file_path": "ixartz/SaaS-Boilerplate/src/utils/Helpers.ts", "repo_id": "ixartz/SaaS-Boilerplate", "token_count": 342 }
31
import iconNodes from '../../data/iconNodes/index.ts'; import { IconNodeWithKeys } from '../../theme/types'; import iconMetaData from '../../data/iconMetaData'; import releaseMeta from '../../data/releaseMetaData.json'; import categories from '../../data/categoriesData.json'; const dataResponse = { icons: Object.ent...
lucide-icons/lucide/docs/.vitepress/api/figma/data.ts
{ "file_path": "lucide-icons/lucide/docs/.vitepress/api/figma/data.ts", "repo_id": "lucide-icons/lucide", "token_count": 466 }
32
import { DefaultTheme, UserConfig } from 'vitepress'; const sidebar: UserConfig<DefaultTheme.Config>['themeConfig']['sidebar'] = { guide: [ { text: 'Introduction', items: [ { text: 'What is lucide?', link: '/guide/' }, { text: 'Installation', link: '/guide/installation' }, { t...
lucide-icons/lucide/docs/.vitepress/sidebar.ts
{ "file_path": "lucide-icons/lucide/docs/.vitepress/sidebar.ts", "repo_id": "lucide-icons/lucide", "token_count": 1676 }
33
.lucide { width: 48px; height: 48px; stroke-width: 1.5; } .lucide * { vector-effect: non-scaling-stroke; } .app { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 1fr 1fr 1fr; gap: 6px; }
lucide-icons/lucide/docs/guide/advanced/examples/global-styling-absolute-strokewidth-example/icon.css
{ "file_path": "lucide-icons/lucide/docs/guide/advanced/examples/global-styling-absolute-strokewidth-example/icon.css", "repo_id": "lucide-icons/lucide", "token_count": 106 }
34
.my-beer-icon { /* Change this! */ width: 64px; height: 64px; }
lucide-icons/lucide/docs/guide/basics/examples/size-icon-css-example/icon.css
{ "file_path": "lucide-icons/lucide/docs/guide/basics/examples/size-icon-css-example/icon.css", "repo_id": "lucide-icons/lucide", "token_count": 31 }
35
<svg width="373" height="41" viewBox="0 0 373 41" xmlns="http://www.w3.org/2000/svg" > <polygon shapeRendering="crispEdges" fill="#f76808" points="24.3870968 40.1612903 24.3870968 8.67741935 32.2580645 8.67741935 32.2580645 0.806451613 0.774193548 0.806451613 0.774193548 8.67741935 8.64516129 8.67...
lucide-icons/lucide/docs/public/library-logos/tamagui.svg
{ "file_path": "lucide-icons/lucide/docs/public/library-logos/tamagui.svg", "repo_id": "lucide-icons/lucide", "token_count": 1318 }
36
<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000" preserveAspectRatio="xMidYMid meet...
lucide-icons/lucide/docs/public/safari-pinned-tab.svg
{ "file_path": "lucide-icons/lucide/docs/public/safari-pinned-tab.svg", "repo_id": "lucide-icons/lucide", "token_count": 1390 }
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="M12 2v20" /> <path d="M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4" /> <path d="M16 10h4a2 2 0 0 0 2-2V6a2 2 ...
lucide-icons/lucide/icons/align-center-vertical.svg
{ "file_path": "lucide-icons/lucide/icons/align-center-vertical.svg", "repo_id": "lucide-icons/lucide", "token_count": 257 }
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="M18.8 4A6.3 8.7 0 0 1 20 9" /> <path d="M9 9h.01" /> <circle cx="9" cy="9" r="7" /> <rect width="10" h...
lucide-icons/lucide/icons/bell-electric.svg
{ "file_path": "lucide-icons/lucide/icons/bell-electric.svg", "repo_id": "lucide-icons/lucide", "token_count": 218 }
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="M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4...
lucide-icons/lucide/icons/bitcoin.svg
{ "file_path": "lucide-icons/lucide/icons/bitcoin.svg", "repo_id": "lucide-icons/lucide", "token_count": 248 }
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="M12 17h2" /> <path d="M12 22h2" /> <path d="M12 2h2" /> <path d="M18 22h1a1 1 0 0 0 1-1" /> <path d=...
lucide-icons/lucide/icons/book-dashed.svg
{ "file_path": "lucide-icons/lucide/icons/book-dashed.svg", "repo_id": "lucide-icons/lucide", "token_count": 288 }
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 3h3v18h-3" /> <path d="M8 21H5V3h3" /> </svg>
lucide-icons/lucide/icons/brackets.svg
{ "file_path": "lucide-icons/lucide/icons/brackets.svg", "repo_id": "lucide-icons/lucide", "token_count": 126 }
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="M4 6 2 7" /> <path d="M10 6h4" /> <path d="m22 7-2-1" /> <rect width="16" height="16" x="4" y="3" rx="...
lucide-icons/lucide/icons/bus-front.svg
{ "file_path": "lucide-icons/lucide/icons/bus-front.svg", "repo_id": "lucide-icons/lucide", "token_count": 226 }
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="M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134...
lucide-icons/lucide/icons/chef-hat.svg
{ "file_path": "lucide-icons/lucide/icons/chef-hat.svg", "repo_id": "lucide-icons/lucide", "token_count": 205 }
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" > <rect width="8" height="4" x="8" y="2" rx="1" /> <path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5" /> <path d...
lucide-icons/lucide/icons/clipboard-pen.svg
{ "file_path": "lucide-icons/lucide/icons/clipboard-pen.svg", "repo_id": "lucide-icons/lucide", "token_count": 266 }
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" > <circle cx="12" cy="12" r="10" /> <polyline points="12 6 12 12" /> </svg>
lucide-icons/lucide/icons/clock-12.svg
{ "file_path": "lucide-icons/lucide/icons/clock-12.svg", "repo_id": "lucide-icons/lucide", "token_count": 121 }
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="m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98" /> <ellipse cx="12" cy="19" rx="9" ry="3" /> </svg>
lucide-icons/lucide/icons/cone.svg
{ "file_path": "lucide-icons/lucide/icons/cone.svg", "repo_id": "lucide-icons/lucide", "token_count": 154 }
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="m12 15 2 2 4-4" /> <rect width="14" height="14" x="8" y="8" rx="2" ry="2" /> <path d="M4 16c-1.1 0-2-.9-...
lucide-icons/lucide/icons/copy-check.svg
{ "file_path": "lucide-icons/lucide/icons/copy-check.svg", "repo_id": "lucide-icons/lucide", "token_count": 190 }
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" > <polyline points="9 10 4 15 9 20" /> <path d="M20 4v7a4 4 0 0 1-4 4H4" /> </svg>
lucide-icons/lucide/icons/corner-down-left.svg
{ "file_path": "lucide-icons/lucide/icons/corner-down-left.svg", "repo_id": "lucide-icons/lucide", "token_count": 130 }
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" > <circle cx="12" cy="12" r="10" /> <path d="M6 12c0-1.7.7-3.2 1.8-4.2" /> <circle cx="12" cy="12" r="2" /> <path...
lucide-icons/lucide/icons/disc-3.svg
{ "file_path": "lucide-icons/lucide/icons/disc-3.svg", "repo_id": "lucide-icons/lucide", "token_count": 183 }
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="12" r="10" /> <path d="M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94" /> <path d="M21.75 12.84c-...
lucide-icons/lucide/icons/dribbble.svg
{ "file_path": "lucide-icons/lucide/icons/dribbble.svg", "repo_id": "lucide-icons/lucide", "token_count": 204 }
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="M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0" /> <path d="M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 ...
lucide-icons/lucide/icons/ear.svg
{ "file_path": "lucide-icons/lucide/icons/ear.svg", "repo_id": "lucide-icons/lucide", "token_count": 174 }
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" > <circle cx="12" cy="12" r="2" /> <path d="M12 2v4" /> <path d="m6.8 15-3.5 2" /> <path d="m20.7 7-3.5 2" /> <...
lucide-icons/lucide/icons/ferris-wheel.svg
{ "file_path": "lucide-icons/lucide/icons/ferris-wheel.svg", "repo_id": "lucide-icons/lucide", "token_count": 244 }
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="M11 11a5 5 0 0 1 0 6" /> <path d="M14 2v4a2 2 0 0 0 2 2h4" /> <path d="M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13...
lucide-icons/lucide/icons/file-volume.svg
{ "file_path": "lucide-icons/lucide/icons/file-volume.svg", "repo_id": "lucide-icons/lucide", "token_count": 294 }
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" > <polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" /> </svg>
lucide-icons/lucide/icons/filter.svg
{ "file_path": "lucide-icons/lucide/icons/filter.svg", "repo_id": "lucide-icons/lucide", "token_count": 118 }
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" > <circle cx="11.5" cy="12.5" r="2.5" /> <path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9...
lucide-icons/lucide/icons/folder-search-2.svg
{ "file_path": "lucide-icons/lucide/icons/folder-search-2.svg", "repo_id": "lucide-icons/lucide", "token_count": 219 }
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="M12 3v6" /> <circle cx="12" cy="12" r="3" /> <path d="M12 15v6" /> </svg>
lucide-icons/lucide/icons/git-commit-vertical.svg
{ "file_path": "lucide-icons/lucide/icons/git-commit-vertical.svg", "repo_id": "lucide-icons/lucide", "token_count": 134 }
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" > <circle cx="5" cy="6" r="3" /> <path d="M5 9v12" /> <path d="m15 9-3-3 3-3" /> <path d="M12 6h5a2 2 0 0 1 2 2v3...
lucide-icons/lucide/icons/git-pull-request-create-arrow.svg
{ "file_path": "lucide-icons/lucide/icons/git-pull-request-create-arrow.svg", "repo_id": "lucide-icons/lucide", "token_count": 189 }
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="M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13" /> <path d="M2 12h8.5" /> <p...
lucide-icons/lucide/icons/globe-lock.svg
{ "file_path": "lucide-icons/lucide/icons/globe-lock.svg", "repo_id": "lucide-icons/lucide", "token_count": 204 }
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" > <line x1="2" x2="22" y1="2" y2="22" /> <path d="M10.41 10.41a2 2 0 1 1-2.83-2.83" /> <line x1="13.5" x2="6" y1="1...
lucide-icons/lucide/icons/image-off.svg
{ "file_path": "lucide-icons/lucide/icons/image-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 277 }
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="M20 10c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8h8" /> <polyline points="16 14 20 18 16 22" /> </svg>
lucide-icons/lucide/icons/iteration-ccw.svg
{ "file_path": "lucide-icons/lucide/icons/iteration-ccw.svg", "repo_id": "lucide-icons/lucide", "token_count": 150 }
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="M8 2h8l4 10H4L8 2Z" /> <path d="M12 12v6" /> <path d="M8 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H8Z" /> </...
lucide-icons/lucide/icons/lamp.svg
{ "file_path": "lucide-icons/lucide/icons/lamp.svg", "repo_id": "lucide-icons/lucide", "token_count": 168 }
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" > <circle cx="12" cy="12" r="10" /> <path d="M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z" /> <line x1="9" x2="9.01" y1="...
lucide-icons/lucide/icons/laugh.svg
{ "file_path": "lucide-icons/lucide/icons/laugh.svg", "repo_id": "lucide-icons/lucide", "token_count": 194 }
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" > <circle cx="12" cy="12" r="10" /> <path d="m4.93 4.93 4.24 4.24" /> <path d="m14.83 9.17 4.24-4.24" /> <path d=...
lucide-icons/lucide/icons/life-buoy.svg
{ "file_path": "lucide-icons/lucide/icons/life-buoy.svg", "repo_id": "lucide-icons/lucide", "token_count": 211 }
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" > <rect width="20" height="16" x="2" y="4" rx="2" /> <path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" /> </svg>
lucide-icons/lucide/icons/mail.svg
{ "file_path": "lucide-icons/lucide/icons/mail.svg", "repo_id": "lucide-icons/lucide", "token_count": 153 }
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="M11.7 3H5a2 2 0 0 0-2 2v16l4-4h12a2 2 0 0 0 2-2v-2.7" /> <circle cx="18" cy="6" r="3" /> </svg>
lucide-icons/lucide/icons/message-square-dot.svg
{ "file_path": "lucide-icons/lucide/icons/message-square-dot.svg", "repo_id": "lucide-icons/lucide", "token_count": 154 }
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="M21 12v3a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h7" /> <path d="M16 3h5v5" /> <path d="m16 8 5-5" /> </svg>...
lucide-icons/lucide/icons/message-square-share.svg
{ "file_path": "lucide-icons/lucide/icons/message-square-share.svg", "repo_id": "lucide-icons/lucide", "token_count": 161 }
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="M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" /> <path d="M19 10v2a7 7 0 0 1-14 0v-2" /> <line x...
lucide-icons/lucide/icons/mic.svg
{ "file_path": "lucide-icons/lucide/icons/mic.svg", "repo_id": "lucide-icons/lucide", "token_count": 184 }
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" > <rect x="5" y="2" width="14" height="20" rx="7" /> <path d="M12 6v4" /> </svg>
lucide-icons/lucide/icons/mouse.svg
{ "file_path": "lucide-icons/lucide/icons/mouse.svg", "repo_id": "lucide-icons/lucide", "token_count": 130 }
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 8L2 12L6 16" /> <path d="M2 12H22" /> </svg>
lucide-icons/lucide/icons/move-left.svg
{ "file_path": "lucide-icons/lucide/icons/move-left.svg", "repo_id": "lucide-icons/lucide", "token_count": 121 }
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="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h...
lucide-icons/lucide/icons/newspaper.svg
{ "file_path": "lucide-icons/lucide/icons/newspaper.svg", "repo_id": "lucide-icons/lucide", "token_count": 228 }
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="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-off.svg
{ "file_path": "lucide-icons/lucide/icons/nut-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 433 }
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="M3 3h6l6 18h6" /> <path d="M14 3h7" /> </svg>
lucide-icons/lucide/icons/option.svg
{ "file_path": "lucide-icons/lucide/icons/option.svg", "repo_id": "lucide-icons/lucide", "token_count": 122 }
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" > <polyline points="16 2 16 8 22 8" /> <line x1="22" x2="16" y1="2" y2="8" /> <path d="M22 16.92v3a2 2 0 0 1-2.18 2...
lucide-icons/lucide/icons/phone-incoming.svg
{ "file_path": "lucide-icons/lucide/icons/phone-incoming.svg", "repo_id": "lucide-icons/lucide", "token_count": 309 }
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="M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4" /> <rect width="10" height="7" x="12" y="13" rx=...
lucide-icons/lucide/icons/picture-in-picture-2.svg
{ "file_path": "lucide-icons/lucide/icons/picture-in-picture-2.svg", "repo_id": "lucide-icons/lucide", "token_count": 165 }
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="M22 14a8 8 0 0 1-8 8" /> <path d="M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2" /> <path d="M14 10V9a2 2 0 0 0-...
lucide-icons/lucide/icons/pointer.svg
{ "file_path": "lucide-icons/lucide/icons/pointer.svg", "repo_id": "lucide-icons/lucide", "token_count": 292 }
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" > <line x1="12" x2="12" y1="3" y2="21" /> <polyline points="8 8 4 12 8 16" /> <polyline points="16 16 20 12 16 8" /...
lucide-icons/lucide/icons/separator-vertical.svg
{ "file_path": "lucide-icons/lucide/icons/separator-vertical.svg", "repo_id": "lucide-icons/lucide", "token_count": 146 }
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 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1 .6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"...
lucide-icons/lucide/icons/ship.svg
{ "file_path": "lucide-icons/lucide/icons/ship.svg", "repo_id": "lucide-icons/lucide", "token_count": 288 }
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" > <circle cx="12" cy="12" r="10" /> <path d="M8 14s1.5 2 4 2 4-2 4-2" /> <line x1="9" x2="9.01" y1="9" y2="9" /> ...
lucide-icons/lucide/icons/smile.svg
{ "file_path": "lucide-icons/lucide/icons/smile.svg", "repo_id": "lucide-icons/lucide", "token_count": 186 }
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" > <rect width="18" height="18" x="3" y="3" rx="2" ry="2" /> <path d="M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3" /> ...
lucide-icons/lucide/icons/square-function.svg
{ "file_path": "lucide-icons/lucide/icons/square-function.svg", "repo_id": "lucide-icons/lucide", "token_count": 181 }
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="M7 12h2l2 5 2-10h4" /> <rect x="3" y="3" width="18" height="18" rx="2" /> </svg>
lucide-icons/lucide/icons/square-radical.svg
{ "file_path": "lucide-icons/lucide/icons/square-radical.svg", "repo_id": "lucide-icons/lucide", "token_count": 138 }
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" > <path d="m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7" /> <path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 ...
lucide-icons/lucide/icons/store.svg
{ "file_path": "lucide-icons/lucide/icons/store.svg", "repo_id": "lucide-icons/lucide", "token_count": 409 }
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="m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 ...
lucide-icons/lucide/icons/tree-pine.svg
{ "file_path": "lucide-icons/lucide/icons/tree-pine.svg", "repo_id": "lucide-icons/lucide", "token_count": 221 }
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="M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6...
lucide-icons/lucide/icons/twitter.svg
{ "file_path": "lucide-icons/lucide/icons/twitter.svg", "repo_id": "lucide-icons/lucide", "token_count": 201 }
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" > <rect width="18" height="18" x="3" y="3" rx="2" /> <path d="M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2" /> <path d="M3 1...
lucide-icons/lucide/icons/wallet-cards.svg
{ "file_path": "lucide-icons/lucide/icons/wallet-cards.svg", "repo_id": "lucide-icons/lucide", "token_count": 220 }
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="12" cy="12" r="6" /> <polyline points="12 10 12 12 13 13" /> <path d="m16.13 7.66-.81-4.05a2 2 0 0 0-...
lucide-icons/lucide/icons/watch.svg
{ "file_path": "lucide-icons/lucide/icons/watch.svg", "repo_id": "lucide-icons/lucide", "token_count": 228 }
86
<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 22h8" /> <path d="M7 10h3m7 0h-1.343" /> <path d="M12 15v7" /> <path d="M7.307 7.307A12.33 12.33 0 ...
lucide-icons/lucide/icons/wine-off.svg
{ "file_path": "lucide-icons/lucide/icons/wine-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 250 }
87
<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.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317" /> <path d="M15.656 10H20a1 1 0 0 1 .78 1.63l-1.7...
lucide-icons/lucide/icons/zap-off.svg
{ "file_path": "lucide-icons/lucide/icons/zap-off.svg", "repo_id": "lucide-icons/lucide", "token_count": 251 }
88
/* eslint-disable import/no-extraneous-dependencies */ import base64SVG from '@lucide/build-icons/utils/base64SVG.mjs'; export default ({ componentName, iconName, children, getSvg, deprecated, deprecationReason }) => { const svgContents = getSvg(); const svgBase64 = base64SVG(svgContents); return `\ import { Lu...
lucide-icons/lucide/packages/lucide-angular/scripts/exportTemplate.mjs
{ "file_path": "lucide-icons/lucide/packages/lucide-angular/scripts/exportTemplate.mjs", "repo_id": "lucide-icons/lucide", "token_count": 319 }
89
import { expect, afterEach } from 'vitest'; import { cleanup } from '@testing-library/preact'; import '@testing-library/jest-dom/vitest'; import htmlSerializer from 'jest-serializer-html'; expect.addSnapshotSerializer(htmlSerializer); afterEach(() => { cleanup(); });
lucide-icons/lucide/packages/lucide-preact/tests/setupVitest.js
{ "file_path": "lucide-icons/lucide/packages/lucide-preact/tests/setupVitest.js", "repo_id": "lucide-icons/lucide", "token_count": 90 }
90
import { describe, it, expect, vi } from 'vitest'; import { render } from '@testing-library/react'; import { airVent } from './testIconNodes'; import { Icon } from '../src/lucide-react-native'; vi.mock('react-native-svg'); describe('Using Icon Component', () => { it('should render icon based on a iconNode', async ...
lucide-icons/lucide/packages/lucide-react-native/tests/Icon.spec.tsx
{ "file_path": "lucide-icons/lucide/packages/lucide-react-native/tests/Icon.spec.tsx", "repo_id": "lucide-icons/lucide", "token_count": 331 }
91
import { lstatSync } from 'fs'; import { readdir, readFile, writeFile } from 'fs/promises'; import path from 'path'; import { getCurrentDirPath } from '@lucide/helpers'; import { getJSBanner } from './license.mjs'; const currentDir = getCurrentDirPath(import.meta.url); const targetDirectory = path.join(currentDir, '.....
lucide-icons/lucide/packages/lucide-svelte/scripts/appendBlockComments.mjs
{ "file_path": "lucide-icons/lucide/packages/lucide-svelte/scripts/appendBlockComments.mjs", "repo_id": "lucide-icons/lucide", "token_count": 770 }
92
import '@testing-library/jest-dom/vitest';
lucide-icons/lucide/packages/lucide-vue-next/tests/setupVitest.js
{ "file_path": "lucide-icons/lucide/packages/lucide-vue-next/tests/setupVitest.js", "repo_id": "lucide-icons/lucide", "token_count": 17 }
93
import path from 'path'; import { readSvgDirectory, getCurrentDirPath, readAllMetadata, } from '../tools/build-helpers/helpers.mjs'; const currentDir = getCurrentDirPath(import.meta.url); const ICONS_DIR = path.resolve(currentDir, '../icons'); const icons = readAllMetadata(ICONS_DIR); const CATEGORIES_DIR = path...
lucide-icons/lucide/scripts/checkIconsAndCategories.mjs
{ "file_path": "lucide-icons/lucide/scripts/checkIconsAndCategories.mjs", "repo_id": "lucide-icons/lucide", "token_count": 606 }
94
import { optimize } from 'svgo'; import * as prettier from 'prettier'; import { parseSync, stringify } from 'svgson'; import DEFAULT_ATTRS from '../../tools/build-icons/render/default-attrs.json' assert { type: 'json' }; /** * Optimize SVG with `svgo`. * @param {string} svg - An SVG string. * @returns {Promise<stri...
lucide-icons/lucide/scripts/render/processSvg.mjs
{ "file_path": "lucide-icons/lucide/scripts/render/processSvg.mjs", "repo_id": "lucide-icons/lucide", "token_count": 633 }
95
/* eslint-disable import/prefer-default-export */ import fs from 'fs'; import path from 'path'; /** * Reads the file contents. * * @param {string} path * @returns {string} The contents of a file */ export const readFile = (path) => fs.readFileSync(path.resolve(__dirname, '../', path), 'utf-8');
lucide-icons/lucide/tools/build-helpers/src/readFile.mjs
{ "file_path": "lucide-icons/lucide/tools/build-helpers/src/readFile.mjs", "repo_id": "lucide-icons/lucide", "token_count": 101 }
96
import fs from 'fs'; import path from 'path'; import prettier from 'prettier'; import { readSvg, toPascalCase } from '@lucide/helpers'; import { deprecationReasonTemplate } from '../utils/deprecationReasonTemplate.mjs'; export default ({ iconNodes, outputDirectory, template, showLog = true, iconFileExtension...
lucide-icons/lucide/tools/build-icons/building/generateIconFiles.mjs
{ "file_path": "lucide-icons/lucide/tools/build-icons/building/generateIconFiles.mjs", "repo_id": "lucide-icons/lucide", "token_count": 751 }
97
import { redirect } from "next/navigation"; import { validateRequest } from "~/actions/auth"; import SidebarNav from "~/components/layout/sidebar-nav"; interface DashboardLayoutProps { children: React.ReactNode; } export default async function DashboardLayout({ children, }: DashboardLayoutProps) { // move to mi...
moinulmoin/chadnext/src/app/[locale]/dashboard/layout.tsx
{ "file_path": "moinulmoin/chadnext/src/app/[locale]/dashboard/layout.tsx", "repo_id": "moinulmoin/chadnext", "token_count": 299 }
98
import { redirect } from "next/navigation"; import { validateRequest } from "~/actions/auth"; import AuthForm from "~/components/layout/auth-form"; import { Card } from "~/components/ui/card"; export default async function Login() { const { session } = await validateRequest(); if (session) redirect("/"); return ...
moinulmoin/chadnext/src/app/[locale]/login/page.tsx
{ "file_path": "moinulmoin/chadnext/src/app/[locale]/login/page.tsx", "repo_id": "moinulmoin/chadnext", "token_count": 330 }
99
End of preview. Expand in Data Studio

Synth UI 🎹

https://www.synthui.design

Dataset details

This dataset aims to provide a diverse collection of NextJS code snippets, along with their corresponding instructions, to facilitate the training of language models for NextJS-related tasks. It is designed to cover a wide range of NextJS functionalities, including UI components, routing, state management, and more.

This dataset consists of:

Note: The dataset is seperated into two main parts:

  • raw Contains only the raw code snippets
  • instruct Contains the code snippets along with ~2000 QA pairs

Raw Code Snippets

  • ~2000 Code Snippets (scraped from GitHub)
  • keys: text, id, metadata, __index_level_0__

QA pairs

  • ~2000 QA pairs (augmented with GPT-4o completions)
  • keys: instruction, output, metadata

Each row also stores the following metadata:

  • file_path: The relative path to the file where the code snippet is located in the parent repository
  • repo_id: The unique identifier of the GitHub repository
  • token_count: The number of tokens in the code snippet (using gpt2 tokenizer)

This dataset contains data scraped from following github repos

Note: The data was scraped on 2024-10-04

ICON_REPOS = [
    "lucide-icons/lucide"                               # ISC
]
UI_REPOS = [
    "shadcn-ui/ui",                                     # MIT
    "DarkInventor/easy-ui"                              # MIT
]
CODE_REPOS = [
    "moinulmoin/chadnext",                              # MIT
    "shadcn-ui/taxonomy",                               # MIT
    "horizon-ui/shadcn-nextjs-boilerplate",             # MIT
    "alifarooq9/rapidlaunch",                           # MIT
    "ixartz/SaaS-Boilerplate",                          # MIT
    "nobruf/shadcn-landing-page"                        # None
]

Loading

# Raw Code Snippets
dataset = load_dataset("JulianAT/SynthUI-Code-2k-v1")

# QA pairs
dataset = load_dataset("JulianAT/SynthUI-Code-Instruct-2k-v1")

Token Distribution (QA)

Code (output column)

Instruction Token Distribution

Instruction (instruction column)

Instruction Token Distribution

License

This dataset is licensed under the MIT License.

Downloads last month
77