feat: redesign buttons and share them in dialogs

This commit is contained in:
Aarnav Tale
2025-01-19 17:31:46 +00:00
parent b9a708b2e9
commit af248df648
10 changed files with 104 additions and 87 deletions
+15
View File
@@ -0,0 +1,15 @@
import React from 'react';
import { cn } from '~/utils/cn';
export interface TextProps {
children: React.ReactNode;
className?: string;
}
export default function Text({ children, className }: TextProps) {
return (
<p className={cn('text-md my-0', className)}>
{children}
</p>
);
}