text stringlengths 21 253k | id stringlengths 25 123 | metadata dict | __index_level_0__ int64 0 181 |
|---|---|---|---|
"use client"
import { zodResolver } from "@hookform/resolvers/zod"
import { ChevronDownIcon } from "@radix-ui/react-icons"
import { useForm } from "react-hook-form"
import { z } from "zod"
import { cn } from "@/lib/utils"
import { toast } from "@/registry/new-york/hooks/use-toast"
import { Button, buttonVariants } fr... | shadcn-ui/ui/apps/www/app/(app)/examples/forms/appearance/appearance-form.tsx | {
"file_path": "shadcn-ui/ui/apps/www/app/(app)/examples/forms/appearance/appearance-form.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 3561
} | 60 |
export const mails = [
{
id: "6c84fb90-12c4-11e1-840d-7b25c5ee775a",
name: "William Smith",
email: "williamsmith@example.com",
subject: "Meeting Tomorrow",
text: "Hi, let's have a meeting tomorrow to discuss the project. I've been reviewing the project details and have some ideas I'd like to share... | shadcn-ui/ui/apps/www/app/(app)/examples/mail/data.tsx | {
"file_path": "shadcn-ui/ui/apps/www/app/(app)/examples/mail/data.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 5245
} | 61 |
import { CopyIcon } from "@radix-ui/react-icons"
import { Button } from "@/registry/new-york/ui/button"
import { Input } from "@/registry/new-york/ui/input"
import { Label } from "@/registry/new-york/ui/label"
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/registry/new-york/ui/popover"
export funct... | shadcn-ui/ui/apps/www/app/(app)/examples/playground/components/preset-share.tsx | {
"file_path": "shadcn-ui/ui/apps/www/app/(app)/examples/playground/components/preset-share.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 741
} | 62 |
import { z } from "zod"
// We're keeping a simple non-relational schema here.
// IRL, you will have a schema for your data models.
export const taskSchema = z.object({
id: z.string(),
title: z.string(),
status: z.string(),
label: z.string(),
priority: z.string(),
})
export type Task = z.infer<typeof taskSch... | shadcn-ui/ui/apps/www/app/(app)/examples/tasks/data/schema.ts | {
"file_path": "shadcn-ui/ui/apps/www/app/(app)/examples/tasks/data/schema.ts",
"repo_id": "shadcn-ui/ui",
"token_count": 110
} | 63 |
import Link from "next/link"
import { ArrowRightIcon } from "@radix-ui/react-icons"
import { Blocks, PieChart } from "lucide-react"
import { Separator } from "@/registry/new-york/ui/separator"
export function Announcement() {
return (
<Link
href="/docs/changelog"
className="group inline-flex items-c... | shadcn-ui/ui/apps/www/components/announcement.tsx | {
"file_path": "shadcn-ui/ui/apps/www/components/announcement.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 269
} | 64 |
"use client"
import * as React from "react"
import { useRouter } from "next/navigation"
import { type DialogProps } from "@radix-ui/react-dialog"
import {
CircleIcon,
FileIcon,
LaptopIcon,
MoonIcon,
SunIcon,
} from "@radix-ui/react-icons"
import { useTheme } from "next-themes"
import { docsConfig } from "@/... | shadcn-ui/ui/apps/www/components/command-menu.tsx | {
"file_path": "shadcn-ui/ui/apps/www/components/command-menu.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 2129
} | 65 |
import Link from "next/link"
import { ChevronLeftIcon, ChevronRightIcon } from "@radix-ui/react-icons"
import { Doc } from "contentlayer/generated"
import { NavItem, NavItemWithChildren } from "types/nav"
import { docsConfig } from "@/config/docs"
import { cn } from "@/lib/utils"
import { buttonVariants } from "@/regi... | shadcn-ui/ui/apps/www/components/pager.tsx | {
"file_path": "shadcn-ui/ui/apps/www/components/pager.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 801
} | 66 |
"use client"
import * as React from "react"
import { editInV0 } from "@/actions/edit-in-v0"
import { Loader2 } from "lucide-react"
import { useFormStatus } from "react-dom"
import { toast } from "sonner"
import { cn } from "@/lib/utils"
import { Button, ButtonProps } from "@/registry/new-york/ui/button"
import {
To... | shadcn-ui/ui/apps/www/components/v0-button.tsx | {
"file_path": "shadcn-ui/ui/apps/www/components/v0-button.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 2872
} | 67 |
import * as React from "react"
export function useMediaQuery(query: string) {
const [value, setValue] = React.useState(false)
React.useEffect(() => {
function onChange(event: MediaQueryListEvent) {
setValue(event.matches)
}
const result = matchMedia(query)
result.addEventListener("change", ... | shadcn-ui/ui/apps/www/hooks/use-media-query.tsx | {
"file_path": "shadcn-ui/ui/apps/www/hooks/use-media-query.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 153
} | 68 |
import { z } from "zod"
export const logSchema = z.object({
event: z.enum(["copy_primitive"]),
data: z.record(z.string()),
})
| shadcn-ui/ui/apps/www/lib/validations/log.ts | {
"file_path": "shadcn-ui/ui/apps/www/lib/validations/log.ts",
"repo_id": "shadcn-ui/ui",
"token_count": 52
} | 69 |
import { Slash } from "lucide-react"
import {
Breadcrumb,
BreadcrumbItem,
BreadcrumbLink,
BreadcrumbList,
BreadcrumbPage,
BreadcrumbSeparator,
} from "@/registry/default/ui/breadcrumb"
export default function BreadcrumbWithCustomSeparator() {
return (
<Breadcrumb>
<BreadcrumbList>
<Bre... | shadcn-ui/ui/apps/www/registry/default/example/breadcrumb-separator.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/default/example/breadcrumb-separator.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 417
} | 70 |
"use client"
import * as React from "react"
import { Minus, Plus } from "lucide-react"
import { useTheme } from "next-themes"
import { Bar, BarChart, ResponsiveContainer } from "recharts"
import { useConfig } from "@/hooks/use-config"
import { Button } from "@/registry/default/ui/button"
import {
Card,
CardConten... | shadcn-ui/ui/apps/www/registry/default/example/cards/activity-goal.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/default/example/cards/activity-goal.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 1605
} | 71 |
"use client"
import * as React from "react"
import { Calendar, MoreHorizontal, Tags, Trash, User } from "lucide-react"
import { Button } from "@/registry/default/ui/button"
import {
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList,
} from "@/registry/default/ui/command"
import {... | shadcn-ui/ui/apps/www/registry/default/example/combobox-dropdown-menu.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/default/example/combobox-dropdown-menu.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 1794
} | 72 |
import { Checkbox } from "@/registry/default/ui/checkbox"
import { Label } from "@/registry/default/ui/label"
export default function LabelDemo() {
return (
<div>
<div className="flex items-center space-x-2">
<Checkbox id="terms" />
<Label htmlFor="terms">Accept terms and conditions</Label>... | shadcn-ui/ui/apps/www/registry/default/example/label-demo.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/default/example/label-demo.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 137
} | 73 |
import { Button } from "@/registry/default/ui/button"
import { Textarea } from "@/registry/default/ui/textarea"
export default function TextareaWithButton() {
return (
<div className="grid w-full gap-2">
<Textarea placeholder="Type your message here." />
<Button>Send message</Button>
</div>
)
}... | shadcn-ui/ui/apps/www/registry/default/example/textarea-with-button.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/default/example/textarea-with-button.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 111
} | 74 |
import { Italic } from "lucide-react"
import { Toggle } from "@/registry/default/ui/toggle"
export default function ToggleLg() {
return (
<Toggle size="lg" aria-label="Toggle italic">
<Italic className="h-4 w-4" />
</Toggle>
)
}
| shadcn-ui/ui/apps/www/registry/default/example/toggle-lg.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/default/example/toggle-lg.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 102
} | 75 |
import { Badge } from "@/registry/new-york/ui/badge"
export default function BadgeSecondary() {
return <Badge variant="secondary">Secondary</Badge>
}
| shadcn-ui/ui/apps/www/registry/new-york/example/badge-secondary.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/new-york/example/badge-secondary.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 49
} | 76 |
import { EnvelopeOpenIcon } from "@radix-ui/react-icons"
import { Button } from "@/registry/new-york/ui/button"
export default function ButtonWithIcon() {
return (
<Button>
<EnvelopeOpenIcon className="mr-2 h-4 w-4" /> Login with Email
</Button>
)
}
| shadcn-ui/ui/apps/www/registry/new-york/example/button-with-icon.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/new-york/example/button-with-icon.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 103
} | 77 |
import { REGEXP_ONLY_DIGITS_AND_CHARS } from "input-otp"
import {
InputOTP,
InputOTPGroup,
InputOTPSlot,
} from "@/registry/new-york/ui/input-otp"
export default function InputOTPPattern() {
return (
<InputOTP maxLength={6} pattern={REGEXP_ONLY_DIGITS_AND_CHARS}>
<InputOTPGroup>
<InputOTPSlo... | shadcn-ui/ui/apps/www/registry/new-york/example/input-otp-pattern.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/new-york/example/input-otp-pattern.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 262
} | 78 |
import * as React from "react"
import { cva, type VariantProps } from "class-variance-authority"
import { cn } from "@/lib/utils"
const badgeVariants = cva(
"inline-flex items-center rounded-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-of... | shadcn-ui/ui/apps/www/registry/new-york/ui/badge.tsx | {
"file_path": "shadcn-ui/ui/apps/www/registry/new-york/ui/badge.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 426
} | 79 |
import { Registry } from "@/registry/schema"
export const lib: Registry = [
{
name: "utils",
type: "registry:lib",
dependencies: ["clsx", "tailwind-merge"],
files: [
{
path: "lib/utils.ts",
type: "registry:lib",
},
],
},
]
| shadcn-ui/ui/apps/www/registry/registry-lib.ts | {
"file_path": "shadcn-ui/ui/apps/www/registry/registry-lib.ts",
"repo_id": "shadcn-ui/ui",
"token_count": 129
} | 80 |
import { createMatchPath, type ConfigLoaderSuccessResult } from "tsconfig-paths"
export async function resolveImport(
importPath: string,
config: Pick<ConfigLoaderSuccessResult, "absoluteBaseUrl" | "paths">
) {
return createMatchPath(config.absoluteBaseUrl, config.paths)(
importPath,
undefined,
() =>... | shadcn-ui/ui/packages/cli/src/utils/resolve-import.ts | {
"file_path": "shadcn-ui/ui/packages/cli/src/utils/resolve-import.ts",
"repo_id": "shadcn-ui/ui",
"token_count": 116
} | 81 |
body {
background-color: red;
}
| shadcn-ui/ui/packages/cli/test/fixtures/next-app-src/src/other.css | {
"file_path": "shadcn-ui/ui/packages/cli/test/fixtures/next-app-src/src/other.css",
"repo_id": "shadcn-ui/ui",
"token_count": 13
} | 82 |
import { expect, test } from "vitest"
import { resolveTree } from "../../src/utils/registry"
test("resolve tree", async () => {
const index = [
{
name: "button",
dependencies: ["@radix-ui/react-slot"],
type: "components:ui",
files: ["button.tsx"],
},
{
name: "dialog",
... | shadcn-ui/ui/packages/cli/test/utils/registry.test.ts | {
"file_path": "shadcn-ui/ui/packages/cli/test/utils/registry.test.ts",
"repo_id": "shadcn-ui/ui",
"token_count": 769
} | 83 |
#!/usr/bin/env node
import { add } from "@/src/commands/add"
import { diff } from "@/src/commands/diff"
import { init } from "@/src/commands/init"
import { Command } from "commander"
import packageJson from "../package.json"
process.on("SIGINT", () => process.exit(0))
process.on("SIGTERM", () => process.exit(0))
asy... | shadcn-ui/ui/packages/shadcn/src/index.ts | {
"file_path": "shadcn-ui/ui/packages/shadcn/src/index.ts",
"repo_id": "shadcn-ui/ui",
"token_count": 241
} | 84 |
body {
background-color: red;
}
| shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/next-app-src/src/other.css | {
"file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/next-app-src/src/other.css",
"repo_id": "shadcn-ui/ui",
"token_count": 13
} | 85 |
body {
background-color: red;
}
| shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/next-pages-src/other.css | {
"file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/next-pages-src/other.css",
"repo_id": "shadcn-ui/ui",
"token_count": 13
} | 86 |
import type { Password, User } from "@prisma/client";
import bcrypt from "bcryptjs";
import { prisma } from "~/db.server";
export type { User } from "@prisma/client";
export async function getUserById(id: User["id"]) {
return prisma.user.findUnique({ where: { id } });
}
export async function getUserByEmail(email:... | shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix-indie-stack/app/models/user.server.ts | {
"file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix-indie-stack/app/models/user.server.ts",
"repo_id": "shadcn-ui/ui",
"token_count": 497
} | 87 |
import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
setupNodeEvents: (on, config) => {
const isDev = config.watchForFileChanges;
const port = process.env.PORT ?? (isDev ? "3000" : "8811");
const configOverrides: Partial<Cypress.PluginConfigOptions> = {
baseUrl: ... | shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix-indie-stack/cypress.config.ts | {
"file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix-indie-stack/cypress.config.ts",
"repo_id": "shadcn-ui/ui",
"token_count": 285
} | 88 |
import {
Links,
Meta,
Outlet,
Scripts,
ScrollRestoration,
} from "@remix-run/react";
import "./tailwind.css";
export function Layout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device... | shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix/app/root.tsx | {
"file_path": "shadcn-ui/ui/packages/shadcn/test/fixtures/frameworks/remix/app/root.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 252
} | 89 |
import Link from "next/link"
import { siteConfig } from "@/config/site"
import { buttonVariants } from "@/components/ui/button"
export default function IndexPage() {
return (
<section className="container grid items-center gap-6 pb-8 pt-6 md:py-10">
<div className="flex max-w-[980px] flex-col items-start ... | shadcn-ui/ui/templates/next-template/app/page.tsx | {
"file_path": "shadcn-ui/ui/templates/next-template/app/page.tsx",
"repo_id": "shadcn-ui/ui",
"token_count": 571
} | 90 |
"use client"
import Image from "next/image"
import Link from "next/link"
import { motion } from "framer-motion"
import { ChevronRight } from "lucide-react"
import { Footer } from "react-day-picker"
import { siteConfig } from "@/config/site"
import { cn } from "@/lib/utils"
import { buttonVariants } from "@/components... | DarkInventor/easy-ui/app/page.tsx | {
"file_path": "DarkInventor/easy-ui/app/page.tsx",
"repo_id": "DarkInventor/easy-ui",
"token_count": 3690
} | 0 |
import { cn } from "@/lib/utils"
interface CalloutProps {
icon?: string
children?: React.ReactNode
type?: "default" | "warning" | "danger"
}
export function Callout({
children,
icon,
type = "default",
...props
}: CalloutProps) {
return (
<div
className={cn("my-6 flex items-start rounded-md b... | DarkInventor/easy-ui/components/callout.tsx | {
"file_path": "DarkInventor/easy-ui/components/callout.tsx",
"repo_id": "DarkInventor/easy-ui",
"token_count": 261
} | 1 |
import { Button } from "@/components/ui/button";
import { cn } from "@/lib/utils";
import { ArrowRightIcon } from "@radix-ui/react-icons";
import { ReactNode } from "react";
const BentoGrid = ({
children,
className,
}: {
children: ReactNode;
className?: string;
}) => {
return (
<div
className={cn(
... | DarkInventor/easy-ui/components/magicui/bento-grid.tsx | {
"file_path": "DarkInventor/easy-ui/components/magicui/bento-grid.tsx",
"repo_id": "DarkInventor/easy-ui",
"token_count": 984
} | 2 |
"use client";
import * as React from "react";
import { useTheme } from "next-themes";
import {
DropdownMenu,
DropdownMenuCheckboxItem,
DropdownMenuContent,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
interface ThemeToggleProps {
button: React.ReactNode;
}
export function ThemeTo... | alifarooq9/rapidlaunch/apps/www/src/components/theme-toggle.tsx | {
"file_path": "alifarooq9/rapidlaunch/apps/www/src/components/theme-toggle.tsx",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 520
} | 3 |
import { AppPageLoading } from "@/app/(app)/_components/page-loading";
import { Skeleton } from "@/components/ui/skeleton";
import { orgBillingPageConfig } from "@/app/(app)/(user)/org/billing/_constants/page-config";
export default function OrgBillingLoading() {
return (
<AppPageLoading
title=... | alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/billing/loading.tsx | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/billing/loading.tsx",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 270
} | 4 |
"use client";
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import {
Dialog,
DialogClose,
D... | alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/settings/_components/org-image-form.tsx | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/(user)/org/settings/_components/org-image-form.tsx",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 4853
} | 5 |
import {
ChevronLeftIcon,
ChevronRightIcon,
DoubleArrowLeftIcon,
DoubleArrowRightIcon,
} from "@radix-ui/react-icons";
import { type Table } from "@tanstack/react-table";
import { Button } from "@/components/ui/button";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
Sele... | alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/_components/data-table-pagination.tsx | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/_components/data-table-pagination.tsx",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 3105
} | 6 |
"use client";
import { LineChart } from "@/components/charts";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { thousandToK } from "@/lib/utils";
type RevenueChartProps = {
data: {
Date: string;
RevenueCount: number;
... | alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/dashboard/_components/revenue-chart.tsx | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/dashboard/_components/revenue-chart.tsx",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 825
} | 7 |
/* 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 { format } from "date-fns";
import { type membersToOrganizations } from "@/server/db/schema";
import { ColumnDropdown } fro... | alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/organizations/_components/columns.tsx | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/organizations/_components/columns.tsx",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 929
} | 8 |
/**
* This file contains the page configuration for the users page.
* This is used to generate the page title and description.
*/
export const waitlistPageConfig = {
title: "Waitlist",
description:
"A list of users who are waiting to be approved for the service.",
} as const;
| alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/waitlist/_constants/page-config.ts | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(app)/admin/waitlist/_constants/page-config.ts",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 84
} | 9 |
import {
WebPageHeader,
WebPageWrapper,
} from "@/app/(web)/_components/general-components";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { format } from "date-fns";
import Image from "next/image";
import Link from "next/link";
import { type Metadata } from "next";
imp... | alifarooq9/rapidlaunch/starterkits/saas/src/app/(web)/blogs/page.tsx | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/(web)/blogs/page.tsx",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 2164
} | 10 |
import { Icons } from "@/components/ui/icons";
import { siteUrls } from "@/config/urls";
import Link from "next/link";
type AuthLayoutProps = {
children: React.ReactNode;
};
export default function AuthLayout({ children }: AuthLayoutProps) {
return (
<div className="grid min-h-screen w-screen grid-col... | alifarooq9/rapidlaunch/starterkits/saas/src/app/auth/layout.tsx | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/auth/layout.tsx",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 679
} | 11 |
import { blogs, docs } from "@/app/source";
import { publicRoutes, siteUrls } from "@/config/urls";
import type { MetadataRoute } from "next";
const addPathToBaseURL = (path: string) => `${siteUrls.publicUrl}${path}`;
export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
const blogsSitemap = b... | alifarooq9/rapidlaunch/starterkits/saas/src/app/sitemap.ts | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/app/sitemap.ts",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 481
} | 12 |
import { LayoutDashboardIcon, Settings2Icon } from "lucide-react";
import { siteUrls } from "@/config/urls";
type IconProps = React.HTMLAttributes<SVGElement>;
type NavItem = {
label: string;
icon: React.ComponentType<IconProps>;
href: string;
disabled?: boolean;
};
export type UserDropdownNavItems =... | alifarooq9/rapidlaunch/starterkits/saas/src/config/user-dropdown.ts | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/config/user-dropdown.ts",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 1103
} | 13 |
"use server";
import { db } from "@/server/db";
import { accounts, userInsertSchema, users } from "@/server/db/schema";
import { protectedProcedure, superAdminProcedure } from "@/server/procedures";
import { eq } from "drizzle-orm";
import type { z } from "zod";
/**
* Update the name of the user
* @param name The ne... | alifarooq9/rapidlaunch/starterkits/saas/src/server/actions/user/mutations.ts | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/src/server/actions/user/mutations.ts",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 1320
} | 14 |
import type { Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
import { createPreset } from "fumadocs-ui/tailwind-plugin";
const config = {
darkMode: ["class"],
content: [
"./src/**/*.{ts,tsx}",
"./node_modules/fumadocs-ui/dist/**/*.js",
"./mdx-compone... | alifarooq9/rapidlaunch/starterkits/saas/tailwind.config.ts | {
"file_path": "alifarooq9/rapidlaunch/starterkits/saas/tailwind.config.ts",
"repo_id": "alifarooq9/rapidlaunch",
"token_count": 1927
} | 15 |
import Settings from '@/components/dashboard/settings';
import { redirect } from 'next/navigation';
import { createClient } from '@/utils/supabase/server';
import { getUserDetails, getUser } from '@/utils/supabase/queries';
export default async function SettingsPage() {
const supabase = createClient();
const [user... | horizon-ui/shadcn-nextjs-boilerplate/app/dashboard/settings/page.tsx | {
"file_path": "horizon-ui/shadcn-nextjs-boilerplate/app/dashboard/settings/page.tsx",
"repo_id": "horizon-ui/shadcn-nextjs-boilerplate",
"token_count": 168
} | 16 |
export default function Separator(props: { text?: string }) {
const { text } = props;
return (
<div className="relative my-4">
<div className="relative flex items-center py-1">
<div className="grow border-t border-zinc-200 dark:border-zinc-700"></div>
{text && (
<span className="... | horizon-ui/shadcn-nextjs-boilerplate/components/auth-ui/Separator.tsx | {
"file_path": "horizon-ui/shadcn-nextjs-boilerplate/components/auth-ui/Separator.tsx",
"repo_id": "horizon-ui/shadcn-nextjs-boilerplate",
"token_count": 235
} | 17 |
import Footer from '@/components/footer/FooterAdmin';
import Navbar from '@/components/navbar/NavbarAdmin';
import { routes } from '@/components/routes';
import Sidebar from '@/components/sidebar/Sidebar';
import { Toaster } from '@/components/ui/toaster';
import { getActiveRoute } from '@/utils/navigation';
import { U... | horizon-ui/shadcn-nextjs-boilerplate/components/layout/index.tsx | {
"file_path": "horizon-ui/shadcn-nextjs-boilerplate/components/layout/index.tsx",
"repo_id": "horizon-ui/shadcn-nextjs-boilerplate",
"token_count": 822
} | 18 |
import type { Config } from "tailwindcss"
const config = {
darkMode: ["class"],
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
prefix: "",
theme: {
container: {
center: 'true',... | horizon-ui/shadcn-nextjs-boilerplate/tailwind.config.ts | {
"file_path": "horizon-ui/shadcn-nextjs-boilerplate/tailwind.config.ts",
"repo_id": "horizon-ui/shadcn-nextjs-boilerplate",
"token_count": 1826
} | 19 |
import Stripe from 'stripe';
export const stripe = new Stripe(
process.env.STRIPE_SECRET_KEY_LIVE ?? process.env.STRIPE_SECRET_KEY ?? '',
{
// https://github.com/stripe/stripe-node#configuration
// https://stripe.com/docs/api/versioning
// @ts-ignore
apiVersion: null,
// Register this as an off... | horizon-ui/shadcn-nextjs-boilerplate/utils/stripe/config.ts | {
"file_path": "horizon-ui/shadcn-nextjs-boilerplate/utils/stripe/config.ts",
"repo_id": "horizon-ui/shadcn-nextjs-boilerplate",
"token_count": 227
} | 20 |
import '../src/styles/global.css';
import type { Preview } from '@storybook/react';
const preview: Preview = {
parameters: {
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
nextjs: {
appDirectory: true,
},
},
};
export default preview... | ixartz/SaaS-Boilerplate/.storybook/preview.ts | {
"file_path": "ixartz/SaaS-Boilerplate/.storybook/preview.ts",
"repo_id": "ixartz/SaaS-Boilerplate",
"token_count": 140
} | 21 |
'use client';
import Link from 'next/link';
import { usePathname } from 'next/navigation';
import { cn } from '@/utils/Helpers';
export const ActiveLink = (props: { href: string; children: React.ReactNode }) => {
const pathname = usePathname();
return (
<Link
href={props.href}
className={cn(
... | ixartz/SaaS-Boilerplate/src/components/ActiveLink.tsx | {
"file_path": "ixartz/SaaS-Boilerplate/src/components/ActiveLink.tsx",
"repo_id": "ixartz/SaaS-Boilerplate",
"token_count": 211
} | 22 |
'use client';
import * as LabelPrimitive from '@radix-ui/react-label';
import { cva, type VariantProps } from 'class-variance-authority';
import * as React from 'react';
import { cn } from '@/utils/Helpers';
const labelVariants = cva(
'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled... | ixartz/SaaS-Boilerplate/src/components/ui/label.tsx | {
"file_path": "ixartz/SaaS-Boilerplate/src/components/ui/label.tsx",
"repo_id": "ixartz/SaaS-Boilerplate",
"token_count": 251
} | 23 |
'use client';
import Link from 'next/link';
import { ToggleMenuButton } from '@/components/ToggleMenuButton';
import { useMenu } from '@/hooks/UseMenu';
import { cn } from '@/utils/Helpers';
export const CenteredMenu = (props: {
logo: React.ReactNode;
children: React.ReactNode;
rightMenu: React.ReactNode;
}) =... | ixartz/SaaS-Boilerplate/src/features/landing/CenteredMenu.tsx | {
"file_path": "ixartz/SaaS-Boilerplate/src/features/landing/CenteredMenu.tsx",
"repo_id": "ixartz/SaaS-Boilerplate",
"token_count": 638
} | 24 |
import {
bigint,
pgTable,
serial,
text,
timestamp,
uniqueIndex,
} from 'drizzle-orm/pg-core';
// This file defines the structure of your database tables using the Drizzle ORM.
// To modify the database schema:
// 1. Update this file with your desired changes.
// 2. Generate a new migration by running: `np... | ixartz/SaaS-Boilerplate/src/models/Schema.ts | {
"file_path": "ixartz/SaaS-Boilerplate/src/models/Schema.ts",
"repo_id": "ixartz/SaaS-Boilerplate",
"token_count": 609
} | 25 |
import type { LocalePrefix } from 'node_modules/next-intl/dist/types/src/routing/types';
import { BILLING_INTERVAL, type PricingPlan } from '@/types/Subscription';
const localePrefix: LocalePrefix = 'as-needed';
// FIXME: Update this configuration file based on your project information
export const AppConfig = {
n... | ixartz/SaaS-Boilerplate/src/utils/AppConfig.ts | {
"file_path": "ixartz/SaaS-Boilerplate/src/utils/AppConfig.ts",
"repo_id": "ixartz/SaaS-Boilerplate",
"token_count": 763
} | 26 |
/**
* djb2 hashing function
*
* @param {string} string
* @param {number} seed
* @returns {string} A hashed string of 6 characters
*/
export const hash = (string: string, seed = 5381) => {
let i = string.length;
while (i) {
// eslint-disable-next-line no-bitwise, no-plusplus
seed = (seed * 33) ^ strin... | lucide-icons/lucide/docs/.vitepress/lib/helpers.ts | {
"file_path": "lucide-icons/lucide/docs/.vitepress/lib/helpers.ts",
"repo_id": "lucide-icons/lucide",
"token_count": 268
} | 27 |
import packageData from '../../../data/packageData.json';
import thirdPartyPackages from '../../../data/packageData.thirdParty.json';
import fetchPackages from '../../../lib/fetchPackages';
export default {
async load() {
const packages = await fetchPackages();
return {
packages: packages
.fil... | lucide-icons/lucide/docs/.vitepress/theme/components/packages/PackageList.data.ts | {
"file_path": "lucide-icons/lucide/docs/.vitepress/theme/components/packages/PackageList.data.ts",
"repo_id": "lucide-icons/lucide",
"token_count": 324
} | 28 |
import { h } from 'vue';
import DefaultTheme from 'vitepress/theme';
import './style.css';
import { Theme } from 'vitepress';
import IconsSidebarNavAfter from './layouts/IconsSidebarNavAfter.vue';
import HomeHeroIconsCard from './components/home/HomeHeroIconsCard.vue';
import HomeHeroBefore from './components/home/Home... | lucide-icons/lucide/docs/.vitepress/theme/index.ts | {
"file_path": "lucide-icons/lucide/docs/.vitepress/theme/index.ts",
"repo_id": "lucide-icons/lucide",
"token_count": 399
} | 29 |
import {
TentTree,
Caravan,
FlameKindling,
MountainSnow,
Trees,
Axe,
Map,
CloudMoon,
Sparkles,
} from "lucide-react";
import "./icon.css";
function App() {
return (
<div className="app">
<TentTree />
<Caravan />
<FlameKindling />
<MountainSnow />
<Trees />
<A... | lucide-icons/lucide/docs/guide/advanced/examples/global-styling-absolute-strokewidth-example/App.js | {
"file_path": "lucide-icons/lucide/docs/guide/advanced/examples/global-styling-absolute-strokewidth-example/App.js",
"repo_id": "lucide-icons/lucide",
"token_count": 197
} | 30 |
import { Beer } from "lucide-react";
import "./icon.css";
function App() {
return (
<div className="app">
<Beer className="my-beer-icon" />
</div>
);
}
export default App;
| lucide-icons/lucide/docs/guide/basics/examples/size-icon-css-example/App.js | {
"file_path": "lucide-icons/lucide/docs/guide/basics/examples/size-icon-css-example/App.js",
"repo_id": "lucide-icons/lucide",
"token_count": 78
} | 31 |
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 223 236" width="32">
<path fill="url(#b)" d="m222.08 39.2-8.02 125.91L137.39 0l84.69 39.2Zm-53.1 162.82-57.94 33.05-57.93-33.05 11.78-28.56h92.3l11.78 28.56ZM111.03 62.68l30.36 73.8H80.68l30.36-73.8ZM7.94 165.12 0 39.19 84.69 0 7.94 165.12Z"/>
<path f... | lucide-icons/lucide/docs/public/framework-logos/angular.svg | {
"file_path": "lucide-icons/lucide/docs/public/framework-logos/angular.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 604
} | 32 |
<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 6 6.5 3.5a1.5 1.5 0 0 0-1-.5C4.683 3 4 3.683 4 4.5V17a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5" />
<line x1="1... | lucide-icons/lucide/icons/bath.svg | {
"file_path": "lucide-icons/lucide/icons/bath.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 259
} | 33 |
<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 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1" />
<path d="M10.75 5.093A6 6 ... | lucide-icons/lucide/icons/bean-off.svg | {
"file_path": "lucide-icons/lucide/icons/bean-off.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 263
} | 34 |
<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 7h.01" />
<path d="M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20" />
<path d="m20 7 2 .5-2 .5" ... | lucide-icons/lucide/icons/bird.svg | {
"file_path": "lucide-icons/lucide/icons/bird.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 218
} | 35 |
<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 10h18V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7" />
<path d="M8 2v4" />
<path d="M16 2v4" />... | lucide-icons/lucide/icons/calendar-heart.svg | {
"file_path": "lucide-icons/lucide/icons/calendar-heart.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 296
} | 36 |
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M2 12h20" />
<path d="M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8" />
<path d="m4 8 16-4" />
<path d="m8... | lucide-icons/lucide/icons/cooking-pot.svg | {
"file_path": "lucide-icons/lucide/icons/cooking-pot.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 213
} | 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"
>
<ellipse cx="12" cy="5" rx="9" ry="3" />
<path d="M3 5V19A9 3 0 0 0 21 19V5" />
<path d="M3 12A9 3 0 0 0 21 12" /... | lucide-icons/lucide/icons/database.svg | {
"file_path": "lucide-icons/lucide/icons/database.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 158
} | 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="M11.25 16.25h1.5L12 17z" />
<path d="M16 14v.5" />
<path d="M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 ... | lucide-icons/lucide/icons/dog.svg | {
"file_path": "lucide-icons/lucide/icons/dog.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 384
} | 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="M10 11h.01" />
<path d="M14 6h.01" />
<path d="M18 6h.01" />
<path d="M6.5 13.1h.01" />
<path d="M22... | lucide-icons/lucide/icons/drama.svg | {
"file_path": "lucide-icons/lucide/icons/drama.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 346
} | 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="M15 3h6v6" />
<path d="M10 14 21 3" />
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6... | lucide-icons/lucide/icons/external-link.svg | {
"file_path": "lucide-icons/lucide/icons/external-link.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 166
} | 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="M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z" />
<path d="M6 8h4" />
<path d="M6 18h4" />
<path d="m12 ... | lucide-icons/lucide/icons/fence.svg | {
"file_path": "lucide-icons/lucide/icons/fence.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 262
} | 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"
>
<circle cx="12" cy="12" r="3" />
<path d="M3 7V5a2 2 0 0 1 2-2h2" />
<path d="M17 3h2a2 2 0 0 1 2 2v2" />
<path... | lucide-icons/lucide/icons/focus.svg | {
"file_path": "lucide-icons/lucide/icons/focus.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 206
} | 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"
>
<line x1="3" x2="15" y1="22" y2="22" />
<line x1="4" x2="14" y1="9" y2="9" />
<path d="M14 22V4a2 2 0 0 0-2-2H6a2... | lucide-icons/lucide/icons/fuel.svg | {
"file_path": "lucide-icons/lucide/icons/fuel.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 236
} | 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"
>
<circle cx="6" cy="6" r="3" />
<path d="M6 9v12" />
<path d="m21 3-6 6" />
<path d="m21 9-6-6" />
<path d="M1... | lucide-icons/lucide/icons/git-pull-request-closed.svg | {
"file_path": "lucide-icons/lucide/icons/git-pull-request-closed.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 182
} | 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"
>
<path d="M21 14h-1.343" />
<path d="M9.128 3.47A9 9 0 0 1 21 12v3.343" />
<path d="m2 2 20 20" />
<path d="M20.... | lucide-icons/lucide/icons/headphone-off.svg | {
"file_path": "lucide-icons/lucide/icons/headphone-off.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 247
} | 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="M11 8c2-3-2-3 0-6" />
<path d="M15.5 8c2-3-2-3 0-6" />
<path d="M6 10h.01" />
<path d="M6 14h.01" />
... | lucide-icons/lucide/icons/heater.svg | {
"file_path": "lucide-icons/lucide/icons/heater.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 288
} | 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="M5 22h14" />
<path d="M5 2h14" />
<path d="M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0... | lucide-icons/lucide/icons/hourglass.svg | {
"file_path": "lucide-icons/lucide/icons/hourglass.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 218
} | 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="M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7" />
<line x1="16" x2="22" y1="5" y2="5" />
<cir... | lucide-icons/lucide/icons/image-minus.svg | {
"file_path": "lucide-icons/lucide/icons/image-minus.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 216
} | 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"
>
<polyline points="22 12 16 12 14 15 10 15 8 12 2 12" />
<path d="M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-... | lucide-icons/lucide/icons/inbox.svg | {
"file_path": "lucide-icons/lucide/icons/inbox.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 190
} | 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"
>
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" />
<rect width="4" height=... | lucide-icons/lucide/icons/linkedin.svg | {
"file_path": "lucide-icons/lucide/icons/linkedin.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 192
} | 51 |
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="10" x2="21" y1="6" y2="6" />
<line x1="10" x2="21" y1="12" y2="12" />
<line x1="10" x2="21" y1="18" y2=... | lucide-icons/lucide/icons/list-ordered.svg | {
"file_path": "lucide-icons/lucide/icons/list-ordered.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 228
} | 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="16" r="1" />
<rect x="3" y="10" width="18" height="12" rx="2" />
<path d="M7 10V7a5 5 0 0 1 1... | lucide-icons/lucide/icons/lock-keyhole.svg | {
"file_path": "lucide-icons/lucide/icons/lock-keyhole.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 157
} | 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="m6 15-4-4 6.75-6.77a7.79 7.79 0 0 1 11 11L13 22l-4-4 6.39-6.36a2.14 2.14 0 0 0-3-3L6 15" />
<path d="m5 8 ... | lucide-icons/lucide/icons/magnet.svg | {
"file_path": "lucide-icons/lucide/icons/magnet.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 183
} | 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="M12.586 12.586 19 19" />
<path d="M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062... | lucide-icons/lucide/icons/mouse-pointer.svg | {
"file_path": "lucide-icons/lucide/icons/mouse-pointer.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 202
} | 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="13.5" cy="6.5" r=".5" fill="currentColor" />
<circle cx="17.5" cy="10.5" r=".5" fill="currentColor" />
... | lucide-icons/lucide/icons/palette.svg | {
"file_path": "lucide-icons/lucide/icons/palette.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 330
} | 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="M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5" />
<path d="M11 19h8.203a1.8... | lucide-icons/lucide/icons/recycle.svg | {
"file_path": "lucide-icons/lucide/icons/recycle.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 337
} | 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="M14 22v-4a2 2 0 1 0-4 0v4" />
<path d="m18 10 4 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8l4-2" />
<path d="M1... | lucide-icons/lucide/icons/school.svg | {
"file_path": "lucide-icons/lucide/icons/school.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 218
} | 58 |
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m13 13.5 2-2.5-2-2.5" />
<path d="m21 21-4.3-4.3" />
<path d="M9 8.5 7 11l2 2.5" />
<circle cx="11" cy... | lucide-icons/lucide/icons/search-code.svg | {
"file_path": "lucide-icons/lucide/icons/search-code.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 171
} | 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.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z" />
<rect x="3" y... | lucide-icons/lucide/icons/shapes.svg | {
"file_path": "lucide-icons/lucide/icons/shapes.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 207
} | 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="m15 15 6 6m-6-6v4.8m0-4.8h4.8" />
<path d="M9 19.8V15m0 0H4.2M9 15l-6 6" />
<path d="M15 4.2V9m0 0h4.8M1... | lucide-icons/lucide/icons/shrink.svg | {
"file_path": "lucide-icons/lucide/icons/shrink.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 208
} | 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 11v1a10 10 0 1 1-9-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-plus.svg | {
"file_path": "lucide-icons/lucide/icons/smile-plus.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 218
} | 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="M3 3h.01" />
<path d="M7 5h.01" />
<path d="M11 7h.01" />
<path d="M3 7h.01" />
<path d="M7 9h.01" /... | lucide-icons/lucide/icons/spray-can.svg | {
"file_path": "lucide-icons/lucide/icons/spray-can.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 270
} | 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="M10 9.5 8 12l2 2.5" />
<path d="m14 9.5 2 2.5-2 2.5" />
<rect width="18" height="18" x="3" y="3" rx="2" ... | lucide-icons/lucide/icons/square-code.svg | {
"file_path": "lucide-icons/lucide/icons/square-code.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 159
} | 64 |
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2" />
<path d="M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-... | lucide-icons/lucide/icons/square-stack.svg | {
"file_path": "lucide-icons/lucide/icons/square-stack.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 222
} | 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="M5 22h14" />
<path d="M19.27 13.73A2.5 2.5 0 0 0 17.5 13h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 ... | lucide-icons/lucide/icons/stamp.svg | {
"file_path": "lucide-icons/lucide/icons/stamp.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 246
} | 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="m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44" />
... | lucide-icons/lucide/icons/telescope.svg | {
"file_path": "lucide-icons/lucide/icons/telescope.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 343
} | 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="M9.3 6.2a4.55 4.55 0 0 0 5.4 0" />
<path d="M7.9 10.7c.9.8 2.4 1.3 4.1 1.3s3.2-.5 4.1-1.3" />
<path d="M... | lucide-icons/lucide/icons/traffic-cone.svg | {
"file_path": "lucide-icons/lucide/icons/traffic-cone.svg",
"repo_id": "lucide-icons/lucide",
"token_count": 350
} | 68 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.