refactor: remove duplicate tsup build config and clean up

This commit is contained in:
2026-02-28 23:05:38 +05:30
parent c3198394de
commit 8bf8b22e57
6 changed files with 9 additions and 14 deletions
@@ -1,5 +1,5 @@
export const List = ({ items = [] }: { items: React.ReactNode[] }) => (
<ol className="list-inside list-decimal text-sm text-center sm:text-left font-[family-name:var(--font-geist-mono)]">
<ol className="list-inside list-decimal text-sm text-center sm:text-left">
{items.map((item, i) => (
<li key={i} className={i < items.length - 1 ? "mb-2" : ""}>
{item}