cleanup 4
continuous-integration/drone/pr Build is failing

This commit is contained in:
2026-07-03 18:41:49 -04:00
parent 232a821dc0
commit c9c9563a1f
24 changed files with 313 additions and 387 deletions
+19
View File
@@ -0,0 +1,19 @@
import { ReactNode } from 'react';
import { cn } from '../utils/cn';
interface IconInputProps {
icon: ReactNode;
children: ReactNode;
className?: string;
}
export function IconInput({ icon, children, className }: IconInputProps) {
return (
<div className={cn('relative flex', className)}>
<span className="inline-flex items-center border-y border-l border-border bg-surface px-3 text-sm text-content-muted shadow-xs">
{icon}
</span>
{children}
</div>
);
}