Files
memito/frontend/src/components/ui/radius.ts
wisecolt 05bbe307e0 feat: not uygulaması ve altyapısını ekle
- iOS Memos benzeri PWA ön yüz eklendi (React, Tailwind)
- Express tabanlı arka uç, AnythingLLM API entegrasyonu ve senkronizasyon kuyruğu oluşturuldu
- Docker, TypeScript ve proje konfigürasyonları tanımlandı
2025-12-28 23:37:38 +03:00

22 lines
459 B
TypeScript

export type Radius = "pill" | "3xl" | "2xl" | "xl" | "lg" | "md" | "none";
export const radiusClass = (radius: Radius) => {
switch (radius) {
case "pill":
return "rounded-full";
case "3xl":
return "rounded-3xl";
case "2xl":
return "rounded-2xl";
case "xl":
return "rounded-xl";
case "lg":
return "rounded-lg";
case "md":
return "rounded-md";
case "none":
default:
return "";
}
};