Improve Train of Thought icons spacing and loading circle

This commit is contained in:
Debanjum Singh Solanky
2024-07-14 09:35:15 +05:30
parent e9567741eb
commit a0f38e079f
3 changed files with 12 additions and 11 deletions

View File

@@ -16,7 +16,7 @@ interface InlineLoadingProps {
export function InlineLoading(props: InlineLoadingProps) {
return (
<button className={`${props.className}`}>
<CircleNotch className={`animate-spin h-5 w-5 mr-3`} />
<CircleNotch className={`animate-spin h-5 w-5 mt-3 mr-3`} />
</button>
)
}