Skip to content

Instantly share code, notes, and snippets.

View nicostombros's full-sized avatar

Nicos Tombros nicostombros

View GitHub Profile
@chornthorn
chornthorn / password-input.tsx
Created December 28, 2023 16:23 — forked from mjbalcueva/password-input.tsx
shadcn ui custom password input
"use client"
import { forwardRef, useState } from "react"
import { EyeIcon, EyeOffIcon } from "lucide-react"
import { Button } from "@/components/ui/button"
import { Input, InputProps } from "@/components/ui/input"
import { cn } from "@/lib/utils"
const PasswordInput = forwardRef<HTMLInputElement, InputProps>(
({ className, ...props }, ref) => {
@jonlabelle
jonlabelle / docker_compose_cheatsheet.md
Last active May 31, 2024 13:30
Docker Compose Cheatsheet