refactor(logo): Update main logo SVG to use currentColor

The main logo SVG has been replaced with an updated version.

The previous logo had hardcoded fill colors, making it difficult to adapt to different color schemes, such as light and dark modes.

The new SVG uses `fill="currentColor"`, which allows its color to be controlled via the parent element's CSS `color` property. This makes the logo easily themeable and more flexible for use throughout the application.
This commit is contained in:
AmirReza Jamali
2025-09-16 18:31:33 +03:30
parent 2fa774b6bd
commit 4fb1a931c5
17 changed files with 138 additions and 202 deletions
@@ -63,7 +63,7 @@ const InputGroup = <T extends FieldValues>({
className="text-body-sm font-medium text-dark dark:text-white"
>
{label}
{required && <span className="text-red ml-1 select-none">*</span>}
{required && <span className="ml-1 select-none text-error">*</span>}
</label>
<div
+1 -1
View File
@@ -55,7 +55,7 @@ export function Select<T extends FieldValues>({
className="block text-body-sm font-medium text-dark dark:text-white"
>
{label}
{required && <span className="text-red ml-1 select-none">*</span>}
{required && <span className="ml-1 select-none text-error">*</span>}
</label>
<div className="relative">