Add dark mode toggle! And improve experience for train of thought

This commit is contained in:
sabaimran
2024-07-04 18:29:21 +05:30
parent 465ef0b772
commit aec44a0b89
14 changed files with 166 additions and 57 deletions

View File

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