Skip to content

Instantly share code, notes, and snippets.

View bsurrey's full-sized avatar
🏠
Working from home

Benjamin bsurrey

🏠
Working from home
View GitHub Profile
@bsurrey
bsurrey / Pill.tsx
Last active October 6, 2024 14:25
Pill Component
import React from 'react'
import { cn } from '@/utils/helper'
interface PillProps {
className?: string
color?: 'default' | 'primary' | 'success' | 'warning' | 'danger'
outlined?: boolean
size?: 'small' | 'medium' | 'large'
text: string
}
@bsurrey
bsurrey / coolify.memos.docker-compose.yml
Created August 28, 2024 12:23
Memos Coolify Docker Compose
services:
memos:
image: neosmemo/memos:stable
container_name: memos
volumes:
- memos:/var/opt/memos
environment:
- SERVICE_FQDN_MEMOS_5230