Skip to content

Instantly share code, notes, and snippets.

@vidyesh95
vidyesh95 / sidebar.tsx
Created July 2, 2025 02:31 — forked from pasqualevitiello/sidebar.tsx
Stripe-Style Collapse/Expand Toggle
"use client"
import * as React from "react"
import { Slot } from "@radix-ui/react-slot"
import { cva, VariantProps } from "class-variance-authority"
import { PanelLeftIcon } from "lucide-react"
import { cn } from "@/lib/utils"
import { useIsMobile } from "@/hooks/use-mobile"
import { Button } from "@/components/ui/button"